diff options
Diffstat (limited to 'src/content/reducers/follow-controller.js')
-rw-r--r-- | src/content/reducers/follow-controller.js | 32 |
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; + } +} |