mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* PLT-2697 Fixing team admins * Fixing eslint error * Fixing loc issues * Fixing func * Fixing func
304 lines
11 KiB
JavaScript
304 lines
11 KiB
JavaScript
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
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 'action_creators/global_actions.jsx';
|
|
import * as Utils from 'utils/utils.jsx';
|
|
import Constants from 'utils/constants.jsx';
|
|
|
|
const Preferences = Constants.Preferences;
|
|
const TutorialSteps = Constants.TutorialSteps;
|
|
|
|
import {FormattedMessage} from 'react-intl';
|
|
import {Link} from 'react-router';
|
|
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.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 {showTutorialTip: tutorialStep === TutorialSteps.MENU_POPOVER && Utils.isMobile()};
|
|
}
|
|
|
|
onPreferenceChange() {
|
|
this.setState(this.getStateFromStores());
|
|
}
|
|
|
|
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 = (
|
|
<li>
|
|
<a
|
|
href='#'
|
|
onClick={GlobalActions.showInviteMemberModal}
|
|
>
|
|
<i className='fa fa-user-plus'></i>
|
|
<FormattedMessage
|
|
id='sidebar_right_menu.inviteNew'
|
|
defaultMessage='Invite New Member'
|
|
/>
|
|
</a>
|
|
</li>
|
|
);
|
|
|
|
if (this.props.teamType === 'O') {
|
|
teamLink = (
|
|
<li>
|
|
<a
|
|
href='#'
|
|
onClick={GlobalActions.showGetTeamInviteLinkModal}
|
|
>
|
|
<i className='glyphicon glyphicon-link'></i>
|
|
<FormattedMessage
|
|
id='sidebar_right_menu.teamLink'
|
|
defaultMessage='Get Team Invite Link'
|
|
/>
|
|
</a>
|
|
</li>
|
|
);
|
|
}
|
|
}
|
|
|
|
if (isAdmin) {
|
|
teamSettingsLink = (
|
|
<li>
|
|
<a
|
|
href='#'
|
|
data-toggle='modal'
|
|
data-target='#team_settings'
|
|
>
|
|
<i className='fa fa-globe'></i>
|
|
<FormattedMessage
|
|
id='sidebar_right_menu.teamSettings'
|
|
defaultMessage='Team Settings'
|
|
/>
|
|
</a>
|
|
</li>
|
|
);
|
|
manageLink = (
|
|
<li>
|
|
<ToggleModalButton dialogType={TeamMembersModal}>
|
|
<i className='fa fa-users'></i>
|
|
<FormattedMessage
|
|
id='sidebar_right_menu.manageMembers'
|
|
defaultMessage='Manage Members'
|
|
/>
|
|
</ToggleModalButton>
|
|
</li>
|
|
);
|
|
}
|
|
|
|
if (isSystemAdmin && !Utils.isMobile()) {
|
|
consoleLink = (
|
|
<li>
|
|
<Link
|
|
to={'/admin_console'}
|
|
>
|
|
<i className='fa fa-wrench'></i>
|
|
<FormattedMessage
|
|
id='sidebar_right_menu.console'
|
|
defaultMessage='System Console'
|
|
/>
|
|
</Link>
|
|
</li>
|
|
);
|
|
}
|
|
|
|
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 = (
|
|
<li>
|
|
<Link
|
|
target='_blank'
|
|
to={global.window.mm_config.HelpLink}
|
|
rel='noreferrer'
|
|
>
|
|
<i className='fa fa-question'></i>
|
|
<FormattedMessage
|
|
id='sidebar_right_menu.help'
|
|
defaultMessage='Help'
|
|
/>
|
|
</Link>
|
|
</li>
|
|
);
|
|
}
|
|
|
|
let reportLink = null;
|
|
if (global.window.mm_config.ReportAProblemLink) {
|
|
reportLink = (
|
|
<li>
|
|
<Link
|
|
target='_blank'
|
|
to={global.window.mm_config.ReportAProblemLink}
|
|
rel='noreferrer'
|
|
>
|
|
<i className='fa fa-phone'></i>
|
|
<FormattedMessage
|
|
id='sidebar_right_menu.report'
|
|
defaultMessage='Report a Problem'
|
|
/>
|
|
</Link>
|
|
</li>
|
|
);
|
|
}
|
|
|
|
let tutorialTip = null;
|
|
if (this.state.showTutorialTip) {
|
|
tutorialTip = createMenuTip((e) => e.preventDefault(), true);
|
|
}
|
|
|
|
return (
|
|
<div
|
|
className='sidebar--menu'
|
|
id='sidebar-menu'
|
|
>
|
|
<div className='team__header theme'>
|
|
<Link
|
|
className='team__name'
|
|
to='/channels/town-square'
|
|
>
|
|
{teamDisplayName}
|
|
</Link>
|
|
</div>
|
|
|
|
<div className='nav-pills__container'>
|
|
{tutorialTip}
|
|
<ul className='nav nav-pills nav-stacked'>
|
|
<li>
|
|
<a
|
|
href='#'
|
|
onClick={() => this.setState({showUserSettingsModal: true})}
|
|
>
|
|
<i className='fa fa-cog'></i>
|
|
<FormattedMessage
|
|
id='sidebar_right_menu.accountSettings'
|
|
defaultMessage='Account Settings'
|
|
/>
|
|
</a>
|
|
</li>
|
|
{teamSettingsLink}
|
|
{inviteLink}
|
|
{teamLink}
|
|
{manageLink}
|
|
{consoleLink}
|
|
<li>
|
|
<Link to='/select_team'>
|
|
<i className='fa fa-exchange'></i>
|
|
<FormattedMessage
|
|
id='sidebar_right_menu.switch_team'
|
|
defaultMessage='Switch Team'
|
|
/>
|
|
</Link>
|
|
</li>
|
|
<li className='divider'></li>
|
|
<li>
|
|
<a
|
|
href='#'
|
|
onClick={GlobalActions.emitUserLoggedOutEvent}
|
|
>
|
|
<i className='fa fa-sign-out'></i>
|
|
<FormattedMessage
|
|
id='sidebar_right_menu.logout'
|
|
defaultMessage='Logout'
|
|
/>
|
|
</a>
|
|
</li>
|
|
<li className='divider'></li>
|
|
{helpLink}
|
|
{reportLink}
|
|
<li>
|
|
<a
|
|
href='#'
|
|
onClick={this.handleAboutModal}
|
|
>
|
|
<i className='fa fa-info'></i>
|
|
<FormattedMessage
|
|
id='navbar_dropdown.about'
|
|
defaultMessage='About Mattermost'
|
|
/>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<UserSettingsModal
|
|
show={this.state.showUserSettingsModal}
|
|
onModalDismissed={() => this.setState({showUserSettingsModal: false})}
|
|
/>
|
|
<AboutBuildModal
|
|
show={this.state.showAboutModal}
|
|
onModalDismissed={this.aboutModalDismissed}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
SidebarRightMenu.propTypes = {
|
|
teamType: React.PropTypes.string,
|
|
teamDisplayName: React.PropTypes.string
|
|
};
|