diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-10-21 21:17:27 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-21 21:17:27 +0900 |
commit | 7639e99b755e372712dca36e077a85d9a025cd9f (patch) | |
tree | 177a523e5996e302d647853cf4b11767e669de3c /src/content/reducers | |
parent | 941073404b534d7f79e90f29b514a5f06fb8080d (diff) | |
parent | 6ad143d294df0a0cc2dfb775ecab9f8b12ee7be5 (diff) |
Merge pull request #86 from ueokande/10-disable-temporary
Disable add-on temporary
Diffstat (limited to 'src/content/reducers')
-rw-r--r-- | src/content/reducers/addon.js | 24 | ||||
-rw-r--r-- | src/content/reducers/index.js | 3 |
2 files changed, 27 insertions, 0 deletions
diff --git a/src/content/reducers/addon.js b/src/content/reducers/addon.js new file mode 100644 index 0000000..8cc5ef1 --- /dev/null +++ b/src/content/reducers/addon.js @@ -0,0 +1,24 @@ +import actions from 'content/actions'; + +const defaultState = { + enabled: true, +}; + +export default function reducer(state = defaultState, action = {}) { + switch (action.type) { + case actions.ADDON_ENABLE: + return Object.assign({}, state, { + enabled: true, + }); + case actions.ADDON_DISABLE: + return Object.assign({}, state, { + enabled: false, + }); + case actions.ADDON_TOGGLE_ENABLED: + return Object.assign({}, state, { + enabled: !state.enabled, + }); + default: + return state; + } +} diff --git a/src/content/reducers/index.js b/src/content/reducers/index.js index c026a19..7cf318e 100644 --- a/src/content/reducers/index.js +++ b/src/content/reducers/index.js @@ -1,14 +1,17 @@ +import addonReducer from './addon'; import inputReducer from './input'; import followReducer from './follow'; // Make setting reducer instead of re-use const defaultState = { + addon: addonReducer(undefined, {}), input: inputReducer(undefined, {}), follow: followReducer(undefined, {}), }; export default function reducer(state = defaultState, action = {}) { return Object.assign({}, state, { + addon: addonReducer(state.addon, action), input: inputReducer(state.input, action), follow: followReducer(state.follow, action), }); |