2021-03-07 14:05:36 +08:00
|
|
|
/*
|
|
|
|
Copyright 2021 Clemens Zeidler
|
2022-01-31 23:55:45 +08:00
|
|
|
Copyright 2022 Šimon Brandner <simon.bra.ag@gmail.com>
|
2021-03-07 14:05:36 +08: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-05-04 05:04:37 +08:00
|
|
|
import { IS_MAC, Key } from "./Keyboard";
|
2022-01-31 23:55:45 +08:00
|
|
|
import SettingsStore from "./settings/SettingsStore";
|
|
|
|
import SdkConfig from "./SdkConfig";
|
2022-05-04 05:04:37 +08:00
|
|
|
import { IKeyBindingsProvider, KeyBinding } from "./KeyBindingsManager";
|
2022-01-31 23:55:45 +08:00
|
|
|
import { CATEGORIES, CategoryName, KeyBindingAction } from "./accessibility/KeyboardShortcuts";
|
2022-03-14 21:25:51 +08:00
|
|
|
import { getKeyboardShortcuts } from "./accessibility/KeyboardShortcutUtils";
|
2022-01-31 23:55:45 +08:00
|
|
|
|
2022-02-22 02:56:55 +08:00
|
|
|
export const getBindingsByCategory = (category: CategoryName): KeyBinding[] => {
|
2022-05-04 05:04:37 +08:00
|
|
|
return CATEGORIES[category].settingNames.reduce((bindings, action) => {
|
|
|
|
const keyCombo = getKeyboardShortcuts()[action]?.default;
|
|
|
|
if (keyCombo) {
|
|
|
|
bindings.push({ action, keyCombo });
|
2022-01-31 23:55:45 +08:00
|
|
|
}
|
|
|
|
return bindings;
|
|
|
|
}, []);
|
|
|
|
};
|
|
|
|
|
|
|
|
const messageComposerBindings = (): KeyBinding[] => {
|
|
|
|
const bindings = getBindingsByCategory(CategoryName.COMPOSER);
|
2021-03-01 17:16:05 +08:00
|
|
|
|
|
|
|
if (SettingsStore.getValue("MessageComposerInput.ctrlEnterToSend")) {
|
|
|
|
bindings.push({
|
2022-01-31 23:55:45 +08:00
|
|
|
action: KeyBindingAction.SendMessage,
|
2021-03-01 17:16:05 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.ENTER,
|
2022-01-31 23:55:45 +08:00
|
|
|
ctrlOrCmdKey: true,
|
2021-03-01 17:16:05 +08:00
|
|
|
},
|
|
|
|
});
|
|
|
|
bindings.push({
|
2022-01-31 23:55:45 +08:00
|
|
|
action: KeyBindingAction.NewLine,
|
2021-03-01 17:16:05 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.ENTER,
|
|
|
|
},
|
|
|
|
});
|
2022-01-28 23:32:30 +08:00
|
|
|
bindings.push({
|
2022-01-31 23:55:45 +08:00
|
|
|
action: KeyBindingAction.NewLine,
|
2022-01-28 23:32:30 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.ENTER,
|
|
|
|
shiftKey: true,
|
|
|
|
},
|
|
|
|
});
|
2021-03-01 17:16:05 +08:00
|
|
|
} else {
|
|
|
|
bindings.push({
|
2022-01-31 23:55:45 +08:00
|
|
|
action: KeyBindingAction.SendMessage,
|
2021-03-01 17:16:05 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.ENTER,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
bindings.push({
|
2022-01-31 23:55:45 +08:00
|
|
|
action: KeyBindingAction.NewLine,
|
2021-03-01 17:16:05 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.ENTER,
|
|
|
|
shiftKey: true,
|
|
|
|
},
|
|
|
|
});
|
2022-05-04 05:04:37 +08:00
|
|
|
if (IS_MAC) {
|
2021-03-01 17:16:05 +08:00
|
|
|
bindings.push({
|
2022-01-31 23:55:45 +08:00
|
|
|
action: KeyBindingAction.NewLine,
|
2021-03-01 17:16:05 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.ENTER,
|
|
|
|
altKey: true,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2022-01-31 23:55:45 +08:00
|
|
|
|
2021-03-01 17:16:05 +08:00
|
|
|
return bindings;
|
2021-06-29 20:11:58 +08:00
|
|
|
};
|
2021-03-01 17:16:05 +08:00
|
|
|
|
2022-01-31 23:55:45 +08: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 20:11:58 +08:00
|
|
|
};
|
2021-03-01 17:16:05 +08:00
|
|
|
|
2022-01-31 23:55:45 +08:00
|
|
|
const roomListBindings = (): KeyBinding[] => {
|
|
|
|
return getBindingsByCategory(CategoryName.ROOM_LIST);
|
2021-06-29 20:11:58 +08:00
|
|
|
};
|
2021-03-01 17:16:05 +08:00
|
|
|
|
2022-01-31 23:55:45 +08:00
|
|
|
const roomBindings = (): KeyBinding[] => {
|
|
|
|
const bindings = getBindingsByCategory(CategoryName.ROOM);
|
2021-03-01 17:16:05 +08:00
|
|
|
|
|
|
|
if (SettingsStore.getValue("ctrlFForSearch")) {
|
|
|
|
bindings.push({
|
2022-01-31 23:55:45 +08:00
|
|
|
action: KeyBindingAction.SearchInRoom,
|
2021-03-01 17:16:05 +08:00
|
|
|
keyCombo: {
|
|
|
|
key: Key.F,
|
2022-01-31 23:55:45 +08:00
|
|
|
ctrlOrCmdKey: true,
|
2021-03-01 17:16:05 +08:00
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return bindings;
|
2021-06-29 20:11:58 +08:00
|
|
|
};
|
2021-03-01 17:16:05 +08:00
|
|
|
|
2022-01-31 23:55:45 +08:00
|
|
|
const navigationBindings = (): KeyBinding[] => {
|
2022-03-01 00:05:52 +08:00
|
|
|
return getBindingsByCategory(CategoryName.NAVIGATION);
|
|
|
|
};
|
2022-02-22 02:56:55 +08:00
|
|
|
|
2022-03-01 00:05:52 +08:00
|
|
|
const accessibilityBindings = (): KeyBinding[] => {
|
|
|
|
return getBindingsByCategory(CategoryName.ACCESSIBILITY);
|
2021-06-29 20:11:58 +08:00
|
|
|
};
|
2021-03-01 17:16:05 +08:00
|
|
|
|
2022-02-23 17:12:04 +08:00
|
|
|
const callBindings = (): KeyBinding[] => {
|
|
|
|
return getBindingsByCategory(CategoryName.CALLS);
|
|
|
|
};
|
|
|
|
|
2022-01-31 23:55:45 +08:00
|
|
|
const labsBindings = (): KeyBinding[] => {
|
2022-03-19 00:12:36 +08:00
|
|
|
if (!SdkConfig.get("show_labs_settings")) return [];
|
2022-01-27 00:50:47 +08:00
|
|
|
|
2022-01-31 23:55:45 +08:00
|
|
|
return getBindingsByCategory(CategoryName.LABS);
|
2022-01-27 00:50:47 +08:00
|
|
|
};
|
|
|
|
|
2021-03-05 17:02:18 +08:00
|
|
|
export const defaultBindingsProvider: IKeyBindingsProvider = {
|
2021-03-01 17:16:05 +08:00
|
|
|
getMessageComposerBindings: messageComposerBindings,
|
|
|
|
getAutocompleteBindings: autocompleteBindings,
|
|
|
|
getRoomListBindings: roomListBindings,
|
|
|
|
getRoomBindings: roomBindings,
|
|
|
|
getNavigationBindings: navigationBindings,
|
2022-03-01 00:05:52 +08:00
|
|
|
getAccessibilityBindings: accessibilityBindings,
|
2022-02-23 17:12:04 +08:00
|
|
|
getCallBindings: callBindings,
|
2022-01-27 00:50:47 +08:00
|
|
|
getLabsBindings: labsBindings,
|
2021-06-29 20:11:58 +08:00
|
|
|
};
|