From 56e74239d6b34df8f30ef046f0b0ff4ff0866a71 Mon Sep 17 00:00:00 2001 From: =Corey Hulen Date: Sun, 14 Jun 2015 23:53:32 -0800 Subject: first commit --- web/react/components/delete_channel_modal.jsx | 58 +++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 web/react/components/delete_channel_modal.jsx (limited to 'web/react/components/delete_channel_modal.jsx') diff --git a/web/react/components/delete_channel_modal.jsx b/web/react/components/delete_channel_modal.jsx new file mode 100644 index 000000000..a8c690789 --- /dev/null +++ b/web/react/components/delete_channel_modal.jsx @@ -0,0 +1,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 ( + + ); + } +}); -- cgit v1.2.3-1-g7c22