summaryrefslogtreecommitdiffstats
path: root/webapp/components/team_members_modal.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2016-03-14 08:50:46 -0400
committerChristopher Speller <crspeller@gmail.com>2016-03-16 18:02:55 -0400
commit12896bd23eeba79884245c1c29fdc568cf21a7fa (patch)
tree4e7f83d3e2564b9b89d669e9f7905ff11768b11a /webapp/components/team_members_modal.jsx
parent29fe6a3d13c9c7aa490fffebbe5d1b5fdf1e3090 (diff)
downloadchat-12896bd23eeba79884245c1c29fdc568cf21a7fa.tar.gz
chat-12896bd23eeba79884245c1c29fdc568cf21a7fa.tar.bz2
chat-12896bd23eeba79884245c1c29fdc568cf21a7fa.zip
Converting to Webpack. Stage 1.
Diffstat (limited to 'webapp/components/team_members_modal.jsx')
-rw-r--r--webapp/components/team_members_modal.jsx89
1 files changed, 89 insertions, 0 deletions
diff --git a/webapp/components/team_members_modal.jsx b/webapp/components/team_members_modal.jsx
new file mode 100644
index 000000000..fb6d28b54
--- /dev/null
+++ b/webapp/components/team_members_modal.jsx
@@ -0,0 +1,89 @@
+// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+import MemberListTeam from './member_list_team.jsx';
+import TeamStore from 'stores/team_store.jsx';
+import * as Utils from 'utils/utils.jsx';
+
+import {FormattedMessage} from 'react-intl';
+
+import {Modal} from 'react-bootstrap';
+
+import React from 'react';
+
+export default class TeamMembersModal extends React.Component {
+ constructor(props) {
+ super(props);
+
+ this.teamChanged = this.teamChanged.bind(this);
+
+ this.state = {
+ team: TeamStore.getCurrent()
+ };
+ }
+ componentDidMount() {
+ if (this.props.show) {
+ this.onShow();
+ }
+
+ TeamStore.addChangeListener(this.teamChanged);
+ }
+
+ componentWillUnmount() {
+ TeamStore.removeChangeListener(this.teamChanged);
+ }
+
+ teamChanged() {
+ this.setState({team: TeamStore.getCurrent()});
+ }
+
+ render() {
+ let teamDisplayName = '';
+ if (this.state.team) {
+ teamDisplayName = this.state.team.display_name;
+ }
+
+ let maxHeight = 1000;
+ if (Utils.windowHeight() <= 1200) {
+ maxHeight = Utils.windowHeight() - 300;
+ }
+
+ return (
+ <Modal
+ dialogClassName='more-modal'
+ show={this.props.show}
+ onHide={this.props.onHide}
+ >
+ <Modal.Header closeButton={true}>
+ <FormattedMessage
+ id='team_member_modal.members'
+ defaultMessage='{team} Members'
+ values={{
+ team: teamDisplayName
+ }}
+ />
+ </Modal.Header>
+ <Modal.Body>
+ <MemberListTeam style={{maxHeight}}/>
+ </Modal.Body>
+ <Modal.Footer>
+ <button
+ type='button'
+ className='btn btn-default'
+ onClick={this.props.onHide}
+ >
+ <FormattedMessage
+ id='team_member_modal.close'
+ defaultMessage='Close'
+ />
+ </button>
+ </Modal.Footer>
+ </Modal>
+ );
+ }
+}
+
+TeamMembersModal.propTypes = {
+ show: React.PropTypes.bool.isRequired,
+ onHide: React.PropTypes.func.isRequired
+};