2021-02-14 10:56:55 +08:00
|
|
|
import { isMac, Key } from './Keyboard';
|
|
|
|
import SettingsStore from './settings/SettingsStore';
|
2021-02-11 17:18:10 +08:00
|
|
|
|
2021-03-01 16:43:00 +08:00
|
|
|
/** Actions for the chat message composer component */
|
|
|
|
export enum MessageComposerAction {
|
2021-02-16 14:05:39 +08:00
|
|
|
/** Send a message */
|
2021-02-14 10:56:55 +08:00
|
|
|
Send = 'Send',
|
2021-02-16 14:05:39 +08:00
|
|
|
/** Go backwards through the send history and use the message in composer view */
|
2021-02-14 10:56:55 +08:00
|
|
|
SelectPrevSendHistory = 'SelectPrevSendHistory',
|
2021-02-16 14:05:39 +08:00
|
|
|
/** Go forwards through the send history */
|
2021-02-14 10:56:55 +08:00
|
|
|
SelectNextSendHistory = 'SelectNextSendHistory',
|
2021-02-16 14:05:39 +08:00
|
|
|
/** Start editing the user's last sent message */
|
|
|
|
EditPrevMessage = 'EditPrevMessage',
|
|
|
|
/** Start editing the user's next sent message */
|
|
|
|
EditNextMessage = 'EditNextMessage',
|
2021-02-17 17:00:48 +08:00
|
|
|
/** Cancel editing a message or cancel replying to a message*/
|
2021-02-16 14:05:39 +08:00
|
|
|
CancelEditing = 'CancelEditing',
|
2021-02-17 17:00:48 +08: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',
|
|
|
|
MoveCursorToStart = 'MoveCursorToStart',
|
|
|
|
MoveCursorToEnd = 'MoveCursorToEnd',
|
2021-03-01 16:43:00 +08:00
|
|
|
}
|
2021-02-17 17:00:48 +08:00
|
|
|
|
2021-03-01 16:43:00 +08:00
|
|
|
/** Actions for text editing autocompletion */
|
|
|
|
export enum AutocompleteAction {
|
2021-02-17 17:00:48 +08:00
|
|
|
/** Apply the current autocomplete selection */
|
2021-03-01 16:43:00 +08:00
|
|
|
ApplySelection = 'ApplySelection',
|
2021-02-17 17:00:48 +08:00
|
|
|
/** Cancel autocompletion */
|
2021-03-01 16:43:00 +08:00
|
|
|
Cancel = 'Cancel',
|
2021-02-17 17:00:48 +08:00
|
|
|
/** Move to the previous autocomplete selection */
|
2021-03-01 16:43:00 +08:00
|
|
|
PrevSelection = 'PrevSelection',
|
2021-02-17 17:00:48 +08:00
|
|
|
/** Move to the next autocomplete selection */
|
2021-03-01 16:43:00 +08:00
|
|
|
NextSelection = 'NextSelection',
|
|
|
|
}
|
2021-02-28 15:13:34 +08:00
|
|
|
|
2021-03-01 16:43:00 +08:00
|
|
|
/** Actions for the left room list sidebar */
|
|
|
|
export enum RoomListAction {
|
2021-02-28 15:13:34 +08:00
|
|
|
/** Clear room list filter field */
|
2021-03-01 16:43:00 +08:00
|
|
|
ClearSearch = 'ClearSearch',
|
2021-02-28 15:13:34 +08:00
|
|
|
/** Navigate up/down in the room list */
|
2021-03-01 16:43:00 +08:00
|
|
|
PrevRoom = 'PrevRoom',
|
2021-02-28 15:13:34 +08:00
|
|
|
/** Navigate down in the room list */
|
2021-03-01 16:43:00 +08:00
|
|
|
NextRoom = 'NextRoom',
|
2021-02-28 15:13:34 +08:00
|
|
|
/** Select room from the room list */
|
2021-03-01 16:43:00 +08:00
|
|
|
SelectRoom = 'SelectRoom',
|
2021-02-28 15:13:34 +08:00
|
|
|
/** Collapse room list section */
|
2021-03-01 16:43:00 +08:00
|
|
|
CollapseSection = 'CollapseSection',
|
2021-02-28 15:13:34 +08:00
|
|
|
/** Expand room list section, if already expanded, jump to first room in the selection */
|
2021-03-01 16:43:00 +08:00
|
|
|
ExpandSection = 'ExpandSection',
|
|
|
|
}
|
2021-02-28 15:13:34 +08:00
|
|
|
|
2021-03-01 16:43:00 +08:00
|
|
|
/** Actions for the current room view */
|
|
|
|
export enum RoomAction {
|
|
|
|
/** Jump to room search (search for a room)*/
|
|
|
|
FocusRoomSearch = 'FocusRoomSearch', // TODO: move to NavigationAction?
|
2021-02-28 15:13:34 +08:00
|
|
|
/** Scroll up in the timeline */
|
2021-03-01 16:43:00 +08:00
|
|
|
ScrollUp = 'ScrollUp',
|
2021-02-28 15:13:34 +08:00
|
|
|
/** Scroll down in the timeline */
|
|
|
|
RoomScrollDown = 'RoomScrollDown',
|
|
|
|
/** Dismiss read marker and jump to bottom */
|
2021-03-01 16:43:00 +08:00
|
|
|
DismissReadMarker = 'DismissReadMarker',
|
2021-03-01 17:15:05 +08:00
|
|
|
/** Jump to oldest unread message */
|
|
|
|
JumpToOldestUnread = 'JumpToOldestUnread',
|
2021-02-28 15:13:34 +08:00
|
|
|
/* Upload a file */
|
2021-03-01 16:43:00 +08:00
|
|
|
UploadFile = 'UploadFile',
|
|
|
|
/* Focus search message in a room (must be enabled) */
|
|
|
|
FocusSearch = 'FocusSearch',
|
2021-02-28 15:13:34 +08:00
|
|
|
/* Jump to the first (downloaded) message in the room */
|
2021-03-01 16:43:00 +08:00
|
|
|
JumpToFirstMessage = 'JumpToFirstMessage',
|
2021-02-28 15:13:34 +08:00
|
|
|
/* Jump to the latest message in the room */
|
2021-03-01 16:43:00 +08:00
|
|
|
JumpToLatestMessage = 'JumpToLatestMessage',
|
|
|
|
}
|
2021-02-28 15:13:34 +08:00
|
|
|
|
2021-03-01 16:43:00 +08:00
|
|
|
/** Actions for navigating do various menus / dialogs / screens */
|
|
|
|
export enum NavigationAction {
|
2021-02-28 15:13:34 +08:00
|
|
|
/** Toggle the room side panel */
|
2021-03-01 16:43:00 +08:00
|
|
|
ToggleRoomSidePanel = 'ToggleRoomSidePanel',
|
2021-02-28 15:13:34 +08:00
|
|
|
/** Toggle the user menu */
|
2021-03-01 16:43:00 +08:00
|
|
|
ToggleUserMenu = 'ToggleUserMenu',
|
2021-02-28 15:13:34 +08:00
|
|
|
/* Toggle the short cut help dialog */
|
2021-03-01 16:43:00 +08:00
|
|
|
ToggleShortCutDialog = 'ToggleShortCutDialog',
|
2021-02-28 15:13:34 +08:00
|
|
|
/* Got to the Element home screen */
|
2021-03-01 16:43:00 +08:00
|
|
|
GoToHome = 'GoToHome',
|
2021-02-28 15:13:34 +08:00
|
|
|
/* Select prev room */
|
2021-03-01 16:43:00 +08:00
|
|
|
SelectPrevRoom = 'SelectPrevRoom',
|
2021-02-28 15:13:34 +08:00
|
|
|
/* Select next room */
|
2021-03-01 16:43:00 +08:00
|
|
|
SelectNextRoom = 'SelectNextRoom',
|
2021-02-28 15:13:34 +08:00
|
|
|
/* Select prev room with unread messages*/
|
2021-03-01 16:43:00 +08:00
|
|
|
SelectPrevUnreadRoom = 'SelectPrevUnreadRoom',
|
2021-02-28 15:13:34 +08:00
|
|
|
/* Select next room with unread messages*/
|
2021-03-01 16:43:00 +08:00
|
|
|
SelectNextUnreadRoom = 'SelectNextUnreadRoom',
|
2021-02-11 17:18:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Represent a key combination.
|
2021-02-16 14:05:39 +08:00
|
|
|
*
|
2021-02-14 10:56:55 +08:00
|
|
|
* The combo is evaluated strictly, i.e. the KeyboardEvent must match exactly what is specified in the KeyCombo.
|
2021-02-11 17:18:10 +08:00
|
|
|
*/
|
|
|
|
export type KeyCombo = {
|
2021-02-15 14:21:08 +08:00
|
|
|
key?: string;
|
2021-02-11 17:18:10 +08:00
|
|
|
|
|
|
|
/** On PC: ctrl is pressed; on Mac: meta is pressed */
|
|
|
|
ctrlOrCmd?: boolean;
|
|
|
|
|
|
|
|
altKey?: boolean;
|
|
|
|
ctrlKey?: boolean;
|
|
|
|
metaKey?: boolean;
|
|
|
|
shiftKey?: boolean;
|
|
|
|
}
|
|
|
|
|
2021-03-01 16:43:00 +08:00
|
|
|
export type KeyBinding<T extends string> = {
|
|
|
|
action: T;
|
2021-02-14 10:56:55 +08:00
|
|
|
keyCombo: KeyCombo;
|
|
|
|
}
|
|
|
|
|
2021-03-01 16:43:00 +08:00
|
|
|
const messageComposerBindings = (): KeyBinding<MessageComposerAction>[] => {
|
|
|
|
const bindings: KeyBinding<MessageComposerAction>[] = [
|
2021-02-14 10:56:55 +08:00
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: MessageComposerAction.SelectPrevSendHistory,
|
2021-02-14 10:56:55 +08:00
|
|
|
keyCombo: {
|
2021-02-15 14:21:08 +08:00
|
|
|
key: Key.ARROW_UP,
|
2021-02-14 10:56:55 +08:00
|
|
|
altKey: true,
|
|
|
|
ctrlKey: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: MessageComposerAction.SelectNextSendHistory,
|
2021-02-14 10:56:55 +08:00
|
|
|
keyCombo: {
|
2021-02-15 14:21:08 +08:00
|
|
|
key: Key.ARROW_DOWN,
|
2021-02-14 10:56:55 +08:00
|
|
|
altKey: true,
|
|
|
|
ctrlKey: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: MessageComposerAction.EditPrevMessage,
|
2021-02-14 10:56:55 +08:00
|
|
|
keyCombo: {
|
2021-02-15 14:21:08 +08:00
|
|
|
key: Key.ARROW_UP,
|
2021-02-16 14:05:39 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: MessageComposerAction.EditNextMessage,
|
2021-02-16 14:05:39 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.ARROW_DOWN,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: MessageComposerAction.CancelEditing,
|
2021-02-16 14:05:39 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.ESCAPE,
|
|
|
|
},
|
2021-02-14 10:56:55 +08:00
|
|
|
},
|
2021-02-17 17:00:48 +08:00
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: MessageComposerAction.FormatBold,
|
2021-02-17 17:00:48 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.B,
|
|
|
|
ctrlOrCmd: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: MessageComposerAction.FormatItalics,
|
2021-02-17 17:00:48 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.I,
|
|
|
|
ctrlOrCmd: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: MessageComposerAction.FormatQuote,
|
2021-02-17 17:00:48 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.GREATER_THAN,
|
|
|
|
ctrlOrCmd: true,
|
|
|
|
shiftKey: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: MessageComposerAction.EditUndo,
|
2021-02-17 17:00:48 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.Z,
|
|
|
|
ctrlOrCmd: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
// Note: the following two bindings also work with just HOME and END, add them here?
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: MessageComposerAction.MoveCursorToStart,
|
2021-02-17 17:00:48 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.HOME,
|
|
|
|
ctrlOrCmd: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: MessageComposerAction.MoveCursorToEnd,
|
2021-02-17 17:00:48 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.END,
|
|
|
|
ctrlOrCmd: true,
|
|
|
|
},
|
|
|
|
},
|
2021-02-14 10:56:55 +08:00
|
|
|
];
|
2021-02-17 17:00:48 +08:00
|
|
|
if (isMac) {
|
|
|
|
bindings.push({
|
2021-03-01 16:43:00 +08:00
|
|
|
action: MessageComposerAction.EditRedo,
|
2021-02-17 17:00:48 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.Z,
|
|
|
|
ctrlOrCmd: true,
|
|
|
|
shiftKey: true,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
bindings.push({
|
2021-03-01 16:43:00 +08:00
|
|
|
action: MessageComposerAction.EditRedo,
|
2021-02-17 17:00:48 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.Y,
|
|
|
|
ctrlOrCmd: true,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
2021-02-14 10:56:55 +08:00
|
|
|
if (SettingsStore.getValue('MessageComposerInput.ctrlEnterToSend')) {
|
|
|
|
bindings.push({
|
2021-03-01 16:43:00 +08:00
|
|
|
action: MessageComposerAction.Send,
|
2021-02-14 10:56:55 +08:00
|
|
|
keyCombo: {
|
2021-02-15 14:21:08 +08:00
|
|
|
key: Key.ENTER,
|
2021-02-14 10:56:55 +08:00
|
|
|
ctrlOrCmd: true,
|
|
|
|
},
|
|
|
|
});
|
2021-02-17 17:00:48 +08:00
|
|
|
bindings.push({
|
2021-03-01 16:43:00 +08:00
|
|
|
action: MessageComposerAction.NewLine,
|
2021-02-17 17:00:48 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.ENTER,
|
|
|
|
},
|
|
|
|
});
|
2021-02-14 10:56:55 +08:00
|
|
|
} else {
|
|
|
|
bindings.push({
|
2021-03-01 16:43:00 +08:00
|
|
|
action: MessageComposerAction.Send,
|
2021-02-14 10:56:55 +08:00
|
|
|
keyCombo: {
|
2021-02-15 14:21:08 +08:00
|
|
|
key: Key.ENTER,
|
2021-02-14 10:56:55 +08:00
|
|
|
},
|
|
|
|
});
|
2021-02-17 17:00:48 +08:00
|
|
|
bindings.push({
|
2021-03-01 16:43:00 +08:00
|
|
|
action: MessageComposerAction.NewLine,
|
2021-02-17 17:00:48 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.ENTER,
|
|
|
|
shiftKey: true,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
if (isMac) {
|
|
|
|
bindings.push({
|
2021-03-01 16:43:00 +08:00
|
|
|
action: MessageComposerAction.NewLine,
|
2021-02-17 17:00:48 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.ENTER,
|
|
|
|
altKey: true,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
2021-02-14 10:56:55 +08:00
|
|
|
}
|
|
|
|
return bindings;
|
2021-02-11 17:18:10 +08:00
|
|
|
}
|
|
|
|
|
2021-03-01 16:43:00 +08:00
|
|
|
const autocompleteBindings = (): KeyBinding<AutocompleteAction>[] => {
|
2021-02-17 17:00:48 +08:00
|
|
|
return [
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: AutocompleteAction.ApplySelection,
|
2021-02-17 17:00:48 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.TAB,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: AutocompleteAction.ApplySelection,
|
2021-02-17 17:00:48 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.TAB,
|
|
|
|
ctrlKey: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: AutocompleteAction.ApplySelection,
|
2021-02-17 17:00:48 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.TAB,
|
|
|
|
shiftKey: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: AutocompleteAction.Cancel,
|
2021-02-17 17:00:48 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.ESCAPE,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: AutocompleteAction.PrevSelection,
|
2021-02-17 17:00:48 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.ARROW_UP,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: AutocompleteAction.NextSelection,
|
2021-02-17 17:00:48 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.ARROW_DOWN,
|
|
|
|
},
|
|
|
|
},
|
2021-02-28 15:13:34 +08:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2021-03-01 16:43:00 +08:00
|
|
|
const roomListBindings = (): KeyBinding<RoomListAction>[] => {
|
2021-02-28 15:13:34 +08:00
|
|
|
return [
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: RoomListAction.ClearSearch,
|
2021-02-28 15:13:34 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.ESCAPE,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: RoomListAction.PrevRoom,
|
2021-02-28 15:13:34 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.ARROW_UP,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: RoomListAction.NextRoom,
|
2021-02-28 15:13:34 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.ARROW_DOWN,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: RoomListAction.SelectRoom,
|
2021-02-28 15:13:34 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.ENTER,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: RoomListAction.CollapseSection,
|
2021-02-28 15:13:34 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.ARROW_LEFT,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: RoomListAction.ExpandSection,
|
2021-02-28 15:13:34 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.ARROW_RIGHT,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2021-03-01 16:43:00 +08:00
|
|
|
const roomBindings = (): KeyBinding<RoomAction>[] => {
|
2021-02-28 15:13:34 +08:00
|
|
|
const bindings = [
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: RoomAction.FocusRoomSearch,
|
2021-02-28 15:13:34 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.K,
|
|
|
|
ctrlOrCmd: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: RoomAction.ScrollUp,
|
2021-02-28 15:13:34 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.PAGE_UP,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: RoomAction.RoomScrollDown,
|
2021-02-28 15:13:34 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.PAGE_DOWN,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: RoomAction.DismissReadMarker,
|
2021-02-28 15:13:34 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.ESCAPE,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: RoomAction.UploadFile,
|
2021-02-28 15:13:34 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.U,
|
|
|
|
ctrlOrCmd: true,
|
|
|
|
shiftKey: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: RoomAction.JumpToFirstMessage,
|
2021-02-28 15:13:34 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.HOME,
|
|
|
|
ctrlKey: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: RoomAction.JumpToLatestMessage,
|
2021-02-28 15:13:34 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.END,
|
|
|
|
ctrlKey: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
if (SettingsStore.getValue('ctrlFForSearch')) {
|
|
|
|
bindings.push({
|
2021-03-01 16:43:00 +08:00
|
|
|
action: RoomAction.FocusSearch,
|
2021-02-28 15:13:34 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.F,
|
|
|
|
ctrlOrCmd: true,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return bindings;
|
|
|
|
}
|
|
|
|
|
2021-03-01 16:43:00 +08:00
|
|
|
const navigationBindings = (): KeyBinding<NavigationAction>[] => {
|
2021-02-28 15:13:34 +08:00
|
|
|
return [
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: NavigationAction.ToggleRoomSidePanel,
|
2021-02-28 15:13:34 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.PERIOD,
|
|
|
|
ctrlOrCmd: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: NavigationAction.ToggleUserMenu,
|
2021-02-28 15:13:34 +08:00
|
|
|
// Ideally this would be CTRL+P for "Profile", but that's
|
|
|
|
// taken by the print dialog. CTRL+I for "Information"
|
|
|
|
// was previously chosen but conflicted with italics in
|
|
|
|
// composer, so CTRL+` it is
|
|
|
|
keyCombo: {
|
|
|
|
key: Key.BACKTICK,
|
|
|
|
ctrlOrCmd: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: NavigationAction.ToggleShortCutDialog,
|
2021-02-28 15:13:34 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.SLASH,
|
|
|
|
ctrlOrCmd: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: NavigationAction.ToggleShortCutDialog,
|
2021-02-28 15:13:34 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.SLASH,
|
|
|
|
ctrlOrCmd: true,
|
|
|
|
shiftKey: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: NavigationAction.GoToHome,
|
2021-02-28 15:13:34 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.H,
|
|
|
|
ctrlOrCmd: true,
|
|
|
|
altKey: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: NavigationAction.SelectPrevRoom,
|
2021-02-28 15:13:34 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.ARROW_UP,
|
|
|
|
altKey: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: NavigationAction.SelectNextRoom,
|
2021-02-28 15:13:34 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.ARROW_DOWN,
|
|
|
|
altKey: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: NavigationAction.SelectPrevUnreadRoom,
|
2021-02-28 15:13:34 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.ARROW_UP,
|
|
|
|
altKey: true,
|
|
|
|
shiftKey: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-03-01 16:43:00 +08:00
|
|
|
action: NavigationAction.SelectNextUnreadRoom,
|
2021-02-28 15:13:34 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.ARROW_DOWN,
|
|
|
|
altKey: true,
|
|
|
|
shiftKey: true,
|
|
|
|
},
|
|
|
|
},
|
2021-02-17 17:00:48 +08:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2021-02-11 17:18:10 +08:00
|
|
|
/**
|
|
|
|
* Helper method to check if a KeyboardEvent matches a KeyCombo
|
2021-02-16 14:05:39 +08:00
|
|
|
*
|
2021-02-11 17:18:10 +08:00
|
|
|
* Note, this method is only exported for testing.
|
|
|
|
*/
|
2021-02-17 17:00:48 +08:00
|
|
|
export function isKeyComboMatch(ev: KeyboardEvent | React.KeyboardEvent, combo: KeyCombo, onMac: boolean): boolean {
|
2021-02-28 15:12:36 +08: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 17:18:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const comboCtrl = combo.ctrlKey ?? false;
|
|
|
|
const comboAlt = combo.altKey ?? false;
|
|
|
|
const comboShift = combo.shiftKey ?? false;
|
|
|
|
const comboMeta = combo.metaKey ?? false;
|
|
|
|
// When ctrlOrCmd is set, the keys need do evaluated differently on PC and Mac
|
|
|
|
if (combo.ctrlOrCmd) {
|
|
|
|
if (onMac) {
|
|
|
|
if (!ev.metaKey
|
|
|
|
|| ev.ctrlKey !== comboCtrl
|
|
|
|
|| ev.altKey !== comboAlt
|
|
|
|
|| ev.shiftKey !== comboShift) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!ev.ctrlKey
|
|
|
|
|| ev.metaKey !== comboMeta
|
|
|
|
|| ev.altKey !== comboAlt
|
|
|
|
|| ev.shiftKey !== comboShift) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ev.metaKey !== comboMeta
|
|
|
|
|| ev.ctrlKey !== comboCtrl
|
|
|
|
|| ev.altKey !== comboAlt
|
|
|
|
|| ev.shiftKey !== comboShift) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
export class KeyBindingsManager {
|
|
|
|
/**
|
|
|
|
* Finds a matching KeyAction for a given KeyboardEvent
|
|
|
|
*/
|
2021-03-01 16:43:00 +08:00
|
|
|
private getAction<T extends string>(bindings: KeyBinding<T>[], ev: KeyboardEvent | React.KeyboardEvent)
|
|
|
|
: T | undefined {
|
2021-02-11 17:18:10 +08:00
|
|
|
const binding = bindings.find(it => isKeyComboMatch(ev, it.keyCombo, isMac));
|
|
|
|
if (binding) {
|
|
|
|
return binding.action;
|
|
|
|
}
|
2021-03-01 16:43:00 +08:00
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
getMessageComposerAction(ev: KeyboardEvent | React.KeyboardEvent): MessageComposerAction | undefined {
|
|
|
|
const bindings = messageComposerBindings();
|
|
|
|
return this.getAction(bindings, ev);
|
|
|
|
}
|
|
|
|
|
|
|
|
getAutocompleteAction(ev: KeyboardEvent | React.KeyboardEvent): AutocompleteAction | undefined {
|
|
|
|
const bindings = autocompleteBindings();
|
|
|
|
return this.getAction(bindings, ev);
|
|
|
|
}
|
|
|
|
|
|
|
|
getRoomListAction(ev: KeyboardEvent | React.KeyboardEvent): RoomListAction | undefined {
|
|
|
|
const bindings = roomListBindings();
|
|
|
|
return this.getAction(bindings, ev);
|
|
|
|
}
|
|
|
|
|
|
|
|
getRoomAction(ev: KeyboardEvent | React.KeyboardEvent): RoomAction | undefined {
|
|
|
|
const bindings = roomBindings();
|
|
|
|
return this.getAction(bindings, ev);
|
|
|
|
}
|
2021-02-11 17:18:10 +08:00
|
|
|
|
2021-03-01 16:43:00 +08:00
|
|
|
getNavigationAction(ev: KeyboardEvent | React.KeyboardEvent): NavigationAction | undefined {
|
|
|
|
const bindings = navigationBindings();
|
|
|
|
return this.getAction(bindings, ev);
|
2021-02-11 17:18:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const manager = new KeyBindingsManager();
|
|
|
|
|
|
|
|
export function getKeyBindingsManager(): KeyBindingsManager {
|
|
|
|
return manager;
|
|
|
|
}
|