1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-18 09:35:20 +02:00
joplin/packages/app-desktop/gui/WindowCommandsAndDialogs/commands/showShareNoteDialog.ts

25 lines
763 B
TypeScript
Raw Normal View History

import { CommandRuntime, CommandDeclaration, CommandContext } from '@joplin/lib/services/CommandService';
import { _ } from '@joplin/lib/locale';
export const declaration: CommandDeclaration = {
name: 'showShareNoteDialog',
2021-07-11 19:08:42 +02:00
label: () => _('Publish note...'),
};
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
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,
},
});
},
enabledCondition: 'joplinServerConnected && someNotesSelected && !noteIsDeleted',
};
};