From cf7a05f80f68b5b1c8bcc0089679dd497cec2506 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/channel_info_modal.jsx | 50 +++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 web/react/components/channel_info_modal.jsx (limited to 'web/react/components/channel_info_modal.jsx') diff --git a/web/react/components/channel_info_modal.jsx b/web/react/components/channel_info_modal.jsx new file mode 100644 index 000000000..191297ce4 --- /dev/null +++ b/web/react/components/channel_info_modal.jsx @@ -0,0 +1,50 @@ +// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved. +// See License.txt for license information. + +var ChannelStore = require('../stores/channel_store.jsx'); + +module.exports = React.createClass({ + componentDidMount: function() { + var self = this; + if(this.refs.modal) { + $(this.refs.modal.getDOMNode()).on('show.bs.modal', function(e) { + var button = e.relatedTarget; + self.setState({ channel_id: $(button).attr('data-channelid') }); + }); + } + }, + getInitialState: function() { + return { channel_id: ChannelStore.getCurrentId() }; + }, + render: function() { + var channel = ChannelStore.get(this.state.channel_id); + + if (!channel) { + channel = {}; + channel.display_name = "No Channel Found"; + channel.name = "No Channel Found"; + channel.id = "No Channel Found"; + } + + return ( + + ); + } +}); -- cgit v1.2.3-1-g7c22