2021-03-07 06:05:36 +00:00
|
|
|
/*
|
2024-09-09 13:57:16 +00:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-01-31 15:55:45 +00:00
|
|
|
Copyright 2022 Šimon Brandner <simon.bra.ag@gmail.com>
|
2024-09-09 13:57:16 +00:00
|
|
|
Copyright 2021 Clemens Zeidler
|
2021-03-07 06:05:36 +00:00
|
|
|
|
2024-09-09 13:57:16 +00:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2021-03-07 06:05:36 +00:00
|
|
|
*/
|
|
|
|
|
2022-05-03 21:04:37 +00:00
|
|
|
import { IS_MAC, Key } from "./Keyboard";
|
2022-01-31 15:55:45 +00:00
|
|
|
import SettingsStore from "./settings/SettingsStore";
|
|
|
|
import SdkConfig from "./SdkConfig";
|
2022-05-03 21:04:37 +00:00
|
|
|
import { IKeyBindingsProvider, KeyBinding } from "./KeyBindingsManager";
|
2022-12-12 11:24:14 +00:00
|
|
|
import { CATEGORIES, CategoryName, KeyBindingAction } from "./accessibility/KeyboardShortcuts";
|
2022-03-14 13:25:51 +00:00
|
|
|
import { getKeyboardShortcuts } from "./accessibility/KeyboardShortcutUtils";
|
2022-01-31 15:55:45 +00:00
|
|
|
|
2022-02-21 18:56:55 +00:00
|
|
|
export const getBindingsByCategory = (category: CategoryName): KeyBinding[] => {
|
2023-03-07 13:19:18 +00:00
|
|
|
return CATEGORIES[category].settingNames.reduce<KeyBinding[]>((bindings, action) => {
|
2022-05-03 21:04:37 +00:00
|
|
|
const keyCombo = getKeyboardShortcuts()[action]?.default;
|
|
|
|
if (keyCombo) {
|
|
|
|
bindings.push({ action, keyCombo });
|
2022-01-31 15:55:45 +00:00
|
|
|
}
|
|
|
|
return bindings;
|
|
|
|
}, []);
|
|
|
|
};
|
|
|
|
|
|
|
|
const messageComposerBindings = (): KeyBinding[] => {
|
|
|
|
const bindings = getBindingsByCategory(CategoryName.COMPOSER);
|
2021-03-01 09:16:05 +00:00
|
|
|
|
2022-12-12 11:24:14 +00:00
|
|
|
if (SettingsStore.getValue("MessageComposerInput.ctrlEnterToSend")) {
|
2021-03-01 09:16:05 +00:00
|
|
|
bindings.push({
|
2022-01-31 15:55:45 +00:00
|
|
|
action: KeyBindingAction.SendMessage,
|
2021-03-01 09:16:05 +00:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.ENTER,
|
2022-01-31 15:55:45 +00:00
|
|
|
ctrlOrCmdKey: true,
|
2021-03-01 09:16:05 +00:00
|
|
|
},
|
|
|
|
});
|
|
|
|
bindings.push({
|
2022-01-31 15:55:45 +00:00
|
|
|
action: KeyBindingAction.NewLine,
|
2021-03-01 09:16:05 +00:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.ENTER,
|
|
|
|
},
|
|
|
|
});
|
2022-01-28 15:32:30 +00:00
|
|
|
bindings.push({
|
2022-01-31 15:55:45 +00:00
|
|
|
action: KeyBindingAction.NewLine,
|
2022-01-28 15:32:30 +00:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.ENTER,
|
|
|
|
shiftKey: true,
|
|
|
|
},
|
|
|
|
});
|
2021-03-01 09:16:05 +00:00
|
|
|
} else {
|
|
|
|
bindings.push({
|
2022-01-31 15:55:45 +00:00
|
|
|
action: KeyBindingAction.SendMessage,
|
2021-03-01 09:16:05 +00:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.ENTER,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
bindings.push({
|
2022-01-31 15:55:45 +00:00
|
|
|
action: KeyBindingAction.NewLine,
|
2021-03-01 09:16:05 +00:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.ENTER,
|
|
|
|
shiftKey: true,
|
|
|
|
},
|
|
|
|
});
|
2022-05-03 21:04:37 +00:00
|
|
|
if (IS_MAC) {
|
2021-03-01 09:16:05 +00:00
|
|
|
bindings.push({
|
2022-01-31 15:55:45 +00:00
|
|
|
action: KeyBindingAction.NewLine,
|
2021-03-01 09:16:05 +00:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.ENTER,
|
|
|
|
altKey: true,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2022-01-31 15:55:45 +00:00
|
|
|
|
2021-03-01 09:16:05 +00:00
|
|
|
return bindings;
|
2021-06-29 12:11:58 +00:00
|
|
|
};
|
2021-03-01 09:16:05 +00:00
|
|
|
|
2022-01-31 15:55:45 +00:00
|
|
|
const autocompleteBindings = (): KeyBinding[] => {
|
|
|
|
const bindings = getBindingsByCategory(CategoryName.AUTOCOMPLETE);
|
|
|
|
|
|
|
|
bindings.push({
|
|
|
|
action: KeyBindingAction.ForceCompleteAutocomplete,
|
|
|
|
keyCombo: {
|
|
|
|
key: Key.TAB,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
bindings.push({
|
|
|
|
action: KeyBindingAction.ForceCompleteAutocomplete,
|
|
|
|
keyCombo: {
|
|
|
|
key: Key.TAB,
|
|
|
|
ctrlKey: true,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
bindings.push({
|
|
|
|
action: KeyBindingAction.CompleteAutocomplete,
|
|
|
|
keyCombo: {
|
|
|
|
key: Key.ENTER,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
bindings.push({
|
|
|
|
action: KeyBindingAction.CompleteAutocomplete,
|
|
|
|
keyCombo: {
|
|
|
|
key: Key.ENTER,
|
|
|
|
ctrlKey: true,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
return bindings;
|
2021-06-29 12:11:58 +00:00
|
|
|
};
|
2021-03-01 09:16:05 +00:00
|
|
|
|
2022-01-31 15:55:45 +00:00
|
|
|
const roomListBindings = (): KeyBinding[] => {
|
|
|
|
return getBindingsByCategory(CategoryName.ROOM_LIST);
|
2021-06-29 12:11:58 +00:00
|
|
|
};
|
2021-03-01 09:16:05 +00:00
|
|
|
|
2022-01-31 15:55:45 +00:00
|
|
|
const roomBindings = (): KeyBinding[] => {
|
|
|
|
const bindings = getBindingsByCategory(CategoryName.ROOM);
|
2021-03-01 09:16:05 +00:00
|
|
|
|
2022-12-12 11:24:14 +00:00
|
|
|
if (SettingsStore.getValue("ctrlFForSearch")) {
|
2021-03-01 09:16:05 +00:00
|
|
|
bindings.push({
|
2022-01-31 15:55:45 +00:00
|
|
|
action: KeyBindingAction.SearchInRoom,
|
2021-03-01 09:16:05 +00:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.F,
|
2022-01-31 15:55:45 +00:00
|
|
|
ctrlOrCmdKey: true,
|
2021-03-01 09:16:05 +00:00
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return bindings;
|
2021-06-29 12:11:58 +00:00
|
|
|
};
|
2021-03-01 09:16:05 +00:00
|
|
|
|
2022-01-31 15:55:45 +00:00
|
|
|
const navigationBindings = (): KeyBinding[] => {
|
2022-02-28 16:05:52 +00:00
|
|
|
return getBindingsByCategory(CategoryName.NAVIGATION);
|
|
|
|
};
|
2022-02-21 18:56:55 +00:00
|
|
|
|
2022-02-28 16:05:52 +00:00
|
|
|
const accessibilityBindings = (): KeyBinding[] => {
|
|
|
|
return getBindingsByCategory(CategoryName.ACCESSIBILITY);
|
2021-06-29 12:11:58 +00:00
|
|
|
};
|
2021-03-01 09:16:05 +00:00
|
|
|
|
2022-02-23 09:12:04 +00:00
|
|
|
const callBindings = (): KeyBinding[] => {
|
|
|
|
return getBindingsByCategory(CategoryName.CALLS);
|
|
|
|
};
|
|
|
|
|
2022-01-31 15:55:45 +00:00
|
|
|
const labsBindings = (): KeyBinding[] => {
|
2022-03-18 16:12:36 +00:00
|
|
|
if (!SdkConfig.get("show_labs_settings")) return [];
|
2022-01-26 16:50:47 +00:00
|
|
|
|
2022-01-31 15:55:45 +00:00
|
|
|
return getBindingsByCategory(CategoryName.LABS);
|
2022-01-26 16:50:47 +00:00
|
|
|
};
|
|
|
|
|
2021-03-05 09:02:18 +00:00
|
|
|
export const defaultBindingsProvider: IKeyBindingsProvider = {
|
2021-03-01 09:16:05 +00:00
|
|
|
getMessageComposerBindings: messageComposerBindings,
|
|
|
|
getAutocompleteBindings: autocompleteBindings,
|
|
|
|
getRoomListBindings: roomListBindings,
|
|
|
|
getRoomBindings: roomBindings,
|
|
|
|
getNavigationBindings: navigationBindings,
|
2022-02-28 16:05:52 +00:00
|
|
|
getAccessibilityBindings: accessibilityBindings,
|
2022-02-23 09:12:04 +00:00
|
|
|
getCallBindings: callBindings,
|
2022-01-26 16:50:47 +00:00
|
|
|
getLabsBindings: labsBindings,
|
2021-06-29 12:11:58 +00:00
|
|
|
};
|