From 03502cf73b8513a40877b1ac5726523974661d4d Mon Sep 17 00:00:00 2001 From: VeraLyu Date: Thu, 13 Apr 2017 04:23:33 +0800 Subject: PLT-6155: Keep pin badges in RHS consistent with that in center (#6018) Sync search store when recieving pin/unpin event to keep pin badges in RHS consistent with that in center channel. --- webapp/stores/search_store.jsx | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'webapp/stores') diff --git a/webapp/stores/search_store.jsx b/webapp/stores/search_store.jsx index d94c48f8a..97e6a3b85 100644 --- a/webapp/stores/search_store.jsx +++ b/webapp/stores/search_store.jsx @@ -117,6 +117,20 @@ class SearchStoreClass extends EventEmitter { }); } } + + togglePinPost(postId, isPinned) { + const results = this.getSearchResults(); + if (results == null) { + return; + } + + if (postId in results.posts) { + const post = results.posts[postId]; + results.posts[postId] = Object.assign({}, post, { + is_pinned: isPinned + }); + } + } } var SearchStore = new SearchStoreClass(); @@ -140,6 +154,14 @@ SearchStore.dispatchToken = AppDispatcher.register((payload) => { SearchStore.deletePost(action.post); SearchStore.emitSearchChange(); break; + case ActionTypes.RECEIVED_POST_PINNED: + SearchStore.togglePinPost(action.reaction, true); + SearchStore.emitSearchChange(); + break; + case ActionTypes.RECEIVED_POST_UNPINNED: + SearchStore.togglePinPost(action.reaction, false); + SearchStore.emitSearchChange(); + break; default: } }); -- cgit v1.2.3-1-g7c22