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

21 lines
462 B
TypeScript

import { CommandRuntime, CommandDeclaration } 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 ({ noteIds }:any) => {
comp.setState({
shareNoteDialogOptions: {
noteIds: noteIds,
visible: true,
},
});
},
};
};