You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-16 00:14:34 +02:00
Desktop: Accessibility: Improve note title focus handling (#10932)
This commit is contained in:
@ -4,14 +4,18 @@ export const declaration: CommandDeclaration = {
|
||||
name: 'focusElement',
|
||||
};
|
||||
|
||||
export interface FocusElementOptions {
|
||||
moveCursorToStart: boolean;
|
||||
}
|
||||
|
||||
export const runtime = (): CommandRuntime => {
|
||||
return {
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
||||
execute: async (_context: any, target: string) => {
|
||||
if (target === 'noteBody') return CommandService.instance().execute('focusElementNoteBody');
|
||||
execute: async (_context: any, target: string, options?: FocusElementOptions) => {
|
||||
if (target === 'noteBody') return CommandService.instance().execute('focusElementNoteBody', options);
|
||||
if (target === 'noteList') return CommandService.instance().execute('focusElementNoteList');
|
||||
if (target === 'sideBar') return CommandService.instance().execute('focusElementSideBar');
|
||||
if (target === 'noteTitle') return CommandService.instance().execute('focusElementNoteTitle');
|
||||
if (target === 'noteTitle') return CommandService.instance().execute('focusElementNoteTitle', options);
|
||||
throw new Error(`Invalid focus target: ${target}`);
|
||||
},
|
||||
};
|
||||
|
Reference in New Issue
Block a user