fix(core): update

This commit is contained in:
Philipp Kunz 2022-04-21 23:52:45 +02:00
parent 7192d3fbf7
commit 79e64c4cc2

View File

@ -140,12 +140,9 @@ export class Keyboard {
public keyEnum = Key;
public on(keys: Key[] | KeyCombo[]) {
const combos = this.toCombos(keys);
public on(keys: Key[]) {
const subject = new plugins.smartrx.rxjs.Subject<KeyboardEvent>();
combos.forEach((combo) => {
this.registerComboCallback(combo, subject);
});
this.registerKeys(keys, subject);
return subject;
}
@ -168,8 +165,8 @@ export class Keyboard {
private handleKeyDown = (event: KeyboardEvent) => {
this.pressedKeys.add(event.keyCode);
this.mapCombosToHandlers.forEach((subjectArg, comboArg) => {
if (this.isComboPressed(comboArg)) {
this.mapCombosToHandlers.forEach((subjectArg, keysArg) => {
if (this.areAllKeysPressed(keysArg)) {
subjectArg.next(event);
}
});
@ -179,7 +176,7 @@ export class Keyboard {
this.pressedKeys.delete(event.keyCode);
};
private isComboPressed(combo: number[]) {
private areAllKeysPressed(combo: number[]) {
let result = true;
combo.forEach((key) => {
@ -191,33 +188,15 @@ export class Keyboard {
return result;
}
private registerComboCallback(
comboArg: Array<Key>,
private registerKeys(
keysArg: Array<Key>,
subjectArg: plugins.smartrx.rxjs.Subject<KeyboardEvent>
) {
if (!this.mapCombosToHandlers.has(comboArg)) {
this.mapCombosToHandlers.set(comboArg, subjectArg);
if (!this.mapCombosToHandlers.has(keysArg)) {
this.mapCombosToHandlers.set(keysArg, subjectArg);
} else {
const subject = this.mapCombosToHandlers.get(comboArg);
const subject = this.mapCombosToHandlers.get(keysArg);
return subject;
}
}
private toCombos(keys: KeyCombo[] | Key[]) {
if (keys.length === 0) {
return [];
}
const isKeys = !Array.isArray(keys[0]);
let combos: KeyCombo[] = [];
if (isKeys) {
combos = (keys as Key[]).map((key) => [key]);
} else {
combos = keys as KeyCombo[];
combos = combos.filter((combo) => combo.length > 0);
}
return combos;
}
}