aboutsummaryrefslogtreecommitdiff
path: root/src/content
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2018-07-11 21:01:22 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2018-07-11 21:01:22 +0900
commitb69cc04856fd21d325193d56e212e4dbf07cb762 (patch)
tree78c2733528d42df45c9e42c6fcd34ae933da5fde /src/content
parent37840c2abb02948d36cdcfaab9063f3ea67fdb6b (diff)
Use combineReducers
Diffstat (limited to 'src/content')
-rw-r--r--src/content/reducers/index.js33
1 files changed, 9 insertions, 24 deletions
diff --git a/src/content/reducers/index.js b/src/content/reducers/index.js
index c3a474e..6e6a147 100644
--- a/src/content/reducers/index.js
+++ b/src/content/reducers/index.js
@@ -1,25 +1,10 @@
-import addonReducer from './addon';
-import findReducer from './find';
-import settingReducer from './setting';
-import inputReducer from './input';
-import followControllerReducer from './follow-controller';
+import { combineReducers } from 'redux';
+import addon from './addon';
+import find from './find';
+import setting from './setting';
+import input from './input';
+import followController from './follow-controller';
-// Make setting reducer instead of re-use
-const defaultState = {
- addon: addonReducer(undefined, {}),
- find: findReducer(undefined, {}),
- setting: settingReducer(undefined, {}),
- input: inputReducer(undefined, {}),
- followController: followControllerReducer(undefined, {}),
-};
-
-export default function reducer(state = defaultState, action = {}) {
- return {
- ...state,
- addon: addonReducer(state.addon, action),
- find: findReducer(state.find, action),
- setting: settingReducer(state.setting, action),
- input: inputReducer(state.input, action),
- followController: followControllerReducer(state.followController, action),
- };
-}
+export default combineReducers({
+ addon, find, setting, input, followController,
+});