2021-03-07 09:05:36 +03:00
|
|
|
/*
|
|
|
|
Copyright 2021 Clemens Zeidler
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
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
|
|
|
|
2021-03-01 11:43:00 +03:00
|
|
|
/** Actions for the chat message composer component */
|
|
|
|
export enum MessageComposerAction {
|
2021-02-16 09:05:39 +03:00
|
|
|
/** Send a message */
|
2021-02-14 05:56:55 +03:00
|
|
|
Send = 'Send',
|
2021-02-16 09:05:39 +03:00
|
|
|
/** Go backwards through the send history and use the message in composer view */
|
2021-02-14 05:56:55 +03:00
|
|
|
SelectPrevSendHistory = 'SelectPrevSendHistory',
|
2021-02-16 09:05:39 +03:00
|
|
|
/** Go forwards through the send history */
|
2021-02-14 05:56:55 +03:00
|
|
|
SelectNextSendHistory = 'SelectNextSendHistory',
|
2021-02-16 09:05:39 +03:00
|
|
|
/** Start editing the user's last sent message */
|
|
|
|
EditPrevMessage = 'EditPrevMessage',
|
|
|
|
/** Start editing the user's next sent message */
|
|
|
|
EditNextMessage = 'EditNextMessage',
|
2021-03-13 11:53:58 +03:00
|
|
|
/** Cancel editing a message or cancel replying to a message */
|
2021-02-16 09:05:39 +03:00
|
|
|
CancelEditing = 'CancelEditing',
|
2021-02-17 12:00:48 +03:00
|
|
|
|
|
|
|
/** Set bold format the current selection */
|
|
|
|
FormatBold = 'FormatBold',
|
|
|
|
/** Set italics format the current selection */
|
|
|
|
FormatItalics = 'FormatItalics',
|
|
|
|
/** Format the current selection as quote */
|
|
|
|
FormatQuote = 'FormatQuote',
|
|
|
|
/** Undo the last editing */
|
|
|
|
EditUndo = 'EditUndo',
|
|
|
|
/** Redo editing */
|
|
|
|
EditRedo = 'EditRedo',
|
|
|
|
/** Insert new line */
|
|
|
|
NewLine = 'NewLine',
|
2021-03-13 11:53:58 +03:00
|
|
|
/** Move the cursor to the start of the message */
|
2021-02-17 12:00:48 +03:00
|
|
|
MoveCursorToStart = 'MoveCursorToStart',
|
2021-03-13 11:53:58 +03:00
|
|
|
/** Move the cursor to the end of the message */
|
2021-02-17 12:00:48 +03:00
|
|
|
MoveCursorToEnd = 'MoveCursorToEnd',
|
2021-03-01 11:43:00 +03:00
|
|
|
}
|
2021-02-17 12:00:48 +03:00
|
|
|
|
2021-03-01 11:43:00 +03:00
|
|
|
/** Actions for text editing autocompletion */
|
|
|
|
export enum AutocompleteAction {
|
2021-05-11 13:14:21 +03:00
|
|
|
/** Accepts chosen autocomplete selection */
|
|
|
|
Complete = 'Complete',
|
|
|
|
/** Accepts chosen autocomplete selection or,
|
|
|
|
* if the autocompletion window is not shown, open the window and select the first selection */
|
|
|
|
ForceComplete = 'ForceComplete',
|
2021-02-17 12:00:48 +03:00
|
|
|
/** Move to the previous autocomplete selection */
|
2021-03-01 11:43:00 +03:00
|
|
|
PrevSelection = 'PrevSelection',
|
2021-02-17 12:00:48 +03:00
|
|
|
/** Move to the next autocomplete selection */
|
2021-03-01 11:43:00 +03:00
|
|
|
NextSelection = 'NextSelection',
|
2021-03-28 09:59:33 +03:00
|
|
|
/** Close the autocompletion window */
|
|
|
|
Cancel = 'Cancel',
|
2021-03-01 11:43:00 +03:00
|
|
|
}
|
2021-02-28 10:13:34 +03:00
|
|
|
|
2021-03-13 11:53:58 +03:00
|
|
|
/** Actions for the room list sidebar */
|
2021-03-01 11:43:00 +03:00
|
|
|
export enum RoomListAction {
|
2021-02-28 10:13:34 +03:00
|
|
|
/** Clear room list filter field */
|
2021-03-01 11:43:00 +03:00
|
|
|
ClearSearch = 'ClearSearch',
|
2021-02-28 10:13:34 +03:00
|
|
|
/** Navigate up/down in the room list */
|
2021-03-01 11:43:00 +03:00
|
|
|
PrevRoom = 'PrevRoom',
|
2021-02-28 10:13:34 +03:00
|
|
|
/** Navigate down in the room list */
|
2021-03-01 11:43:00 +03:00
|
|
|
NextRoom = 'NextRoom',
|
2021-02-28 10:13:34 +03:00
|
|
|
/** Select room from the room list */
|
2021-03-01 11:43:00 +03:00
|
|
|
SelectRoom = 'SelectRoom',
|
2021-02-28 10:13:34 +03:00
|
|
|
/** Collapse room list section */
|
2021-03-01 11:43:00 +03:00
|
|
|
CollapseSection = 'CollapseSection',
|
2021-02-28 10:13:34 +03:00
|
|
|
/** Expand room list section, if already expanded, jump to first room in the selection */
|
2021-03-01 11:43:00 +03:00
|
|
|
ExpandSection = 'ExpandSection',
|
|
|
|
}
|
2021-02-28 10:13:34 +03:00
|
|
|
|
2021-03-01 11:43:00 +03:00
|
|
|
/** Actions for the current room view */
|
|
|
|
export enum RoomAction {
|
2021-02-28 10:13:34 +03:00
|
|
|
/** Scroll up in the timeline */
|
2021-03-01 11:43:00 +03:00
|
|
|
ScrollUp = 'ScrollUp',
|
2021-02-28 10:13:34 +03:00
|
|
|
/** Scroll down in the timeline */
|
|
|
|
RoomScrollDown = 'RoomScrollDown',
|
|
|
|
/** Dismiss read marker and jump to bottom */
|
2021-03-01 11:43:00 +03:00
|
|
|
DismissReadMarker = 'DismissReadMarker',
|
2021-03-01 12:15:05 +03:00
|
|
|
/** Jump to oldest unread message */
|
|
|
|
JumpToOldestUnread = 'JumpToOldestUnread',
|
2021-03-13 11:53:58 +03:00
|
|
|
/** Upload a file */
|
2021-03-01 11:43:00 +03:00
|
|
|
UploadFile = 'UploadFile',
|
2021-03-13 11:53:58 +03:00
|
|
|
/** Focus search message in a room (must be enabled) */
|
2021-03-01 11:43:00 +03:00
|
|
|
FocusSearch = 'FocusSearch',
|
2021-03-13 11:53:58 +03:00
|
|
|
/** Jump to the first (downloaded) message in the room */
|
2021-03-01 11:43:00 +03:00
|
|
|
JumpToFirstMessage = 'JumpToFirstMessage',
|
2021-03-13 11:53:58 +03:00
|
|
|
/** Jump to the latest message in the room */
|
2021-03-01 11:43:00 +03:00
|
|
|
JumpToLatestMessage = 'JumpToLatestMessage',
|
|
|
|
}
|
2021-02-28 10:13:34 +03:00
|
|
|
|
2021-03-13 11:53:58 +03:00
|
|
|
/** Actions for navigating do various menus, dialogs or screens */
|
2021-03-01 11:43:00 +03:00
|
|
|
export enum NavigationAction {
|
2021-03-13 11:53:58 +03:00
|
|
|
/** Jump to room search (search for a room) */
|
2021-03-12 09:40:28 +03:00
|
|
|
FocusRoomSearch = 'FocusRoomSearch',
|
2021-12-07 12:32:00 +03:00
|
|
|
/** Toggle the space panel */
|
|
|
|
ToggleSpacePanel = 'ToggleSpacePanel',
|
2021-02-28 10:13:34 +03:00
|
|
|
/** Toggle the room side panel */
|
2021-03-01 11:43:00 +03:00
|
|
|
ToggleRoomSidePanel = 'ToggleRoomSidePanel',
|
2021-02-28 10:13:34 +03:00
|
|
|
/** Toggle the user menu */
|
2021-03-01 11:43:00 +03:00
|
|
|
ToggleUserMenu = 'ToggleUserMenu',
|
2021-03-13 11:53:58 +03:00
|
|
|
/** Toggle the short cut help dialog */
|
2022-01-17 14:53:10 +03:00
|
|
|
OpenShortCutDialog = 'OpenShortCutDialog',
|
2021-03-13 11:53:58 +03:00
|
|
|
/** Got to the Element home screen */
|
2021-03-01 11:43:00 +03:00
|
|
|
GoToHome = 'GoToHome',
|
2021-03-13 11:53:58 +03:00
|
|
|
/** Select prev room */
|
2021-03-01 11:43:00 +03:00
|
|
|
SelectPrevRoom = 'SelectPrevRoom',
|
2021-03-13 11:53:58 +03:00
|
|
|
/** Select next room */
|
2021-03-01 11:43:00 +03:00
|
|
|
SelectNextRoom = 'SelectNextRoom',
|
2021-03-13 11:53:58 +03:00
|
|
|
/** Select prev room with unread messages */
|
2021-03-01 11:43:00 +03:00
|
|
|
SelectPrevUnreadRoom = 'SelectPrevUnreadRoom',
|
2021-03-13 11:53:58 +03:00
|
|
|
/** Select next room with unread messages */
|
2021-03-01 11:43:00 +03:00
|
|
|
SelectNextUnreadRoom = 'SelectNextUnreadRoom',
|
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 */
|
|
|
|
ctrlOrCmd?: boolean;
|
|
|
|
|
|
|
|
altKey?: boolean;
|
|
|
|
ctrlKey?: boolean;
|
|
|
|
metaKey?: boolean;
|
|
|
|
shiftKey?: boolean;
|
2021-06-29 15:11:58 +03:00
|
|
|
};
|
2021-02-11 12:18:10 +03:00
|
|
|
|
2021-03-01 11:43:00 +03:00
|
|
|
export type KeyBinding<T extends string> = {
|
|
|
|
action: T;
|
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
|
|
|
|
if (combo.ctrlOrCmd) {
|
|
|
|
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
|
|
|
|
|
|
|
export type KeyBindingGetter<T extends string> = () => KeyBinding<T>[];
|
|
|
|
|
|
|
|
export interface IKeyBindingsProvider {
|
|
|
|
getMessageComposerBindings: KeyBindingGetter<MessageComposerAction>;
|
|
|
|
getAutocompleteBindings: KeyBindingGetter<AutocompleteAction>;
|
|
|
|
getRoomListBindings: KeyBindingGetter<RoomListAction>;
|
|
|
|
getRoomBindings: KeyBindingGetter<RoomAction>;
|
|
|
|
getNavigationBindings: KeyBindingGetter<NavigationAction>;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
*/
|
2021-04-01 16:15:21 +03:00
|
|
|
private getAction<T extends string>(
|
|
|
|
getters: KeyBindingGetter<T>[],
|
|
|
|
ev: KeyboardEvent | React.KeyboardEvent,
|
|
|
|
): T | 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
getMessageComposerAction(ev: KeyboardEvent | React.KeyboardEvent): MessageComposerAction | 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
|
|
|
}
|
|
|
|
|
|
|
|
getAutocompleteAction(ev: KeyboardEvent | React.KeyboardEvent): AutocompleteAction | 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
|
|
|
}
|
|
|
|
|
|
|
|
getRoomListAction(ev: KeyboardEvent | React.KeyboardEvent): RoomListAction | 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
|
|
|
}
|
|
|
|
|
|
|
|
getRoomAction(ev: KeyboardEvent | React.KeyboardEvent): RoomAction | 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
|
|
|
|
2021-03-01 11:43:00 +03:00
|
|
|
getNavigationAction(ev: KeyboardEvent | React.KeyboardEvent): NavigationAction | 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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const manager = new KeyBindingsManager();
|
|
|
|
|
|
|
|
export function getKeyBindingsManager(): KeyBindingsManager {
|
|
|
|
return manager;
|
|
|
|
}
|