2020-11-05 18:58:23 +02:00
|
|
|
import { CommandRuntime, CommandDeclaration, CommandContext } from '@joplinapp/lib/services/CommandService';
|
|
|
|
import { _ } from '@joplinapp/lib/locale';
|
|
|
|
import { stateUtils } from '@joplinapp/lib/reducer';
|
2020-07-03 23:32:39 +02:00
|
|
|
|
|
|
|
export const declaration:CommandDeclaration = {
|
|
|
|
name: 'focusElementNoteList',
|
|
|
|
label: () => _('Note list'),
|
2020-09-13 18:21:11 +02:00
|
|
|
parentLabel: () => _('Focus'),
|
2020-07-03 23:32:39 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
export const runtime = (comp:any):CommandRuntime => {
|
|
|
|
return {
|
2020-10-18 22:52:10 +02:00
|
|
|
execute: async (context:CommandContext, noteId:string = null) => {
|
|
|
|
noteId = noteId || stateUtils.selectedNoteId(context.state);
|
|
|
|
|
2020-10-09 19:35:46 +02:00
|
|
|
if (noteId) {
|
|
|
|
const ref = comp.itemAnchorRef(noteId);
|
2020-07-03 23:32:39 +02:00
|
|
|
if (ref) ref.focus();
|
|
|
|
}
|
|
|
|
},
|
2020-10-18 22:52:10 +02:00
|
|
|
enabledCondition: 'noteListHasNotes',
|
2020-07-03 23:32:39 +02:00
|
|
|
};
|
|
|
|
};
|