- Add WASM settings page for configuring external AGPL modules - Implement dynamic loading for PyMuPDF, Ghostscript, and CoherentPDF - Add Cloudflare Worker proxy for serving WASM files with CORS - Update all affected tool pages to check WASM availability - Add showWasmRequiredDialog for missing module configuration Documentation: - Update README, licensing.html, and docs to clarify AGPL components are not bundled and must be configured separately - Add WASM-PROXY.md deployment guide with recommended source URLs - Rename "CPDF" to "CoherentPDF" for consistency
199 lines
5.4 KiB
TypeScript
199 lines
5.4 KiB
TypeScript
import JSZip from 'jszip';
|
|
import {
|
|
downloadFile,
|
|
formatBytes,
|
|
readFileAsArrayBuffer,
|
|
} from '../utils/helpers';
|
|
import { initializeGlobalShortcuts } from '../utils/shortcuts-init.js';
|
|
import { isCpdfAvailable } from '../utils/cpdf-helper.js';
|
|
import {
|
|
showWasmRequiredDialog,
|
|
WasmProvider,
|
|
} from '../utils/wasm-provider.js';
|
|
|
|
const worker = new Worker(
|
|
import.meta.env.BASE_URL + 'workers/json-to-pdf.worker.js'
|
|
);
|
|
|
|
let selectedFiles: File[] = [];
|
|
|
|
const jsonFilesInput = document.getElementById('jsonFiles') as HTMLInputElement;
|
|
const convertBtn = document.getElementById('convertBtn') as HTMLButtonElement;
|
|
const statusMessage = document.getElementById(
|
|
'status-message'
|
|
) as HTMLDivElement;
|
|
const fileListDiv = document.getElementById('fileList') as HTMLDivElement;
|
|
const backToToolsBtn = document.getElementById(
|
|
'back-to-tools'
|
|
) as HTMLButtonElement;
|
|
|
|
function showStatus(
|
|
message: string,
|
|
type: 'success' | 'error' | 'info' = 'info'
|
|
) {
|
|
statusMessage.textContent = message;
|
|
statusMessage.className = `mt-4 p-3 rounded-lg text-sm ${
|
|
type === 'success'
|
|
? 'bg-green-900 text-green-200'
|
|
: type === 'error'
|
|
? 'bg-red-900 text-red-200'
|
|
: 'bg-blue-900 text-blue-200'
|
|
}`;
|
|
statusMessage.classList.remove('hidden');
|
|
}
|
|
|
|
function hideStatus() {
|
|
statusMessage.classList.add('hidden');
|
|
}
|
|
|
|
function updateFileList() {
|
|
fileListDiv.innerHTML = '';
|
|
if (selectedFiles.length === 0) {
|
|
fileListDiv.classList.add('hidden');
|
|
return;
|
|
}
|
|
|
|
fileListDiv.classList.remove('hidden');
|
|
selectedFiles.forEach((file) => {
|
|
const fileDiv = document.createElement('div');
|
|
fileDiv.className =
|
|
'flex items-center justify-between bg-gray-700 p-3 rounded-lg text-sm mb-2';
|
|
|
|
const nameSpan = document.createElement('span');
|
|
nameSpan.className = 'truncate font-medium text-gray-200';
|
|
nameSpan.textContent = file.name;
|
|
|
|
const sizeSpan = document.createElement('span');
|
|
sizeSpan.className = 'flex-shrink-0 ml-4 text-gray-400';
|
|
sizeSpan.textContent = formatBytes(file.size);
|
|
|
|
fileDiv.append(nameSpan, sizeSpan);
|
|
fileListDiv.appendChild(fileDiv);
|
|
});
|
|
}
|
|
|
|
jsonFilesInput.addEventListener('change', (e) => {
|
|
const target = e.target as HTMLInputElement;
|
|
if (target.files && target.files.length > 0) {
|
|
selectedFiles = Array.from(target.files);
|
|
convertBtn.disabled = selectedFiles.length === 0;
|
|
updateFileList();
|
|
|
|
if (selectedFiles.length === 0) {
|
|
showStatus('Please select at least 1 JSON file', 'info');
|
|
} else {
|
|
showStatus(
|
|
`${selectedFiles.length} file(s) selected. Ready to convert!`,
|
|
'info'
|
|
);
|
|
}
|
|
}
|
|
});
|
|
|
|
async function convertJSONsToPDF() {
|
|
if (selectedFiles.length === 0) {
|
|
showStatus('Please select at least 1 JSON file', 'error');
|
|
return;
|
|
}
|
|
|
|
// Check if CPDF is configured
|
|
if (!isCpdfAvailable()) {
|
|
showWasmRequiredDialog('cpdf');
|
|
return;
|
|
}
|
|
|
|
try {
|
|
convertBtn.disabled = true;
|
|
showStatus('Reading files (Main Thread)...', 'info');
|
|
|
|
const fileBuffers = await Promise.all(
|
|
selectedFiles.map((file) => readFileAsArrayBuffer(file))
|
|
);
|
|
|
|
showStatus('Converting JSONs to PDFs...', 'info');
|
|
|
|
worker.postMessage(
|
|
{
|
|
command: 'convert',
|
|
fileBuffers: fileBuffers,
|
|
fileNames: selectedFiles.map((f) => f.name),
|
|
cpdfUrl: WasmProvider.getUrl('cpdf')! + 'coherentpdf.browser.min.js',
|
|
},
|
|
fileBuffers
|
|
);
|
|
} catch (error) {
|
|
console.error('Error reading files:', error);
|
|
showStatus(
|
|
`❌ Error reading files: ${error instanceof Error ? error.message : 'Unknown error'}`,
|
|
'error'
|
|
);
|
|
convertBtn.disabled = false;
|
|
}
|
|
}
|
|
|
|
worker.onmessage = async (e: MessageEvent) => {
|
|
convertBtn.disabled = false;
|
|
|
|
if (e.data.status === 'success') {
|
|
const pdfFiles = e.data.pdfFiles as Array<{
|
|
name: string;
|
|
data: ArrayBuffer;
|
|
}>;
|
|
|
|
try {
|
|
showStatus('Creating ZIP file...', 'info');
|
|
|
|
const zip = new JSZip();
|
|
pdfFiles.forEach(({ name, data }) => {
|
|
const pdfName = name.replace(/\.json$/i, '.pdf');
|
|
const uint8Array = new Uint8Array(data);
|
|
zip.file(pdfName, uint8Array);
|
|
});
|
|
|
|
const zipBlob = await zip.generateAsync({ type: 'blob' });
|
|
const url = URL.createObjectURL(zipBlob);
|
|
const a = document.createElement('a');
|
|
a.href = url;
|
|
a.download = 'jsons-to-pdf.zip';
|
|
downloadFile(zipBlob, 'jsons-to-pdf.zip');
|
|
|
|
showStatus(
|
|
'✅ JSONs converted to PDF successfully! ZIP download started.',
|
|
'success'
|
|
);
|
|
|
|
selectedFiles = [];
|
|
jsonFilesInput.value = '';
|
|
fileListDiv.innerHTML = '';
|
|
fileListDiv.classList.add('hidden');
|
|
convertBtn.disabled = true;
|
|
|
|
setTimeout(() => {
|
|
hideStatus();
|
|
}, 3000);
|
|
} catch (error) {
|
|
console.error('Error creating ZIP:', error);
|
|
showStatus(
|
|
`❌ Error creating ZIP: ${error instanceof Error ? error.message : 'Unknown error'}`,
|
|
'error'
|
|
);
|
|
}
|
|
} else if (e.data.status === 'error') {
|
|
const errorMessage = e.data.message || 'Unknown error occurred in worker.';
|
|
console.error('Worker Error:', errorMessage);
|
|
showStatus(`❌ Worker Error: ${errorMessage}`, 'error');
|
|
}
|
|
};
|
|
|
|
if (backToToolsBtn) {
|
|
backToToolsBtn.addEventListener('click', () => {
|
|
window.location.href = import.meta.env.BASE_URL;
|
|
});
|
|
}
|
|
|
|
convertBtn.addEventListener('click', convertJSONsToPDF);
|
|
|
|
// Initialize
|
|
showStatus('Select JSON files to get started', 'info');
|
|
initializeGlobalShortcuts();
|