1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-18 09:35:20 +02:00
joplin/packages/app-desktop/gui/MainScreen/commands/showNoteProperties.ts

29 lines
822 B
TypeScript
Raw Normal View History

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'),
2020-09-15 15:01:07 +02:00
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: () => {
2020-11-25 16:40:25 +02:00
void CommandService.instance().execute('showRevisions');
},
},
});
},
enabledCondition: 'oneNoteSelected',
};
};