summaryrefslogtreecommitdiffstats
path: root/webapp/components/navbar.jsx
diff options
context:
space:
mode:
authorCarlos Tadeu Panato Junior <ctadeu@gmail.com>2017-06-29 14:06:17 +0200
committerJoram Wilander <jwawilander@gmail.com>2017-06-29 08:06:17 -0400
commit976030ea250bb5b9ae5cf70bddf9b9c54ab07959 (patch)
tree254624406eeba1b44c2a7333de62a07daf991fdd /webapp/components/navbar.jsx
parent520cedea16c3a4c71c2d11ede89c6a50a81ff8db (diff)
downloadchat-976030ea250bb5b9ae5cf70bddf9b9c54ab07959.tar.gz
chat-976030ea250bb5b9ae5cf70bddf9b9c54ab07959.tar.bz2
chat-976030ea250bb5b9ae5cf70bddf9b9c54ab07959.zip
[PLT-6707] /header [text] slash command: Edit the channel header (#6566)
* add /header slash command * update websocket * updater per review
Diffstat (limited to 'webapp/components/navbar.jsx')
-rw-r--r--webapp/components/navbar.jsx9
1 files changed, 9 insertions, 0 deletions
diff --git a/webapp/components/navbar.jsx b/webapp/components/navbar.jsx
index 0f8de01a3..b27e22709 100644
--- a/webapp/components/navbar.jsx
+++ b/webapp/components/navbar.jsx
@@ -55,6 +55,7 @@ export default class Navbar extends React.Component {
this.showSearch = this.showSearch.bind(this);
this.showEditChannelHeaderModal = this.showEditChannelHeaderModal.bind(this);
+ this.hideEditChannelHeaderModal = this.hideEditChannelHeaderModal.bind(this);
this.showRenameChannelModal = this.showRenameChannelModal.bind(this);
this.hideRenameChannelModal = this.hideRenameChannelModal.bind(this);
this.isStateValid = this.isStateValid.bind(this);
@@ -110,6 +111,7 @@ export default class Navbar extends React.Component {
UserStore.addChangeListener(this.onChange);
PreferenceStore.addChangeListener(this.onChange);
ModalStore.addModalListener(ActionTypes.TOGGLE_QUICK_SWITCH_MODAL, this.toggleQuickSwitchModal);
+ ModalStore.addModalListener(ActionTypes.TOGGLE_CHANNEL_HEADER_UPDATE_MODAL, this.showEditChannelHeaderModal);
$('.inner-wrap').click(this.hideSidebars);
document.addEventListener('keydown', this.handleQuickSwitchKeyPress);
}
@@ -121,6 +123,7 @@ export default class Navbar extends React.Component {
UserStore.removeChangeListener(this.onChange);
PreferenceStore.removeChangeListener(this.onChange);
ModalStore.removeModalListener(ActionTypes.TOGGLE_QUICK_SWITCH_MODAL, this.toggleQuickSwitchModal);
+ ModalStore.addModalListener(ActionTypes.TOGGLE_CHANNEL_HEADER_UPDATE_MODAL, this.hideEditChannelHeaderModal);
document.removeEventListener('keydown', this.handleQuickSwitchKeyPress);
}
@@ -193,6 +196,12 @@ export default class Navbar extends React.Component {
});
}
+ hideEditChannelHeaderModal() {
+ this.setState({
+ showEditChannelHeaderModal: false
+ });
+ }
+
showRenameChannelModal(e) {
e.preventDefault();