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/utils/usePrintToCallback.ts
Henry Heino 4a88d6ff7a
Desktop: Multiple window support (#11181)
Co-authored-by: Laurent Cozic <laurent22@users.noreply.github.com>
2024-11-08 15:32:05 +00:00

79 lines
2.5 KiB
TypeScript

import { useCallback, useRef } from 'react';
import bridge from '../../../services/bridge';
import InteropServiceHelper from '../../../InteropServiceHelper';
import Setting from '@joplin/lib/models/Setting';
import shim from '@joplin/lib/shim';
import { PluginStates } from '@joplin/lib/services/plugins/reducer';
import { msleep } from '@joplin/utils/time';
let isPrinting = false;
interface Props {
customCss: string;
plugins: PluginStates;
editorNoteStatuses: Record<string, string>;
}
interface PrintOptions {
path?: string;
noteId: string;
}
export type PrintCallback = (target: string, options: PrintOptions)=> Promise<void>;
const usePrintToCallback = (props: Props): PrintCallback => {
const noteStatusesRef = useRef(props.editorNoteStatuses);
noteStatusesRef.current = props.editorNoteStatuses;
const waitForNoteToSaved = useCallback(async (noteId: string) => {
while (noteId && noteStatusesRef.current[noteId] === 'saving') {
// eslint-disable-next-line no-console -- Old code from before rule was applied
console.info('Waiting for note to be saved...', noteStatusesRef.current);
await msleep(100);
}
}, []);
return useCallback(async (target, options) => {
// Concurrent print calls are disallowed to avoid incorrect settings being restored upon completion
if (isPrinting) {
// eslint-disable-next-line no-console -- Old code from before rule was applied
console.info(`Printing ${options.path ?? options.noteId} to ${target} disallowed, already printing.`);
return;
}
isPrinting = true;
// Need to wait for save because the interop service reloads the note from the database
await waitForNoteToSaved(options.noteId);
if (target === 'pdf') {
try {
const pdfData = await InteropServiceHelper.exportNoteToPdf(options.noteId, {
printBackground: true,
pageSize: Setting.value('export.pdfPageSize'),
landscape: Setting.value('export.pdfPageOrientation') === 'landscape',
customCss: props.customCss,
plugins: props.plugins,
});
await shim.fsDriver().writeFile(options.path, pdfData, 'buffer');
} catch (error) {
console.error(error);
bridge().showErrorMessageBox(error.message);
}
} else if (target === 'printer') {
try {
await InteropServiceHelper.printNote(options.noteId, {
printBackground: true,
customCss: props.customCss,
});
} catch (error) {
console.error(error);
bridge().showErrorMessageBox(error.message);
}
}
isPrinting = false;
}, [props.plugins, waitForNoteToSaved, props.customCss]);
};
export default usePrintToCallback;