mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 12:25:20 +00:00
156 lines
3.5 KiB
TypeScript
156 lines
3.5 KiB
TypeScript
type ShortcutRegistry = {
|
|
[key in Shortcut]?: {
|
|
name: string;
|
|
keys: string[];
|
|
category: string;
|
|
tooltip?: string;
|
|
setting?: {
|
|
id: string;
|
|
value: any;
|
|
};
|
|
};
|
|
};
|
|
|
|
export enum Shortcut {
|
|
//Chat
|
|
NEW_CHAT = 'newChat',
|
|
NEW_TEMPORARY_CHAT = 'newTemporaryChat',
|
|
DELETE_CHAT = 'deleteChat',
|
|
|
|
//Global
|
|
SEARCH = 'search',
|
|
OPEN_SETTINGS = 'openSettings',
|
|
SHOW_SHORTCUTS = 'showShortcuts',
|
|
TOGGLE_SIDEBAR = 'toggleSidebar',
|
|
CLOSE_MODAL = 'closeModal',
|
|
|
|
//Input
|
|
FOCUS_INPUT = 'focusInput',
|
|
ACCEPT_AUTOCOMPLETE = 'acceptAutocomplete',
|
|
PREVENT_FILE_CREATION = 'preventFileCreation',
|
|
NAVIGATE_PROMPT_HISTORY_UP = 'navigatePromptHistoryUp',
|
|
ATTACH_FILE = 'attachFile',
|
|
ADD_PROMPT = 'addPrompt',
|
|
TALK_TO_MODEL = 'talkToModel',
|
|
|
|
//Message
|
|
GENERATE_MESSAGE_PAIR = 'generateMessagePair',
|
|
REGENERATE_RESPONSE = 'regenerateResponse',
|
|
COPY_LAST_CODE_BLOCK = 'copyLastCodeBlock',
|
|
COPY_LAST_RESPONSE = 'copyLastResponse',
|
|
STOP_GENERATING = 'stopGenerating'
|
|
}
|
|
|
|
export const shortcuts: ShortcutRegistry = {
|
|
//Chat
|
|
[Shortcut.NEW_CHAT]: {
|
|
name: 'New Chat',
|
|
keys: ['mod', 'shift', 'KeyO'],
|
|
category: 'Chat'
|
|
},
|
|
[Shortcut.NEW_TEMPORARY_CHAT]: {
|
|
name: 'New Temporary Chat',
|
|
keys: ['mod', 'shift', 'Quote'],
|
|
category: 'Chat'
|
|
},
|
|
[Shortcut.DELETE_CHAT]: {
|
|
name: 'Delete Chat',
|
|
keys: ['mod', 'shift', 'Backspace', 'Delete'],
|
|
category: 'Chat'
|
|
},
|
|
|
|
//Global
|
|
[Shortcut.SEARCH]: {
|
|
name: 'Search',
|
|
keys: ['mod', 'KeyK'],
|
|
category: 'Global'
|
|
},
|
|
[Shortcut.OPEN_SETTINGS]: {
|
|
name: 'Open Settings',
|
|
keys: ['mod', 'Period'],
|
|
category: 'Global'
|
|
},
|
|
[Shortcut.SHOW_SHORTCUTS]: {
|
|
name: 'Show Shortcuts',
|
|
keys: ['mod', 'Slash'],
|
|
category: 'Global'
|
|
},
|
|
[Shortcut.TOGGLE_SIDEBAR]: {
|
|
name: 'Toggle Sidebar',
|
|
keys: ['mod', 'shift', 'KeyS'],
|
|
category: 'Global'
|
|
},
|
|
[Shortcut.CLOSE_MODAL]: {
|
|
name: 'Close Modal',
|
|
keys: ['Escape'],
|
|
category: 'Global'
|
|
},
|
|
|
|
//Input
|
|
[Shortcut.FOCUS_INPUT]: {
|
|
name: 'Focus Chat Input',
|
|
keys: ['shift', 'Escape'],
|
|
category: 'Input'
|
|
},
|
|
[Shortcut.ACCEPT_AUTOCOMPLETE]: {
|
|
name: 'Accept Autocomplete Generation\nJump to Prompt Variable',
|
|
keys: ['Tab'],
|
|
category: 'Input'
|
|
},
|
|
[Shortcut.PREVENT_FILE_CREATION]: {
|
|
name: 'Prevent File Creation',
|
|
keys: ['mod', 'shift', 'KeyV'],
|
|
category: 'Input',
|
|
tooltip: 'Only active when "Paste Large Text as File" setting is toggled on.'
|
|
},
|
|
[Shortcut.ATTACH_FILE]: {
|
|
name: 'Attach File From Knowledge',
|
|
keys: ['#'],
|
|
category: 'Input'
|
|
},
|
|
[Shortcut.ADD_PROMPT]: {
|
|
name: 'Add Custom Prompt',
|
|
keys: ['/'],
|
|
category: 'Input'
|
|
},
|
|
[Shortcut.TALK_TO_MODEL]: {
|
|
name: 'Talk to Model',
|
|
keys: ['@'],
|
|
category: 'Input'
|
|
},
|
|
|
|
//Message
|
|
[Shortcut.GENERATE_MESSAGE_PAIR]: {
|
|
name: 'Generate Message Pair',
|
|
keys: ['mod', 'shift', 'Enter'],
|
|
category: 'Message',
|
|
tooltip: 'Only active when the chat input is in focus.'
|
|
},
|
|
[Shortcut.REGENERATE_RESPONSE]: {
|
|
name: 'Regenerate Response',
|
|
keys: ['mod', 'KeyR'],
|
|
category: 'Message'
|
|
},
|
|
[Shortcut.STOP_GENERATING]: {
|
|
name: 'Stop Generating',
|
|
keys: ['Escape'],
|
|
category: 'Message',
|
|
tooltip: 'Only active when the chat input is in focus and an LLM is generating a response.'
|
|
},
|
|
[Shortcut.NAVIGATE_PROMPT_HISTORY_UP]: {
|
|
name: 'Edit Last Message',
|
|
keys: ['ArrowUp'],
|
|
category: 'Message',
|
|
tooltip: 'Only can be triggered when the chat input is in focus.'
|
|
},
|
|
[Shortcut.COPY_LAST_RESPONSE]: {
|
|
name: 'Copy Last Response',
|
|
keys: ['mod', 'shift', 'KeyC'],
|
|
category: 'Message'
|
|
},
|
|
[Shortcut.COPY_LAST_CODE_BLOCK]: {
|
|
name: 'Copy Last Code Block',
|
|
keys: ['mod', 'shift', 'Semicolon'],
|
|
category: 'Message'
|
|
}
|
|
};
|