joplin/ElectronClient/gui/MainScreen/commands/showShareNoteDialog.ts

21 lines
467 B
TypeScript

import { CommandRuntime, CommandDeclaration } from '../../../lib/services/CommandService';
const { _ } = require('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,
},
});
},
};
};