mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
29 lines
822 B
TypeScript
29 lines
822 B
TypeScript
import CommandService, { CommandRuntime, CommandDeclaration, CommandContext } from '@joplin/lib/services/CommandService';
|
|
import { _ } from '@joplin/lib/locale';
|
|
import { stateUtils } from '@joplin/lib/reducer';
|
|
|
|
export const declaration: CommandDeclaration = {
|
|
name: 'showNoteProperties',
|
|
label: () => _('Note properties'),
|
|
iconName: 'icon-info',
|
|
};
|
|
|
|
export const runtime = (comp: any): CommandRuntime => {
|
|
return {
|
|
execute: async (context: CommandContext, noteId: string = null) => {
|
|
noteId = noteId || stateUtils.selectedNoteId(context.state);
|
|
|
|
comp.setState({
|
|
notePropertiesDialogOptions: {
|
|
noteId: noteId,
|
|
visible: true,
|
|
onRevisionLinkClick: () => {
|
|
void CommandService.instance().execute('showRevisions');
|
|
},
|
|
},
|
|
});
|
|
},
|
|
enabledCondition: 'oneNoteSelected',
|
|
};
|
|
};
|