2021-03-07 09:05:36 +03:00
|
|
|
/*
|
|
|
|
Copyright 2021 Clemens Zeidler
|
2022-01-31 18:55:45 +03:00
|
|
|
Copyright 2022 Šimon Brandner <simon.bra.ag@gmail.com>
|
2021-03-07 09:05:36 +03:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2022-01-31 18:55:45 +03:00
|
|
|
import { KeyBindingAction } from "./accessibility/KeyboardShortcuts";
|
2021-03-05 12:02:18 +03:00
|
|
|
import { defaultBindingsProvider } from './KeyBindingsDefaults';
|
2021-03-01 12:16:05 +03:00
|
|
|
import { isMac } from './Keyboard';
|
2021-02-11 12:18:10 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Represent a key combination.
|
2021-02-16 09:05:39 +03:00
|
|
|
*
|
2021-02-14 05:56:55 +03:00
|
|
|
* The combo is evaluated strictly, i.e. the KeyboardEvent must match exactly what is specified in the KeyCombo.
|
2021-02-11 12:18:10 +03:00
|
|
|
*/
|
|
|
|
export type KeyCombo = {
|
2021-02-15 09:21:08 +03:00
|
|
|
key?: string;
|
2021-02-11 12:18:10 +03:00
|
|
|
|
|
|
|
/** On PC: ctrl is pressed; on Mac: meta is pressed */
|
2022-01-31 18:55:45 +03:00
|
|
|
ctrlOrCmdKey?: boolean;
|
2021-02-11 12:18:10 +03:00
|
|
|
|
|
|
|
altKey?: boolean;
|
|
|
|
ctrlKey?: boolean;
|
|
|
|
metaKey?: boolean;
|
|
|
|
shiftKey?: boolean;
|
2021-06-29 15:11:58 +03:00
|
|
|
};
|
2021-02-11 12:18:10 +03:00
|
|
|
|
2022-01-31 18:55:45 +03:00
|
|
|
export type KeyBinding = {
|
|
|
|
action: KeyBindingAction;
|
2021-02-14 05:56:55 +03:00
|
|
|
keyCombo: KeyCombo;
|
2021-06-29 15:11:58 +03:00
|
|
|
};
|
2021-02-14 05:56:55 +03:00
|
|
|
|
2021-02-11 12:18:10 +03:00
|
|
|
/**
|
|
|
|
* Helper method to check if a KeyboardEvent matches a KeyCombo
|
2021-02-16 09:05:39 +03:00
|
|
|
*
|
2021-02-11 12:18:10 +03:00
|
|
|
* Note, this method is only exported for testing.
|
|
|
|
*/
|
2021-02-17 12:00:48 +03:00
|
|
|
export function isKeyComboMatch(ev: KeyboardEvent | React.KeyboardEvent, combo: KeyCombo, onMac: boolean): boolean {
|
2021-02-28 10:12:36 +03:00
|
|
|
if (combo.key !== undefined) {
|
|
|
|
// When shift is pressed, letters are returned as upper case chars. In this case do a lower case comparison.
|
|
|
|
// This works for letter combos such as shift + U as well for none letter combos such as shift + Escape.
|
|
|
|
// If shift is not pressed, the toLowerCase conversion can be avoided.
|
|
|
|
if (ev.shiftKey) {
|
|
|
|
if (ev.key.toLowerCase() !== combo.key.toLowerCase()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else if (ev.key !== combo.key) {
|
|
|
|
return false;
|
|
|
|
}
|
2021-02-11 12:18:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
const comboCtrl = combo.ctrlKey ?? false;
|
|
|
|
const comboAlt = combo.altKey ?? false;
|
|
|
|
const comboShift = combo.shiftKey ?? false;
|
|
|
|
const comboMeta = combo.metaKey ?? false;
|
2021-03-06 04:17:53 +03:00
|
|
|
// Tests mock events may keep the modifiers undefined; convert them to booleans
|
|
|
|
const evCtrl = ev.ctrlKey ?? false;
|
|
|
|
const evAlt = ev.altKey ?? false;
|
|
|
|
const evShift = ev.shiftKey ?? false;
|
|
|
|
const evMeta = ev.metaKey ?? false;
|
2021-02-11 12:18:10 +03:00
|
|
|
// When ctrlOrCmd is set, the keys need do evaluated differently on PC and Mac
|
2022-01-31 18:55:45 +03:00
|
|
|
if (combo.ctrlOrCmdKey) {
|
2021-02-11 12:18:10 +03:00
|
|
|
if (onMac) {
|
2021-03-06 04:17:53 +03:00
|
|
|
if (!evMeta
|
|
|
|
|| evCtrl !== comboCtrl
|
|
|
|
|| evAlt !== comboAlt
|
|
|
|
|| evShift !== comboShift) {
|
2021-02-11 12:18:10 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
2021-03-06 04:17:53 +03:00
|
|
|
if (!evCtrl
|
|
|
|
|| evMeta !== comboMeta
|
|
|
|
|| evAlt !== comboAlt
|
|
|
|
|| evShift !== comboShift) {
|
2021-02-11 12:18:10 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-03-06 04:17:53 +03:00
|
|
|
if (evMeta !== comboMeta
|
|
|
|
|| evCtrl !== comboCtrl
|
|
|
|
|| evAlt !== comboAlt
|
|
|
|
|| evShift !== comboShift) {
|
2021-02-11 12:18:10 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2021-03-01 12:16:05 +03:00
|
|
|
|
2022-01-31 18:55:45 +03:00
|
|
|
export type KeyBindingGetter = () => KeyBinding[];
|
2021-03-01 12:16:05 +03:00
|
|
|
|
|
|
|
export interface IKeyBindingsProvider {
|
2022-01-31 18:55:45 +03:00
|
|
|
[key: string]: KeyBindingGetter;
|
2021-03-01 12:16:05 +03:00
|
|
|
}
|
|
|
|
|
2021-02-11 12:18:10 +03:00
|
|
|
export class KeyBindingsManager {
|
2021-03-01 12:16:05 +03:00
|
|
|
/**
|
|
|
|
* List of key bindings providers.
|
|
|
|
*
|
|
|
|
* Key bindings from the first provider(s) in the list will have precedence over key bindings from later providers.
|
|
|
|
*
|
|
|
|
* To overwrite the default key bindings add a new providers before the default provider, e.g. a provider for
|
|
|
|
* customized key bindings.
|
|
|
|
*/
|
|
|
|
bindingsProviders: IKeyBindingsProvider[] = [
|
2021-03-05 12:02:18 +03:00
|
|
|
defaultBindingsProvider,
|
2021-03-01 12:16:05 +03:00
|
|
|
];
|
|
|
|
|
2021-02-11 12:18:10 +03:00
|
|
|
/**
|
|
|
|
* Finds a matching KeyAction for a given KeyboardEvent
|
|
|
|
*/
|
2022-01-31 18:55:45 +03:00
|
|
|
private getAction(
|
|
|
|
getters: KeyBindingGetter[],
|
2021-04-01 16:15:21 +03:00
|
|
|
ev: KeyboardEvent | React.KeyboardEvent,
|
2022-01-31 18:55:45 +03:00
|
|
|
): KeyBindingAction | undefined {
|
2021-03-01 12:16:05 +03:00
|
|
|
for (const getter of getters) {
|
|
|
|
const bindings = getter();
|
|
|
|
const binding = bindings.find(it => isKeyComboMatch(ev, it.keyCombo, isMac));
|
|
|
|
if (binding) {
|
|
|
|
return binding.action;
|
|
|
|
}
|
2021-02-11 12:18:10 +03:00
|
|
|
}
|
2021-03-01 11:43:00 +03:00
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
|
2022-01-31 18:55:45 +03:00
|
|
|
getMessageComposerAction(ev: KeyboardEvent | React.KeyboardEvent): KeyBindingAction | undefined {
|
2021-03-01 12:16:05 +03:00
|
|
|
return this.getAction(this.bindingsProviders.map(it => it.getMessageComposerBindings), ev);
|
2021-03-01 11:43:00 +03:00
|
|
|
}
|
|
|
|
|
2022-01-31 18:55:45 +03:00
|
|
|
getAutocompleteAction(ev: KeyboardEvent | React.KeyboardEvent): KeyBindingAction | undefined {
|
2021-03-01 12:16:05 +03:00
|
|
|
return this.getAction(this.bindingsProviders.map(it => it.getAutocompleteBindings), ev);
|
2021-03-01 11:43:00 +03:00
|
|
|
}
|
|
|
|
|
2022-01-31 18:55:45 +03:00
|
|
|
getRoomListAction(ev: KeyboardEvent | React.KeyboardEvent): KeyBindingAction | undefined {
|
2021-03-01 12:16:05 +03:00
|
|
|
return this.getAction(this.bindingsProviders.map(it => it.getRoomListBindings), ev);
|
2021-03-01 11:43:00 +03:00
|
|
|
}
|
|
|
|
|
2022-01-31 18:55:45 +03:00
|
|
|
getRoomAction(ev: KeyboardEvent | React.KeyboardEvent): KeyBindingAction | undefined {
|
2021-03-01 12:16:05 +03:00
|
|
|
return this.getAction(this.bindingsProviders.map(it => it.getRoomBindings), ev);
|
2021-03-01 11:43:00 +03:00
|
|
|
}
|
2021-02-11 12:18:10 +03:00
|
|
|
|
2022-01-31 18:55:45 +03:00
|
|
|
getNavigationAction(ev: KeyboardEvent | React.KeyboardEvent): KeyBindingAction | undefined {
|
2021-03-01 12:16:05 +03:00
|
|
|
return this.getAction(this.bindingsProviders.map(it => it.getNavigationBindings), ev);
|
2021-02-11 12:18:10 +03:00
|
|
|
}
|
2022-01-26 19:50:47 +03:00
|
|
|
|
2022-01-31 18:55:45 +03:00
|
|
|
getLabsAction(ev: KeyboardEvent | React.KeyboardEvent): KeyBindingAction | undefined {
|
2022-01-26 19:50:47 +03:00
|
|
|
return this.getAction(this.bindingsProviders.map(it => it.getLabsBindings), ev);
|
|
|
|
}
|
2021-02-11 12:18:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
const manager = new KeyBindingsManager();
|
|
|
|
|
|
|
|
export function getKeyBindingsManager(): KeyBindingsManager {
|
|
|
|
return manager;
|
|
|
|
}
|