summaryrefslogtreecommitdiffstats
path: root/webapp/reducers/views/rhs.js
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/reducers/views/rhs.js')
-rw-r--r--webapp/reducers/views/rhs.js63
1 files changed, 0 insertions, 63 deletions
diff --git a/webapp/reducers/views/rhs.js b/webapp/reducers/views/rhs.js
deleted file mode 100644
index 1e6480743..000000000
--- a/webapp/reducers/views/rhs.js
+++ /dev/null
@@ -1,63 +0,0 @@
-// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import {combineReducers} from 'redux';
-import {ActionTypes} from 'utils/constants.jsx';
-import {PostTypes} from 'mattermost-redux/action_types';
-
-function selectedPostId(state = '', action) {
- switch (action.type) {
- case ActionTypes.SELECT_POST:
- return action.postId;
- case PostTypes.REMOVE_POST:
- if (action.data && action.data.id === state) {
- return '';
- }
- return state;
- default:
- return state;
- }
-}
-
-function fromSearch(state = '', action) {
- switch (action.type) {
- case ActionTypes.SELECT_POST:
- if (action.from_search) {
- return action.from_search;
- }
- return '';
- default:
- return state;
- }
-}
-
-function fromFlaggedPosts(state = false, action) {
- switch (action.type) {
- case ActionTypes.SELECT_POST:
- if (action.from_flagged_posts) {
- return action.from_flagged_posts;
- }
- return false;
- default:
- return state;
- }
-}
-
-function fromPinnedPosts(state = false, action) {
- switch (action.type) {
- case ActionTypes.SELECT_POST:
- if (action.from_pinned_posts) {
- return action.from_pinned_posts;
- }
- return false;
- default:
- return state;
- }
-}
-
-export default combineReducers({
- selectedPostId,
- fromSearch,
- fromFlaggedPosts,
- fromPinnedPosts
-});