2020-11-05 18:58:23 +02:00
|
|
|
import CommandService, { CommandRuntime, CommandDeclaration, CommandContext } from '@joplinapp/lib/services/CommandService';
|
|
|
|
import { _ } from '@joplinapp/lib/locale';
|
|
|
|
import { stateUtils } from '@joplinapp/lib/reducer';
|
2020-07-03 23:32:39 +02:00
|
|
|
|
|
|
|
export const declaration:CommandDeclaration = {
|
|
|
|
name: 'showNoteProperties',
|
|
|
|
label: () => _('Note properties'),
|
2020-09-15 15:01:07 +02:00
|
|
|
iconName: 'icon-info',
|
2020-07-03 23:32:39 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
export const runtime = (comp:any):CommandRuntime => {
|
|
|
|
return {
|
2020-10-18 22:52:10 +02:00
|
|
|
execute: async (context:CommandContext, noteId:string = null) => {
|
|
|
|
noteId = noteId || stateUtils.selectedNoteId(context.state);
|
|
|
|
|
2020-07-03 23:32:39 +02:00
|
|
|
comp.setState({
|
|
|
|
notePropertiesDialogOptions: {
|
|
|
|
noteId: noteId,
|
|
|
|
visible: true,
|
|
|
|
onRevisionLinkClick: () => {
|
|
|
|
CommandService.instance().execute('showRevisions');
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
},
|
2020-10-18 22:52:10 +02:00
|
|
|
enabledCondition: 'oneNoteSelected',
|
2020-07-03 23:32:39 +02:00
|
|
|
};
|
|
|
|
};
|