import { CommandRuntime, CommandDeclaration, CommandContext } from '@joplin/lib/services/CommandService'; import { _ } from '@joplin/lib/locale'; import { stateUtils } from '@joplin/lib/reducer'; import { FocusNote } from '../utils/useFocusNote'; export const declaration: CommandDeclaration = { name: 'focusElementNoteList', label: () => _('Note list'), parentLabel: () => _('Focus'), }; export const runtime = (focusNote: FocusNote): CommandRuntime => { return { execute: async (context: CommandContext, noteId: string = null) => { noteId = noteId || stateUtils.selectedNoteId(context.state); focusNote(noteId); }, enabledCondition: 'noteListHasNotes', }; };