You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-06-27 23:28:38 +02:00
- Commands "enabled" state is now expressed using a "when-clause" like in VSCode - A command palette has been added to the Tools menu
24 lines
660 B
TypeScript
24 lines
660 B
TypeScript
import { CommandRuntime, CommandDeclaration, CommandContext } from 'lib/services/CommandService';
|
|
import { _ } from 'lib/locale';
|
|
import { stateUtils } from 'lib/reducer';
|
|
|
|
export const declaration:CommandDeclaration = {
|
|
name: 'focusElementNoteList',
|
|
label: () => _('Note list'),
|
|
parentLabel: () => _('Focus'),
|
|
};
|
|
|
|
export const runtime = (comp:any):CommandRuntime => {
|
|
return {
|
|
execute: async (context:CommandContext, noteId:string = null) => {
|
|
noteId = noteId || stateUtils.selectedNoteId(context.state);
|
|
|
|
if (noteId) {
|
|
const ref = comp.itemAnchorRef(noteId);
|
|
if (ref) ref.focus();
|
|
}
|
|
},
|
|
enabledCondition: 'noteListHasNotes',
|
|
};
|
|
};
|