PLT-4176: Remain RHS pin post unchanged after channel switching (#6038)

Prevent changes to search_store after switched channel so that
RHS pin posts can continue to display previous content.
Этот коммит содержится в:
VeraLyu
2017-04-13 05:28:35 +08:00
коммит произвёл Corey Hulen
родитель 0aa84799fd
Коммит 59185babdc

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

@@ -5,6 +5,8 @@ import AppDispatcher from '../dispatcher/app_dispatcher.jsx';
import EventEmitter from 'events';
import Constants from 'utils/constants.jsx';
import ChannelStore from 'stores/channel_store.jsx';
var ActionTypes = Constants.ActionTypes;
var CHANGE_EVENT = 'change';
@@ -140,6 +142,13 @@ SearchStore.dispatchToken = AppDispatcher.register((payload) => {
switch (action.type) {
case ActionTypes.RECEIVED_SEARCH:
if (SearchStore.getIsPinnedPosts() === action.is_pinned_posts &&
action.is_pinned_posts === true &&
SearchStore.getSearchResults().posts &&
ChannelStore.getCurrentId() !== Object.values(SearchStore.getSearchResults().posts)[0].channel_id) {
// ignore pin posts update after switch to a new channel
return;
}
SearchStore.storeSearchResults(action.results, action.is_mention_search, action.is_flagged_posts, action.is_pinned_posts);
SearchStore.emitSearchChange();
break;