mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
25 lines
720 B
TypeScript
25 lines
720 B
TypeScript
import { CommandRuntime, CommandDeclaration, CommandContext } from '@joplin/lib/services/CommandService';
|
|
import { _ } from '@joplin/lib/locale';
|
|
import { stateUtils } from '@joplin/lib/reducer';
|
|
import { itemAnchorRef } from '../NoteList';
|
|
|
|
export const declaration: CommandDeclaration = {
|
|
name: 'focusElementNoteList',
|
|
label: () => _('Note list'),
|
|
parentLabel: () => _('Focus'),
|
|
};
|
|
|
|
export const runtime = (): CommandRuntime => {
|
|
return {
|
|
execute: async (context: CommandContext, noteId: string = null) => {
|
|
noteId = noteId || stateUtils.selectedNoteId(context.state);
|
|
|
|
if (noteId) {
|
|
const ref = itemAnchorRef(noteId);
|
|
if (ref) ref.focus();
|
|
}
|
|
},
|
|
enabledCondition: 'noteListHasNotes',
|
|
};
|
|
};
|