aboutsummaryrefslogtreecommitdiff
path: root/src/content/reducers/follow-controller.js
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-10-29 10:46:34 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2017-10-31 19:34:32 +0900
commit2c600786c8ecfd73db91204e6fd816d54c077d77 (patch)
tree8615ebf4389121f221c7e69c684c0d2ebabc74d6 /src/content/reducers/follow-controller.js
parent24c736945126625c6e099d6062bcd51a0c967e68 (diff)
rename to follow-controller
Diffstat (limited to 'src/content/reducers/follow-controller.js')
-rw-r--r--src/content/reducers/follow-controller.js32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/content/reducers/follow-controller.js b/src/content/reducers/follow-controller.js
new file mode 100644
index 0000000..2afb232
--- /dev/null
+++ b/src/content/reducers/follow-controller.js
@@ -0,0 +1,32 @@
+import actions from 'content/actions';
+
+const defaultState = {
+ enabled: false,
+ newTab: false,
+ keys: '',
+};
+
+export default function reducer(state = defaultState, action = {}) {
+ switch (action.type) {
+ case actions.FOLLOW_CONTROLLER_ENABLE:
+ return Object.assign({}, state, {
+ enabled: true,
+ newTab: action.newTab,
+ keys: '',
+ });
+ case actions.FOLLOW_CONTROLLER_DISABLE:
+ return Object.assign({}, state, {
+ enabled: false,
+ });
+ case actions.FOLLOW_CONTROLLER_KEY_PRESS:
+ return Object.assign({}, state, {
+ keys: state.keys + action.key,
+ });
+ case actions.FOLLOW_CONTROLLER_BACKSPACE:
+ return Object.assign({}, state, {
+ keys: state.keys.slice(0, -1),
+ });
+ default:
+ return state;
+ }
+}