summaryrefslogtreecommitdiffstats
path: root/web/react/components/delete_channel_modal.jsx
blob: a8c6907893d1e1249c59b73bf88609a23e9b34db (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
46
47
48
49
50
51
52
53
54
55
56
57
58
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
// See License.txt for license information.

var Client =require('../utils/client.jsx');
var AsyncClient =require('../utils/async_client.jsx');
var ChannelStore =require('../stores/channel_store.jsx')

module.exports = React.createClass({
    handleDelete: function(e) {
        if (this.state.channel_id.length != 26) return;

        Client.deleteChannel(this.state.channel_id,
            function(data) {
                AsyncClient.getChannels(true);
                window.location.href = '/channels/town-square';
            }.bind(this),
            function(err) {
                AsyncClient.dispatchError(err, "handleDelete");
            }.bind(this)
        );
    },
    componentDidMount: function() {
        var self = this;
        $(this.refs.modal.getDOMNode()).on('show.bs.modal', function(e) {
            var button = $(e.relatedTarget);
            self.setState({ title: button.attr('data-title'), channel_id: button.attr('data-channelid') });
        });
    },
    getInitialState: function() {
        return { title: "", channel_id: "" };
    },
    render: function() {

        var channelType = ChannelStore.getCurrent() && ChannelStore.getCurrent().type === 'P' ? "private group" : "channel"

        return (
            <div className="modal fade" ref="modal" id="delete_channel" 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">Confirm DELETE Channel</h4>
                  </div>
                  <div className="modal-body">
                    <p>
                        Are you sure you wish to delete the {this.state.title} {channelType}?
                    </p>
                  </div>
                  <div className="modal-footer">
                    <button type="button" className="btn btn-default" data-dismiss="modal">Close</button>
                    <button type="button" className="btn btn-danger" data-dismiss="modal" onClick={this.handleDelete}>Delete</button>
                  </div>
                </div>
              </div>
            </div>
        );
    }
});