2020-11-07 17:59:37 +02:00
|
|
|
import { CommandRuntime, CommandDeclaration, CommandContext } from '@joplin/lib/services/CommandService';
|
|
|
|
import { _ } from '@joplin/lib/locale';
|
2020-07-03 23:32:39 +02:00
|
|
|
|
2020-11-12 21:13:28 +02:00
|
|
|
export const declaration: CommandDeclaration = {
|
2020-07-03 23:32:39 +02:00
|
|
|
name: 'showShareNoteDialog',
|
|
|
|
label: () => _('Share note...'),
|
|
|
|
};
|
|
|
|
|
2020-11-12 21:13:28 +02:00
|
|
|
export const runtime = (comp: any): CommandRuntime => {
|
2020-07-03 23:32:39 +02:00
|
|
|
return {
|
2020-11-12 21:13:28 +02:00
|
|
|
execute: async (context: CommandContext, noteIds: string[] = null) => {
|
2020-10-18 22:52:10 +02:00
|
|
|
noteIds = noteIds || context.state.selectedNoteIds;
|
|
|
|
|
2020-07-03 23:32:39 +02:00
|
|
|
comp.setState({
|
|
|
|
shareNoteDialogOptions: {
|
|
|
|
noteIds: noteIds,
|
|
|
|
visible: true,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
},
|
2021-05-16 17:28:49 +02:00
|
|
|
enabledCondition: 'joplinServerConnected && someNotesSelected',
|
2020-07-03 23:32:39 +02:00
|
|
|
};
|
|
|
|
};
|