summaryrefslogtreecommitdiffstats
path: root/webapp/components/removed_from_channel_modal.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/removed_from_channel_modal.jsx')
-rw-r--r--webapp/components/removed_from_channel_modal.jsx145
1 files changed, 0 insertions, 145 deletions
diff --git a/webapp/components/removed_from_channel_modal.jsx b/webapp/components/removed_from_channel_modal.jsx
deleted file mode 100644
index c82faf7e0..000000000
--- a/webapp/components/removed_from_channel_modal.jsx
+++ /dev/null
@@ -1,145 +0,0 @@
-// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import $ from 'jquery';
-import ReactDOM from 'react-dom';
-import ChannelStore from 'stores/channel_store.jsx';
-import TeamStore from 'stores/team_store.jsx';
-import UserStore from 'stores/user_store.jsx';
-import BrowserStore from 'stores/browser_store.jsx';
-
-import {FormattedMessage} from 'react-intl';
-import {browserHistory} from 'react-router/es6';
-
-import React from 'react';
-
-export default class RemovedFromChannelModal extends React.Component {
- constructor(props) {
- super(props);
-
- this.handleShow = this.handleShow.bind(this);
- this.handleClose = this.handleClose.bind(this);
-
- this.state = {
- channelName: '',
- remover: ''
- };
- }
-
- handleShow() {
- var newState = {};
- if (BrowserStore.getItem('channel-removed-state')) {
- newState = BrowserStore.getItem('channel-removed-state');
- BrowserStore.removeItem('channel-removed-state');
- }
-
- var townSquare = ChannelStore.getByName('town-square');
- setTimeout(
- () => {
- browserHistory.push(TeamStore.getCurrentTeamRelativeUrl() + '/channels/' + townSquare.name);
- },
- 1);
-
- this.setState(newState);
- }
-
- handleClose() {
- this.setState({channelName: '', remover: ''});
- }
-
- componentDidMount() {
- $(ReactDOM.findDOMNode(this)).on('show.bs.modal', this.handleShow);
- $(ReactDOM.findDOMNode(this)).on('hidden.bs.modal', this.handleClose);
- }
-
- componentWillUnmount() {
- $(ReactDOM.findDOMNode(this)).off('show.bs.modal', this.handleShow);
- $(ReactDOM.findDOMNode(this)).off('hidden.bs.modal', this.handleClose);
- }
-
- render() {
- var currentUser = UserStore.getCurrentUser();
-
- var channelName = (
- <FormattedMessage
- id='removed_channel.channelName'
- defaultMessage='the channel'
- />
- );
- if (this.state.channelName) {
- channelName = this.state.channelName;
- }
-
- var remover = (
- <FormattedMessage
- id='removed_channel.someone'
- defaultMessage='Someone'
- />
- );
- if (this.state.remover) {
- remover = this.state.remover;
- }
-
- if (currentUser != null) {
- return (
- <div
- className='modal fade'
- ref='modal'
- id='removed_from_channel'
- tabIndex='-1'
- role='dialog'
- aria-hidden='true'
- >
- <div className='modal-dialog'>
- <div className='modal-content'>
- <div className='modal-header'>
- <button
- type='button'
- className='close'
- data-dismiss='modal'
- aria-label='Close'
- >
- <span aria-hidden='true'>
- {'×'}
- </span>
- </button>
- <h4 className='modal-title'>
- <FormattedMessage
- id='removed_channel.from'
- defaultMessage='Removed from '
- />
- <span className='name'>{channelName}</span></h4>
- </div>
- <div className='modal-body'>
- <p>
- <FormattedMessage
- id='removed_channel.remover'
- defaultMessage='{remover} removed you from {channel}'
- values={{
- remover,
- channel: (channelName)
- }}
- />
- </p>
- </div>
- <div className='modal-footer'>
- <button
- type='button'
- className='btn btn-primary'
- data-dismiss='modal'
- >
- <FormattedMessage
- id='removed_channel.okay'
- defaultMessage='Okay'
- />
- </button>
- </div>
- </div>
- </div>
- </div>
- );
- }
-
- return <div/>;
- }
-}