mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* Updating client dependancies. Switching to using yarn. * Updating React * Moving pure components to using function syntax (performance gains with newer react version) * Updating client dependancies. * Ignore .yarninstall * Enabling pre-lockfile because it's the entire point of using yarn. * Removing old webpack config * Moving to new prop-types * Fixing ESLint Errors * Updating jest snapshots. * Cleaning up package.json
96 lines
3.1 KiB
JavaScript
96 lines
3.1 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import MemberListChannel from 'components/member_list_channel';
|
|
|
|
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 {Constants} from 'utils/constants.jsx';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
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) && this.state.channel.name !== Constants.DEFAULT_CHANNEL) {
|
|
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: PropTypes.func.isRequired,
|
|
showInviteModal: PropTypes.func.isRequired,
|
|
channel: PropTypes.object.isRequired
|
|
};
|