summaryrefslogtreecommitdiffstats
path: root/webapp/reducers/views/rhs.js
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2017-09-06 23:04:13 -0700
committerChristopher Speller <crspeller@gmail.com>2017-09-06 23:11:58 -0700
commitd8bd57901e33a7057e26e782e295099ffcc0da89 (patch)
treee12dfc8cad42b1576756d19d7fbfd82646a009bf /webapp/reducers/views/rhs.js
parent7bc8e9a08dfde56387f946fdf5086252aa4d0491 (diff)
downloadchat-d8bd57901e33a7057e26e782e295099ffcc0da89.tar.gz
chat-d8bd57901e33a7057e26e782e295099ffcc0da89.tar.bz2
chat-d8bd57901e33a7057e26e782e295099ffcc0da89.zip
Removing webapp
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
-});