summaryrefslogtreecommitdiffstats
path: root/web/react/components/removed_from_channel_modal.jsx
blob: 3a5a58d5e65825332875fc995ecf7fcd06a8bdd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
// See License.txt for license information.

var ChannelStore = require('../stores/channel_store.jsx');
var UserStore = require('../stores/user_store.jsx');
var utils = require('../utils/utils.jsx');

module.exports = React.createClass({
    handleClose: function() {
      var townSquare = ChannelStore.getByName("town-square");
      utils.switchChannel(townSquare);
    },
    componentDidMount: function() {
      $(this.getDOMNode()).on('hidden.bs.modal',this.handleClose);
    },
    componentWillUnmount: function() {
      $(this.getDOMNode()).off('hidden.bs.modal',this.handleClose);
    },
    render: function() {
        currentUser = UserStore.getCurrentUser();

        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">&times;</span></button>
                          <h4 className="modal-title" />
                        </div>
                        <div className="modal-body">
                            <p />
                        </div>
                        <div className="modal-footer">
                          <button type="button" className="btn btn-primary" data-dismiss="modal">Okay</button>
                        </div>
                      </div>
                   </div>
                </div>
            );
        } else {
            return <div/>;
        }
    }
});