support mutliple modifiers for key bindings
This commit is contained in:
parent
4e94695c75
commit
036ede3379
11 changed files with 75 additions and 75 deletions
|
@ -1,9 +1,23 @@
|
|||
import actions from 'content/actions';
|
||||
import * as keyUtils from 'shared/utils/keys';
|
||||
|
||||
const set = (value) => {
|
||||
let maps = new Map();
|
||||
if (value.keymaps) {
|
||||
let entries = Object.entries(value.keymaps).map((entry) => {
|
||||
return [
|
||||
keyUtils.fromMapKeys(entry[0]),
|
||||
entry[1],
|
||||
];
|
||||
});
|
||||
maps = new Map(entries);
|
||||
}
|
||||
|
||||
return {
|
||||
type: actions.SETTING_SET,
|
||||
value,
|
||||
value: Object.assign({}, value, {
|
||||
keymaps: maps,
|
||||
})
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@ export default class Follow {
|
|||
}
|
||||
this.win.parent.postMessage(JSON.stringify({
|
||||
type: messages.FOLLOW_KEY_PRESS,
|
||||
key,
|
||||
key: key.key,
|
||||
}), '*');
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -1,22 +1,5 @@
|
|||
import * as dom from 'shared/utils/dom';
|
||||
|
||||
const modifierdKeyName = (name) => {
|
||||
if (name.length === 1) {
|
||||
return name.toUpperCase();
|
||||
} else if (name === 'Escape') {
|
||||
return 'Esc';
|
||||
}
|
||||
return name;
|
||||
};
|
||||
|
||||
const mapKey = (e) => {
|
||||
if (e.ctrlKey) {
|
||||
return '<C-' + modifierdKeyName(e.key) + '>';
|
||||
} else if (e.shiftKey && e.key.length !== 1) {
|
||||
return '<S-' + modifierdKeyName(e.key) + '>';
|
||||
}
|
||||
return e.key;
|
||||
};
|
||||
import * as keys from 'shared/utils/keys';
|
||||
|
||||
export default class InputComponent {
|
||||
constructor(target) {
|
||||
|
@ -64,7 +47,7 @@ export default class InputComponent {
|
|||
return;
|
||||
}
|
||||
|
||||
let key = mapKey(e);
|
||||
let key = keys.fromKeyboardEvent(e);
|
||||
|
||||
for (let listener of this.onKeyListeners) {
|
||||
let stop = listener(key);
|
||||
|
|
|
@ -1,6 +1,19 @@
|
|||
import * as inputActions from 'content/actions/input';
|
||||
import * as operationActions from 'content/actions/operation';
|
||||
import operations from 'shared/operations';
|
||||
import * as keyUtils from 'shared/utils/keys';
|
||||
|
||||
const mapStartsWith = (mapping, keys) => {
|
||||
if (mapping.length < keys.length) {
|
||||
return false;
|
||||
}
|
||||
for (let i = 0; i < keys.length; ++i) {
|
||||
if (!keyUtils.equals(mapping[i], keys[i])) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
};
|
||||
|
||||
export default class KeymapperComponent {
|
||||
constructor(store) {
|
||||
|
@ -14,14 +27,14 @@ export default class KeymapperComponent {
|
|||
let input = state.input;
|
||||
let keymaps = state.setting.keymaps;
|
||||
|
||||
let matched = Object.keys(keymaps).filter((keyStr) => {
|
||||
return keyStr.startsWith(input.keys);
|
||||
let matched = Array.from(keymaps.keys()).filter((mapping) => {
|
||||
return mapStartsWith(mapping, input.keys);
|
||||
});
|
||||
if (!state.addon.enabled) {
|
||||
// available keymaps are only ADDON_ENABLE and ADDON_TOGGLE_ENABLED if
|
||||
// the addon disabled
|
||||
matched = matched.filter((keys) => {
|
||||
let type = keymaps[keys].type;
|
||||
let type = keymaps.get(keys).type;
|
||||
return type === operations.ADDON_ENABLE ||
|
||||
type === operations.ADDON_TOGGLE_ENABLED;
|
||||
});
|
||||
|
@ -30,10 +43,10 @@ export default class KeymapperComponent {
|
|||
this.store.dispatch(inputActions.clearKeys());
|
||||
return false;
|
||||
} else if (matched.length > 1 ||
|
||||
matched.length === 1 && input.keys !== matched[0]) {
|
||||
matched.length === 1 && input.keys.length < matched[0].length) {
|
||||
return true;
|
||||
}
|
||||
let operation = keymaps[matched];
|
||||
let operation = keymaps.get(matched[0]);
|
||||
this.store.dispatch(operationActions.exec(operation));
|
||||
this.store.dispatch(inputActions.clearKeys());
|
||||
return true;
|
||||
|
|
|
@ -76,7 +76,7 @@ export default class FollowController {
|
|||
this.activate();
|
||||
this.store.dispatch(followControllerActions.disable());
|
||||
break;
|
||||
case 'Escape':
|
||||
case 'Esc':
|
||||
this.store.dispatch(followControllerActions.disable());
|
||||
break;
|
||||
case 'Backspace':
|
||||
|
|
|
@ -1,18 +1,18 @@
|
|||
import actions from 'content/actions';
|
||||
|
||||
const defaultState = {
|
||||
keys: ''
|
||||
keys: []
|
||||
};
|
||||
|
||||
export default function reducer(state = defaultState, action = {}) {
|
||||
switch (action.type) {
|
||||
case actions.INPUT_KEY_PRESS:
|
||||
return Object.assign({}, state, {
|
||||
keys: state.keys + action.key
|
||||
keys: state.keys.concat([action.key]),
|
||||
});
|
||||
case actions.INPUT_CLEAR_KEYS:
|
||||
return Object.assign({}, state, {
|
||||
keys: '',
|
||||
keys: [],
|
||||
});
|
||||
default:
|
||||
return state;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import actions from 'content/actions';
|
||||
|
||||
const defaultState = {
|
||||
keymaps: {},
|
||||
keymaps: new Map(),
|
||||
};
|
||||
|
||||
export default function reducer(state = defaultState, action = {}) {
|
||||
|
|
Reference in a new issue