Typing notification disappears when message is sent
Этот коммит содержится в:
@@ -13,7 +13,7 @@ module.exports = React.createClass({
|
||||
SocketStore.addChangeListener(this._onSocketChange);
|
||||
},
|
||||
componentWillUnmount: function() {
|
||||
ChannelStore.removeDiffCHannelChangeListener(this._onChange);
|
||||
ChannelStore.removeDiffChannelChangeListener(this._onChange);
|
||||
SocketStore.removeChangeListener(this._onSocketChange);
|
||||
},
|
||||
_onChange: function() {
|
||||
@@ -42,6 +42,9 @@ module.exports = React.createClass({
|
||||
}, 3000);
|
||||
}
|
||||
}
|
||||
else if (msg.action == "posted" && msg.channel_id === this.props.channelId) {
|
||||
this.setState({text:""})
|
||||
}
|
||||
},
|
||||
getInitialState: function() {
|
||||
return { text: "" };
|
||||
|
||||
@@ -228,8 +228,6 @@ var ChannelStore = assign({}, EventEmitter.prototype, {
|
||||
|
||||
ChannelStore.dispatchToken = AppDispatcher.register(function(payload) {
|
||||
var action = payload.action;
|
||||
//console.log(payload);
|
||||
//console.log(action.type + " " + (action.msg ? action.msg.action : ""))
|
||||
|
||||
switch(action.type) {
|
||||
|
||||
|
||||
Ссылка в новой задаче
Block a user