summaryrefslogtreecommitdiffstats
path: root/webapp/stores
diff options
context:
space:
mode:
authorVeraLyu <lvroyce0210@gmail.com>2017-04-18 23:47:27 +0800
committerCorey Hulen <corey@hulen.com>2017-04-18 08:47:27 -0700
commit8aab290d10cc7cdd864cebbd463044abfa2d2aea (patch)
tree24eb7d61bd19e648c0a9c916eb673190b5ec0f63 /webapp/stores
parentd5ae46c96cc837d13155ca81ca2bf7317d282b61 (diff)
downloadchat-8aab290d10cc7cdd864cebbd463044abfa2d2aea.tar.gz
chat-8aab290d10cc7cdd864cebbd463044abfa2d2aea.tar.bz2
chat-8aab290d10cc7cdd864cebbd463044abfa2d2aea.zip
PLT-6240: Remove own pinned post from RHS when removed from channel (#6098)
Dispatch REMOVE_POST event after successfully initiating delete post, others get informed by websocket event and will mark the msg as deleted but not delete from RHS.
Diffstat (limited to 'webapp/stores')
-rw-r--r--webapp/stores/search_store.jsx17
1 files changed, 17 insertions, 0 deletions
diff --git a/webapp/stores/search_store.jsx b/webapp/stores/search_store.jsx
index 62cc5635b..2ccf02f94 100644
--- a/webapp/stores/search_store.jsx
+++ b/webapp/stores/search_store.jsx
@@ -133,6 +133,19 @@ class SearchStoreClass extends EventEmitter {
});
}
}
+
+ removePost(post) {
+ const results = this.getSearchResults();
+ if (results == null) {
+ return;
+ }
+
+ const index = results.order.indexOf(post.id);
+ if (index > -1) {
+ delete results.posts[post.id];
+ results.order.splice(index, 1);
+ }
+ }
}
var SearchStore = new SearchStoreClass();
@@ -171,6 +184,10 @@ SearchStore.dispatchToken = AppDispatcher.register((payload) => {
SearchStore.togglePinPost(action.reaction, false);
SearchStore.emitSearchChange();
break;
+ case ActionTypes.REMOVE_POST:
+ SearchStore.removePost(action.post);
+ SearchStore.emitSearchChange();
+ break;
default:
}
});