mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
21 lines
683 B
TypeScript
21 lines
683 B
TypeScript
import { CommandRuntime, CommandDeclaration } from '@joplin/lib/services/CommandService';
|
|
import { _ } from '@joplin/lib/locale';
|
|
import { focus } from '@joplin/lib/utils/focusHandler';
|
|
|
|
export const declaration: CommandDeclaration = {
|
|
name: 'focusElementNoteTitle',
|
|
label: () => _('Note title'),
|
|
parentLabel: () => _('Focus'),
|
|
};
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
|
export const runtime = (comp: any): CommandRuntime => {
|
|
return {
|
|
execute: async () => {
|
|
if (!comp.titleInputRef.current) return;
|
|
focus('focusElementNoteTitle', comp.titleInputRef.current);
|
|
},
|
|
enabledCondition: 'oneNoteSelected',
|
|
};
|
|
};
|