mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
19 lines
504 B
TypeScript
19 lines
504 B
TypeScript
import { CommandRuntime, CommandDeclaration } from '@joplin/lib/services/CommandService';
|
|
import { _ } from '@joplin/lib/locale';
|
|
|
|
export const declaration: CommandDeclaration = {
|
|
name: 'focusElementNoteTitle',
|
|
label: () => _('Note title'),
|
|
parentLabel: () => _('Focus'),
|
|
};
|
|
|
|
export const runtime = (comp: any): CommandRuntime => {
|
|
return {
|
|
execute: async () => {
|
|
if (!comp.titleInputRef.current) return;
|
|
comp.titleInputRef.current.focus();
|
|
},
|
|
enabledCondition: 'oneNoteSelected',
|
|
};
|
|
};
|