From d8bd57901e33a7057e26e782e295099ffcc0da89 Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Wed, 6 Sep 2017 23:04:13 -0700 Subject: Removing webapp --- webapp/components/channel_members_modal.jsx | 95 ----------------------------- 1 file changed, 95 deletions(-) delete mode 100644 webapp/components/channel_members_modal.jsx (limited to 'webapp/components/channel_members_modal.jsx') diff --git a/webapp/components/channel_members_modal.jsx b/webapp/components/channel_members_modal.jsx deleted file mode 100644 index f991b7599..000000000 --- a/webapp/components/channel_members_modal.jsx +++ /dev/null @@ -1,95 +0,0 @@ -// 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, isChannelAdmin, isTeamAdmin, isSystemAdmin) && this.state.channel.name !== Constants.DEFAULT_CHANNEL) { - addMembersButton = ( - { - this.props.showInviteModal(); - this.onHide(); - }} - > - - - ); - } - - return ( -
- - - - {this.props.channel.display_name} - - - {addMembersButton} - - - - - -
- ); - } -} - -ChannelMembersModal.propTypes = { - onModalDismissed: PropTypes.func.isRequired, - showInviteModal: PropTypes.func.isRequired, - channel: PropTypes.object.isRequired -}; -- cgit v1.2.3-1-g7c22