From 2c600786c8ecfd73db91204e6fd816d54c077d77 Mon Sep 17 00:00:00 2001 From: Shin'ya Ueoka Date: Sun, 29 Oct 2017 10:46:34 +0900 Subject: rename to follow-controller --- src/content/reducers/follow-controller.js | 32 +++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/content/reducers/follow-controller.js (limited to 'src/content/reducers/follow-controller.js') 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; + } +} -- cgit v1.2.3