1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-15 09:04:04 +02:00
joplin/ElectronClient/gui/MainScreen/commands/showNoteContentProperties.ts

31 lines
785 B
TypeScript
Raw Normal View History

import { CommandRuntime, CommandDeclaration } from '../../../lib/services/CommandService';
const Note = require('lib/models/Note');
const { _ } = require('lib/locale');
export const declaration:CommandDeclaration = {
name: 'showNoteContentProperties',
label: () => _('Statistics...'),
};
export const runtime = (comp:any):CommandRuntime => {
return {
execute: async ({ noteId }:any) => {
const note = await Note.load(noteId);
if (note) {
comp.setState({
noteContentPropertiesDialogOptions: {
visible: true,
text: note.body,
},
});
}
},
isEnabled: (props:any) => {
return !!props.noteId;
},
mapStateToProps: (state:any) => {
return { noteId: state.selectedNoteIds.length === 1 ? state.selectedNoteIds[0] : null };
},
};
};