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
23 lines
557 B
TypeScript
23 lines
557 B
TypeScript
import { CommandRuntime, CommandDeclaration, CommandContext } from 'lib/services/CommandService';
|
|
import { _ } from 'lib/locale';
|
|
|
|
export const declaration:CommandDeclaration = {
|
|
name: 'showShareNoteDialog',
|
|
label: () => _('Share note...'),
|
|
};
|
|
|
|
export const runtime = (comp:any):CommandRuntime => {
|
|
return {
|
|
execute: async (context:CommandContext, noteIds:string[] = null) => {
|
|
noteIds = noteIds || context.state.selectedNoteIds;
|
|
|
|
comp.setState({
|
|
shareNoteDialogOptions: {
|
|
noteIds: noteIds,
|
|
visible: true,
|
|
},
|
|
});
|
|
},
|
|
};
|
|
};
|