mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
20 lines
502 B
TypeScript
20 lines
502 B
TypeScript
|
import { CommandRuntime, CommandDeclaration } from '../../../lib/services/CommandService';
|
||
|
const { _ } = require('lib/locale');
|
||
|
|
||
|
export const declaration:CommandDeclaration = {
|
||
|
name: 'focusElementNoteTitle',
|
||
|
label: () => _('Note title'),
|
||
|
};
|
||
|
|
||
|
export const runtime = (comp:any):CommandRuntime => {
|
||
|
return {
|
||
|
execute: async () => {
|
||
|
if (!comp.titleInputRef.current) return;
|
||
|
comp.titleInputRef.current.focus();
|
||
|
},
|
||
|
isEnabled: ():boolean => {
|
||
|
return !!comp.titleInputRef.current;
|
||
|
},
|
||
|
};
|
||
|
};
|