joplin/packages/app-desktop/commands/focusElement.ts

18 lines
741 B
TypeScript
Raw Normal View History

import CommandService, { CommandRuntime, CommandDeclaration } from '@joplin/lib/services/CommandService';
export const declaration:CommandDeclaration = {
name: 'focusElement',
};
export const runtime = ():CommandRuntime => {
return {
execute: async (_context:any, target:string) => {
if (target === 'noteBody') return CommandService.instance().execute('focusElementNoteBody');
if (target === 'noteList') return CommandService.instance().execute('focusElementNoteList');
if (target === 'sideBar') return CommandService.instance().execute('focusElementSideBar');
if (target === 'noteTitle') return CommandService.instance().execute('focusElementNoteTitle');
throw new Error(`Invalid focus target: ${target}`);
},
};
};