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_info_modal.jsx | 156 ------------------------------- 1 file changed, 156 deletions(-) delete mode 100644 webapp/components/channel_info_modal.jsx (limited to 'webapp/components/channel_info_modal.jsx') diff --git a/webapp/components/channel_info_modal.jsx b/webapp/components/channel_info_modal.jsx deleted file mode 100644 index 186dfc5cf..000000000 --- a/webapp/components/channel_info_modal.jsx +++ /dev/null @@ -1,156 +0,0 @@ -// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. -// See License.txt for license information. - -import * as Utils from 'utils/utils.jsx'; -import Constants from 'utils/constants.jsx'; - -import {FormattedMessage} from 'react-intl'; -import {Modal} from 'react-bootstrap'; -import TeamStore from 'stores/team_store.jsx'; -import * as TextFormatting from 'utils/text_formatting.jsx'; - -import PropTypes from 'prop-types'; - -import React from 'react'; - -export default class ChannelInfoModal extends React.Component { - constructor(props) { - super(props); - - this.onHide = this.onHide.bind(this); - - this.state = {show: true}; - } - - onHide() { - this.setState({show: false}); - } - - render() { - let channel = this.props.channel; - let channelIcon; - const globeIcon = Constants.GLOBE_ICON_SVG; - const lockIcon = Constants.LOCK_ICON_SVG; - - if (!channel) { - const notFound = Utils.localizeMessage('channel_info.notFound', 'No Channel Found'); - - channel = { - display_name: notFound, - name: notFound, - purpose: notFound, - header: notFound, - id: notFound - }; - } - - if (channel.type === 'O') { - channelIcon = ( - - ); - } else if (channel.type === 'P') { - channelIcon = ( - - ); - } - - const channelURL = TeamStore.getCurrentTeamUrl() + '/channels/' + channel.name; - - let channelPurpose; - if (channel.purpose) { - channelPurpose = channel.purpose; - } else if (channel.name === Constants.DEFAULT_CHANNEL) { - channelPurpose = ( - - ); - } - - let channelPurposeElement; - if (channelPurpose) { - channelPurposeElement = ( -
-
- -
-
{channelPurpose}
-
- ); - } - - let channelHeader = null; - if (channel.header) { - channelHeader = ( -
-
- -
-
-
- ); - } - - return ( - - - - - {channelIcon}{channel.display_name} - - - - {channelPurposeElement} - {channelHeader} -
-
- -
-
{channelURL}
-
-
-

- - {channel.id} -

-
-
-
- ); - } -} - -ChannelInfoModal.propTypes = { - onHide: PropTypes.func.isRequired, - channel: PropTypes.object.isRequired -}; -- cgit v1.2.3-1-g7c22