Files
mostlymatter/webapp/components/channel_members_modal.jsx
George Goldberg 6bb65ef420 PLT-6139 (WebApp): Manage Private Channel Members (#5947)
Honour the policy setting for add/remove members from private channels
in the WebApp UI.
2017-04-04 14:43:22 -04:00

93 строки
3.0 KiB
JavaScript

// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import MemberListChannel from './member_list_channel.jsx';
import TeamStore from 'stores/team_store.jsx';
import UserStore from 'stores/user_store.jsx';
import ChannelStore from 'stores/channel_store.jsx';
import {canManageMembers} from 'utils/channel_utils.jsx';
import React from 'react';
import {Modal} from 'react-bootstrap';
import {FormattedMessage} from 'react-intl';
export default class ChannelMembersModal extends React.Component {
constructor(props) {
super(props);
this.onHide = this.onHide.bind(this);
this.state = {
channel: this.props.channel,
show: true
};
}
onHide() {
this.setState({show: false});
}
render() {
const isSystemAdmin = UserStore.isSystemAdminForCurrentUser();
const isTeamAdmin = TeamStore.isTeamAdminForCurrentTeam();
const isChannelAdmin = ChannelStore.isChannelAdminForCurrentChannel();
let addMembersButton = null;
if (canManageMembers(this.state.channel, isSystemAdmin, isTeamAdmin, isChannelAdmin)) {
addMembersButton = (
<a
id='showInviteModal'
className='btn btn-md btn-primary'
href='#'
onClick={() => {
this.props.showInviteModal();
this.onHide();
}}
>
<FormattedMessage
id='channel_members_modal.addNew'
defaultMessage=' Add New Members'
/>
</a>
);
}
return (
<div>
<Modal
dialogClassName='more-modal more-modal--action'
show={this.state.show}
onHide={this.onHide}
onExited={this.props.onModalDismissed}
>
<Modal.Header closeButton={true}>
<Modal.Title>
<span className='name'>{this.props.channel.display_name}</span>
<FormattedMessage
id='channel_members_modal.members'
defaultMessage=' Members'
/>
</Modal.Title>
{addMembersButton}
</Modal.Header>
<Modal.Body
ref='modalBody'
>
<MemberListChannel
channel={this.props.channel}
/>
</Modal.Body>
</Modal>
</div>
);
}
}
ChannelMembersModal.propTypes = {
onModalDismissed: React.PropTypes.func.isRequired,
showInviteModal: React.PropTypes.func.isRequired,
channel: React.PropTypes.object.isRequired
};