summaryrefslogtreecommitdiffstats
path: root/web/react/components/sidebar.jsx
diff options
context:
space:
mode:
authornickago <ngonella@calpoly.edu>2015-07-22 15:12:50 -0700
committernickago <ngonella@calpoly.edu>2015-07-27 14:07:23 -0700
commited70db18611331de99b2a86b580947e56d0cb7e5 (patch)
treefb89244f627ecaa8ead8ae00f3ddf34f96477a19 /web/react/components/sidebar.jsx
parentc9459feb59a3dc05de229aea7652b0a726ac98bf (diff)
downloadchat-ed70db18611331de99b2a86b580947e56d0cb7e5.tar.gz
chat-ed70db18611331de99b2a86b580947e56d0cb7e5.tar.bz2
chat-ed70db18611331de99b2a86b580947e56d0cb7e5.zip
When user is removed, a modal appears, which on closing redirects the
user to town square.
Diffstat (limited to 'web/react/components/sidebar.jsx')
-rw-r--r--web/react/components/sidebar.jsx9
1 files changed, 7 insertions, 2 deletions
diff --git a/web/react/components/sidebar.jsx b/web/react/components/sidebar.jsx
index ed75e51cf..a29c6a903 100644
--- a/web/react/components/sidebar.jsx
+++ b/web/react/components/sidebar.jsx
@@ -201,8 +201,13 @@ module.exports = React.createClass({
if(msg.user_id === UserStore.getCurrentId()) {
AsyncClient.getChannels(true);
- if(msg.props.channel_id === ChannelStore.getCurrentId()) {
- window.location.reload();
+ if(msg.props.channel_id === ChannelStore.getCurrentId() && $('#removed_from_channel').length > 0) {
+ var channelName = ChannelStore.getCurrent().display_name;
+ var curUser = UserStore.getProfile(msg.props.remover).username;
+ $('#removed_from_channel').find('.modal-title').text("Removed from " + channelName);
+ $('#removed_from_channel').find('.modal-body').children().text(curUser + " removed you from " + channelName);
+
+ $('#removed_from_channel').modal('show');
}
}
}