mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
3a57cfea02
- Commands "enabled" state is now expressed using a "when-clause" like in VSCode - A command palette has been added to the Tools menu
29 lines
788 B
TypeScript
29 lines
788 B
TypeScript
import CommandService, { CommandRuntime, CommandDeclaration, CommandContext } from 'lib/services/CommandService';
|
|
import { _ } from 'lib/locale';
|
|
import { stateUtils } from '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: () => {
|
|
CommandService.instance().execute('showRevisions');
|
|
},
|
|
},
|
|
});
|
|
},
|
|
enabledCondition: 'oneNoteSelected',
|
|
};
|
|
};
|