mirror of
https://github.com/laurent22/joplin.git
synced 2025-01-05 12:50:29 +02:00
21 lines
534 B
TypeScript
21 lines
534 B
TypeScript
import { CommandRuntime, CommandDeclaration } from '../../../lib/services/CommandService';
|
|
const { _ } = require('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();
|
|
},
|
|
isEnabled: ():boolean => {
|
|
return !!comp.titleInputRef.current;
|
|
},
|
|
};
|
|
};
|