aboutsummaryrefslogtreecommitdiff
path: root/src/content/reducers/input.js
blob: c79b206f31d6df1f48dbedbdc843f252e1f1a9d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import actions from 'content/actions';

const defaultState = {
  keys: '',
  keymaps: {},
};

export default function reducer(state = defaultState, action = {}) {
  switch (action.type) {
  case actions.INPUT_KEY_PRESS:
    return Object.assign({}, state, {
      keys: state.keys + action.key
    });
  case actions.INPUT_CLEAR_KEYS:
    return Object.assign({}, state, {
      keys: '',
    });
  case actions.INPUT_SET_KEYMAPS:
    return Object.assign({}, state, {
      keymaps: action.keymaps,
    });
  default:
    return state;
  }
}