2020-11-07 15:59:37 +00:00
|
|
|
import { CommandRuntime, CommandDeclaration, CommandContext } from '@joplin/lib/services/CommandService';
|
|
|
|
|
import { _ } from '@joplin/lib/locale';
|
2024-11-08 07:32:05 -08:00
|
|
|
import { WindowControl } from '../utils/useWindowControl';
|
2025-06-06 02:10:49 -07:00
|
|
|
import bridge from '../../../services/bridge';
|
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: 'print',
|
|
|
|
|
label: () => _('Print'),
|
|
|
|
|
iconName: 'fa-file',
|
|
|
|
|
};
|
|
|
|
|
|
2024-11-08 07:32:05 -08:00
|
|
|
export const runtime = (comp: WindowControl): 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
|
|
|
try {
|
|
|
|
|
if (noteIds.length !== 1) throw new Error(_('Only one note can be printed at a time.'));
|
2024-11-08 07:32:05 -08:00
|
|
|
await comp.printTo('printer', { noteId: noteIds[0] });
|
2020-07-03 22:32:39 +01:00
|
|
|
} catch (error) {
|
|
|
|
|
bridge().showErrorMessageBox(error.message);
|
|
|
|
|
}
|
|
|
|
|
},
|
2020-10-18 21:52:10 +01:00
|
|
|
enabledCondition: 'someNotesSelected',
|
2020-07-03 22:32:39 +01:00
|
|
|
};
|
|
|
|
|
};
|