save keymap in input store in content

This commit is contained in:
Shin'ya Ueoka 2017-10-09 14:30:58 +09:00
parent 892eb8a6a6
commit 355c0c6457
6 changed files with 19 additions and 24 deletions

View file

@ -2,6 +2,7 @@ import actions from 'content/actions';
const defaultState = {
keys: '',
keymaps: {},
};
export default function reducer(state = defaultState, action = {}) {
@ -14,6 +15,10 @@ export default function reducer(state = defaultState, action = {}) {
return Object.assign({}, state, {
keys: '',
});
case actions.INPUT_SET_KEYMAPS:
return Object.assign({}, state, {
keymaps: action.keymaps,
});
default:
return state;
}