aboutsummaryrefslogtreecommitdiff
path: root/src/content/reducers/follow.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/content/reducers/follow.js')
-rw-r--r--src/content/reducers/follow.js32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/content/reducers/follow.js b/src/content/reducers/follow.js
new file mode 100644
index 0000000..b7c0cf3
--- /dev/null
+++ b/src/content/reducers/follow.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_ENABLE:
+ return Object.assign({}, state, {
+ enabled: true,
+ newTab: action.newTab,
+ keys: '',
+ });
+ case actions.FOLLOW_DISABLE:
+ return Object.assign({}, state, {
+ enabled: false,
+ });
+ case actions.FOLLOW_KEY_PRESS:
+ return Object.assign({}, state, {
+ keys: state.keys + action.key,
+ });
+ case actions.FOLLOW_BACKSPACE:
+ return Object.assign({}, state, {
+ keys: state.keys.slice(0, -1),
+ });
+ default:
+ return state;
+ }
+}