2020-11-07 17:59:37 +02:00
|
|
|
import { CommandRuntime, CommandDeclaration, CommandContext } from '@joplin/lib/services/CommandService';
|
|
|
|
import { _ } from '@joplin/lib/locale';
|
|
|
|
import { stateUtils } from '@joplin/lib/reducer';
|
2023-08-21 17:01:20 +02:00
|
|
|
import { FocusNote } from '../utils/useFocusNote';
|
2020-07-03 23:32:39 +02:00
|
|
|
|
2020-11-12 21:13:28 +02:00
|
|
|
export const declaration: CommandDeclaration = {
|
2020-07-03 23:32:39 +02:00
|
|
|
name: 'focusElementNoteList',
|
|
|
|
label: () => _('Note list'),
|
2020-09-13 18:21:11 +02:00
|
|
|
parentLabel: () => _('Focus'),
|
2020-07-03 23:32:39 +02:00
|
|
|
};
|
|
|
|
|
2023-08-21 17:01:20 +02:00
|
|
|
export const runtime = (focusNote: FocusNote): CommandRuntime => {
|
2020-07-03 23:32:39 +02:00
|
|
|
return {
|
2020-11-12 21:13:28 +02:00
|
|
|
execute: async (context: CommandContext, noteId: string = null) => {
|
2020-10-18 22:52:10 +02:00
|
|
|
noteId = noteId || stateUtils.selectedNoteId(context.state);
|
2023-08-21 17:01:20 +02:00
|
|
|
focusNote(noteId);
|
2020-07-03 23:32:39 +02:00
|
|
|
},
|
2020-10-18 22:52:10 +02:00
|
|
|
enabledCondition: 'noteListHasNotes',
|
2020-07-03 23:32:39 +02:00
|
|
|
};
|
|
|
|
};
|