// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved. // See License.txt for license information. import AppDispatcher from '../dispatcher/app_dispatcher.jsx'; import TeamMembersModal from './team_members_modal.jsx'; import ToggleModalButton from './toggle_modal_button.jsx'; import UserSettingsModal from './user_settings/user_settings_modal.jsx'; import AboutBuildModal from './about_build_modal.jsx'; import UserStore from 'stores/user_store.jsx'; import TeamStore from 'stores/team_store.jsx'; import PreferenceStore from 'stores/preference_store.jsx'; import * as GlobalActions from 'actions/global_actions.jsx'; import * as Utils from 'utils/utils.jsx'; import Constants from 'utils/constants.jsx'; const ActionTypes = Constants.ActionTypes; const Preferences = Constants.Preferences; const TutorialSteps = Constants.TutorialSteps; import {FormattedMessage} from 'react-intl'; import {Link} from 'react-router/es6'; import {createMenuTip} from 'components/tutorial/tutorial_tip.jsx'; import React from 'react'; import PureRenderMixin from 'react-addons-pure-render-mixin'; export default class SidebarRightMenu extends React.Component { constructor(props) { super(props); this.onPreferenceChange = this.onPreferenceChange.bind(this); this.handleAboutModal = this.handleAboutModal.bind(this); this.searchMentions = this.searchMentions.bind(this); this.aboutModalDismissed = this.aboutModalDismissed.bind(this); const state = this.getStateFromStores(); state.showUserSettingsModal = false; state.showAboutModal = false; this.shouldComponentUpdate = PureRenderMixin.shouldComponentUpdate.bind(this); this.state = state; } handleAboutModal() { this.setState({showAboutModal: true}); } aboutModalDismissed() { this.setState({showAboutModal: false}); } componentDidMount() { PreferenceStore.addChangeListener(this.onPreferenceChange); } componentWillUnmount() { PreferenceStore.removeChangeListener(this.onPreferenceChange); } getStateFromStores() { const tutorialStep = PreferenceStore.getInt(Preferences.TUTORIAL_STEP, UserStore.getCurrentId(), 999); return { currentUser: UserStore.getCurrentUser(), showTutorialTip: tutorialStep === TutorialSteps.MENU_POPOVER && Utils.isMobile() }; } onPreferenceChange() { this.setState(this.getStateFromStores()); } searchMentions(e) { e.preventDefault(); const user = this.state.currentUser; let terms = ''; if (user.notify_props && user.notify_props.mention_keys) { const termKeys = UserStore.getMentionKeys(user.id); if (user.notify_props.all === 'true' && termKeys.indexOf('@all') !== -1) { termKeys.splice(termKeys.indexOf('@all'), 1); } if (user.notify_props.channel === 'true' && termKeys.indexOf('@channel') !== -1) { termKeys.splice(termKeys.indexOf('@channel'), 1); } terms = termKeys.join(' '); } this.hideSidebars(); AppDispatcher.handleServerAction({ type: ActionTypes.RECEIVED_SEARCH_TERM, term: terms, do_search: true, is_mention_search: true }); } closeLeftSidebar() { if (Utils.isMobile()) { setTimeout(() => { document.querySelector('.app__body .inner-wrap').classList.remove('move--right'); document.querySelector('.app__body .sidebar--left').classList.remove('move--right'); }); } } openRightSidebar() { if (Utils.isMobile()) { setTimeout(() => { document.querySelector('.app__body .inner-wrap').classList.add('move--left-small'); document.querySelector('.app__body .sidebar--menu').classList.add('move--left'); }); } } hideSidebars() { if (Utils.isMobile()) { AppDispatcher.handleServerAction({ type: ActionTypes.RECEIVED_SEARCH, results: null }); AppDispatcher.handleServerAction({ type: ActionTypes.RECEIVED_POST_SELECTED, postId: null }); document.querySelector('.app__body .inner-wrap').classList.remove('move--right', 'move--left', 'move--left-small'); document.querySelector('.app__body .sidebar--left').classList.remove('move--right'); document.querySelector('.app__body .sidebar--right').classList.remove('move--left'); document.querySelector('.app__body .sidebar--menu').classList.remove('move--left'); } } render() { var teamLink = ''; var inviteLink = ''; var teamSettingsLink = ''; var manageLink = ''; var consoleLink = ''; var currentUser = UserStore.getCurrentUser(); var isAdmin = false; var isSystemAdmin = false; if (currentUser != null) { isAdmin = TeamStore.isTeamAdminForCurrentTeam() || UserStore.isSystemAdminForCurrentUser(); isSystemAdmin = UserStore.isSystemAdminForCurrentUser(); inviteLink = (
  • ); if (this.props.teamType === 'O') { teamLink = (
  • ); } if (global.window.mm_license.IsLicensed === 'true') { if (global.window.mm_config.RestrictTeamInvite === Constants.PERMISSIONS_SYSTEM_ADMIN && !isSystemAdmin) { teamLink = null; inviteLink = null; } else if (global.window.mm_config.RestrictTeamInvite === Constants.PERMISSIONS_TEAM_ADMIN && !isAdmin) { teamLink = null; inviteLink = null; } } } if (isAdmin) { teamSettingsLink = (
  • ); manageLink = (
  • ); } if (isSystemAdmin && !Utils.isMobile()) { consoleLink = (
  • ); } var siteName = ''; if (global.window.mm_config.SiteName != null) { siteName = global.window.mm_config.SiteName; } var teamDisplayName = siteName; if (this.props.teamDisplayName) { teamDisplayName = this.props.teamDisplayName; } let helpLink = null; if (global.window.mm_config.HelpLink) { helpLink = (
  • ); } let reportLink = null; if (global.window.mm_config.ReportAProblemLink) { reportLink = (
  • ); } let tutorialTip = null; if (this.state.showTutorialTip) { tutorialTip = createMenuTip((e) => e.preventDefault(), true); this.closeLeftSidebar(); this.openRightSidebar(); } return ( ); } } SidebarRightMenu.propTypes = { teamType: React.PropTypes.string, teamDisplayName: React.PropTypes.string };