Files
mattermost/webapp/components/team_members_modal.jsx

86 lines
2.2 KiB
React
Raw Normal View History

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import MemberListTeam from 'components/member_list_team';
2016-03-14 08:50:46 -04:00
import TeamStore from 'stores/team_store.jsx';
2016-03-14 08:50:46 -04:00
import {FormattedMessage} from 'react-intl';
2016-03-14 08:50:46 -04:00
import {Modal} from 'react-bootstrap';
import PropTypes from 'prop-types';
2016-03-14 08:50:46 -04:00
import React from 'react';
export default class TeamMembersModal extends React.Component {
2016-02-08 07:26:10 -05:00
constructor(props) {
super(props);
this.teamChanged = this.teamChanged.bind(this);
this.onHide = this.onHide.bind(this);
2016-02-08 07:26:10 -05:00
this.state = {
team: TeamStore.getCurrent(),
show: true
2016-02-08 07:26:10 -05:00
};
}
componentDidMount() {
2016-02-08 07:26:10 -05:00
TeamStore.addChangeListener(this.teamChanged);
if (this.props.onLoad) {
this.props.onLoad();
}
2016-02-08 07:26:10 -05:00
}
componentWillUnmount() {
TeamStore.removeChangeListener(this.teamChanged);
}
teamChanged() {
this.setState({team: TeamStore.getCurrent()});
}
onHide() {
this.setState({show: false});
}
render() {
2016-02-08 07:26:10 -05:00
let teamDisplayName = '';
if (this.state.team) {
teamDisplayName = this.state.team.display_name;
}
return (
<Modal
dialogClassName='more-modal'
show={this.state.show}
onHide={this.onHide}
onExited={this.props.onHide}
>
<Modal.Header closeButton={true}>
2016-04-26 20:59:14 +05:00
<Modal.Title>
<FormattedMessage
id='team_member_modal.members'
defaultMessage='{team} Members'
values={{
team: teamDisplayName
}}
/>
</Modal.Title>
</Modal.Header>
<Modal.Body>
<MemberListTeam
isAdmin={this.props.isAdmin}
/>
</Modal.Body>
</Modal>
);
}
}
TeamMembersModal.propTypes = {
onHide: PropTypes.func.isRequired,
isAdmin: PropTypes.bool.isRequired,
onLoad: PropTypes.func
};