From 257edc9ea3b25328aa44098e963815c3c3d25312 Mon Sep 17 00:00:00 2001 From: Joram Wilander Date: Tue, 29 Aug 2017 09:54:02 -0400 Subject: Experimental implementation for webapp plugins (#7185) * Start of experimental implementation for webapp plugins * Updates to webapp plugin architecture * Update pluggable test * Remove debug code --- webapp/reducers/plugins/index.js | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 webapp/reducers/plugins/index.js (limited to 'webapp/reducers/plugins') diff --git a/webapp/reducers/plugins/index.js b/webapp/reducers/plugins/index.js new file mode 100644 index 000000000..9cad72715 --- /dev/null +++ b/webapp/reducers/plugins/index.js @@ -0,0 +1,22 @@ +// 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'; + +function components(state = {}, action) { + switch (action.type) { + case ActionTypes.RECEIVED_PLUGIN_COMPONENTS: { + if (action.data) { + return {...action.data, ...state}; + } + return state; + } + default: + return state; + } +} + +export default combineReducers({ + components +}); -- cgit v1.2.3-1-g7c22