aboutsummaryrefslogtreecommitdiff
path: root/src/content/reducers/addon.js
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-10-21 13:26:36 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2017-10-21 13:26:36 +0900
commit59f7ef205df4750063c755a7b8834bfd7509da83 (patch)
tree64b631c18a0a7aa2ff547b4c325ee3138ea825cc /src/content/reducers/addon.js
parentcd6f7e77887f535e88690b84ad081f7cc630306f (diff)
add addon actions
Diffstat (limited to 'src/content/reducers/addon.js')
-rw-r--r--src/content/reducers/addon.js24
1 files changed, 24 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;
+ }
+}