2020-11-07 15:59:37 +00:00
|
|
|
import { CommandRuntime, CommandDeclaration, CommandContext } from '@joplin/lib/services/CommandService';
|
|
|
|
import { _ } from '@joplin/lib/locale';
|
2020-07-03 22:32:39 +01:00
|
|
|
|
2020-11-12 19:13:28 +00:00
|
|
|
export const declaration: CommandDeclaration = {
|
2020-07-03 22:32:39 +01:00
|
|
|
name: 'showShareNoteDialog',
|
2021-07-11 18:08:42 +01:00
|
|
|
label: () => _('Publish note...'),
|
2020-07-03 22:32:39 +01:00
|
|
|
};
|
|
|
|
|
2024-04-05 12:16:49 +01:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
2020-11-12 19:13:28 +00:00
|
|
|
export const runtime = (comp: any): CommandRuntime => {
|
2020-07-03 22:32:39 +01:00
|
|
|
return {
|
2020-11-12 19:13:28 +00:00
|
|
|
execute: async (context: CommandContext, noteIds: string[] = null) => {
|
2020-10-18 21:52:10 +01:00
|
|
|
noteIds = noteIds || context.state.selectedNoteIds;
|
|
|
|
|
2020-07-03 22:32:39 +01:00
|
|
|
comp.setState({
|
|
|
|
shareNoteDialogOptions: {
|
|
|
|
noteIds: noteIds,
|
|
|
|
visible: true,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
},
|
2024-03-02 14:25:27 +00:00
|
|
|
enabledCondition: 'joplinServerConnected && someNotesSelected && !noteIsDeleted',
|
2020-07-03 22:32:39 +01:00
|
|
|
};
|
|
|
|
};
|