When user is removed, a modal appears, which on closing redirects the

user to town square.
Этот коммит содержится в:
nickago
2015-07-22 15:12:50 -07:00
родитель c9459feb59
Коммит ed70db1861
5 изменённых файлов: 60 добавлений и 2 удалений

Просмотреть файл

@@ -0,0 +1,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/>;
}
}
});

Просмотреть файл

@@ -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');
}
}
}