mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 18:12:29 +08:00
server: Improve type for keyboard shortcut scope
This commit is contained in:
parent
e45c5f429d
commit
2c5a5acffa
@ -9,15 +9,6 @@ import { t } from "i18next";
|
|||||||
const isMac = process.platform === "darwin";
|
const isMac = process.platform === "darwin";
|
||||||
const isElectron = utils.isElectron();
|
const isElectron = utils.isElectron();
|
||||||
|
|
||||||
/**
|
|
||||||
* Scope here means on which element the keyboard shortcuts are attached - this means that for the shortcut to work,
|
|
||||||
* the focus has to be inside the element.
|
|
||||||
*
|
|
||||||
* So e.g. shortcuts with "note-tree" scope work only when the focus is in note tree.
|
|
||||||
* This allows to have the same shortcut have different actions attached based on the context
|
|
||||||
* e.g. CTRL-C in note tree does something a bit different from CTRL-C in the text editor.
|
|
||||||
*/
|
|
||||||
|
|
||||||
function getDefaultKeyboardActions() {
|
function getDefaultKeyboardActions() {
|
||||||
if (!t("keyboard_actions.note-navigation")) {
|
if (!t("keyboard_actions.note-navigation")) {
|
||||||
throw new Error("Keyboard actions loaded before translations.");
|
throw new Error("Keyboard actions loaded before translations.");
|
||||||
|
@ -4,7 +4,15 @@ export interface KeyboardShortcut {
|
|||||||
description?: string;
|
description?: string;
|
||||||
defaultShortcuts?: string[];
|
defaultShortcuts?: string[];
|
||||||
effectiveShortcuts?: string[];
|
effectiveShortcuts?: string[];
|
||||||
scope?: string;
|
/**
|
||||||
|
* Scope here means on which element the keyboard shortcuts are attached - this means that for the shortcut to work,
|
||||||
|
* the focus has to be inside the element.
|
||||||
|
*
|
||||||
|
* So e.g. shortcuts with "note-tree" scope work only when the focus is in note tree.
|
||||||
|
* This allows to have the same shortcut have different actions attached based on the context
|
||||||
|
* e.g. CTRL-C in note tree does something a bit different from CTRL-C in the text editor.
|
||||||
|
*/
|
||||||
|
scope?: "window" | "note-tree" | "text-detail" | "code-detail";
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface KeyboardShortcutWithRequiredActionName extends KeyboardShortcut {
|
export interface KeyboardShortcutWithRequiredActionName extends KeyboardShortcut {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user