aboutsummaryrefslogtreecommitdiff
path: root/src/content/actions/setting.js
blob: 4c1e38528e5c3eda6f989d230968248e44b184ce (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
26
27
28
29
30
import actions from 'content/actions';
import * as keyUtils from 'shared/utils/keys';
import operations from 'shared/operations';

const reservedKeymaps = {
  '<Esc>': { type: operations.CANCEL },
  '<C-[>': { type: operations.CANCEL },
};

const set = (value) => {
  let entries = [];
  if (value.keymaps) {
    let keymaps = Object.assign({}, value.keymaps, reservedKeymaps);
    entries = Object.entries(keymaps).map((entry) => {
      return [
        keyUtils.fromMapKeys(entry[0]),
        entry[1],
      ];
    });
  }

  return {
    type: actions.SETTING_SET,
    value: Object.assign({}, value, {
      keymaps: entries,
    })
  };
};

export { set };