enable/disable addon by keys

This commit is contained in:
Shin'ya Ueoka 2017-10-21 19:40:22 +09:00
parent 59f7ef205d
commit dc6d93c1da
4 changed files with 27 additions and 0 deletions

View file

@ -1,5 +1,6 @@
import * as inputActions from 'content/actions/input';
import * as operationActions from 'content/actions/operation';
import operations from 'shared/operations';
export default class KeymapperComponent {
constructor(store) {
@ -10,12 +11,23 @@ export default class KeymapperComponent {
}
key(key) {
let enabled = this.store.getState().addon.enabled;
this.store.dispatch(inputActions.keyPress(key));
let input = this.store.getState().input;
let matched = Object.keys(input.keymaps).filter((keyStr) => {
return keyStr.startsWith(input.keys);
});
if (!enabled) {
// available keymaps are only ADDON_ENABLE and ADDON_TOGGLE_ENABLED if
// the addon disabled
matched = matched.filter((keys) => {
let type = input.keymaps[keys].type;
return type === operations.ADDON_ENABLE ||
type === operations.ADDON_TOGGLE_ENABLED;
});
}
if (matched.length === 0) {
this.store.dispatch(inputActions.clearKeys());
return false;