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';
|
2021-01-22 19:41:11 +02:00
|
|
|
import Note from '@joplin/lib/models/Note';
|
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: 'showNoteContentProperties',
|
|
|
|
label: () => _('Statistics...'),
|
|
|
|
};
|
|
|
|
|
2020-11-12 21:13:28 +02:00
|
|
|
export const runtime = (comp: any): 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);
|
|
|
|
|
2020-07-03 23:32:39 +02:00
|
|
|
const note = await Note.load(noteId);
|
|
|
|
if (note) {
|
|
|
|
comp.setState({
|
|
|
|
noteContentPropertiesDialogOptions: {
|
|
|
|
visible: true,
|
|
|
|
text: note.body,
|
2020-07-15 00:27:12 +02:00
|
|
|
markupLanguage: note.markup_language,
|
2020-07-03 23:32:39 +02:00
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
2020-10-18 22:52:10 +02:00
|
|
|
|
|
|
|
enabledCondition: 'oneNoteSelected',
|
2020-07-03 23:32:39 +02:00
|
|
|
};
|
|
|
|
};
|