2020-11-07 17:59:37 +02:00
|
|
|
import CommandService, { CommandRuntime, CommandDeclaration } from '@joplin/lib/services/CommandService';
|
2020-07-03 23:32:39 +02:00
|
|
|
|
2020-11-12 21:13:28 +02:00
|
|
|
export const declaration: CommandDeclaration = {
|
2020-07-03 23:32:39 +02:00
|
|
|
name: 'focusElement',
|
|
|
|
};
|
|
|
|
|
2020-11-12 21:13:28 +02:00
|
|
|
export const runtime = (): CommandRuntime => {
|
2020-07-03 23:32:39 +02:00
|
|
|
return {
|
2020-11-12 21:13:28 +02:00
|
|
|
execute: async (_context: any, target: string) => {
|
2020-07-03 23:32:39 +02:00
|
|
|
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}`);
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|