File size: 16,004 Bytes
6afedde |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 |
#!/usr/bin/env node
/**
* Export PDF Book - Version Simplifiée
*
* Génère un PDF de qualité professionnelle avec mise en page type livre
* directement avec Playwright + CSS Paged Media (sans Paged.js pour plus de stabilité)
*
* Usage :
* npm run export:pdf:book:simple
* npm run export:pdf:book:simple -- --theme=dark --format=A4
*/
import { spawn } from 'node:child_process';
import { setTimeout as delay } from 'node:timers/promises';
import { chromium } from 'playwright';
import { resolve, dirname } from 'node:path';
import { promises as fs } from 'node:fs';
import { fileURLToPath } from 'node:url';
import process from 'node:process';
const __dirname = dirname(fileURLToPath(import.meta.url));
// ============================================================================
// Utilitaires (réutilisés du script original)
// ============================================================================
async function run(command, args = [], options = {}) {
return new Promise((resolvePromise, reject) => {
const child = spawn(command, args, { stdio: 'inherit', shell: false, ...options });
child.on('error', reject);
child.on('exit', (code) => {
if (code === 0) resolvePromise(undefined);
else reject(new Error(`${command} ${args.join(' ')} exited with code ${code}`));
});
});
}
async function waitForServer(url, timeoutMs = 60000) {
const start = Date.now();
while (Date.now() - start < timeoutMs) {
try {
const res = await fetch(url);
if (res.ok) return;
} catch { }
await delay(500);
}
throw new Error(`Server did not start in time: ${url}`);
}
function parseArgs(argv) {
const out = {};
for (const arg of argv.slice(2)) {
if (!arg.startsWith('--')) continue;
const [k, v] = arg.replace(/^--/, '').split('=');
out[k] = v === undefined ? true : v;
}
return out;
}
function slugify(text) {
return String(text || '')
.normalize('NFKD')
.replace(/\p{Diacritic}+/gu, '')
.toLowerCase()
.replace(/[^a-z0-9]+/g, '-')
.replace(/^-+|-+$/g, '')
.slice(0, 120) || 'article';
}
async function waitForImages(page, timeoutMs = 15000) {
await page.evaluate(async (timeout) => {
const deadline = Date.now() + timeout;
const imgs = Array.from(document.images || []);
const unloaded = imgs.filter(img => !img.complete || (img.naturalWidth === 0));
await Promise.race([
Promise.all(unloaded.map(img => new Promise(res => {
if (img.complete && img.naturalWidth !== 0) return res(undefined);
img.addEventListener('load', () => res(undefined), { once: true });
img.addEventListener('error', () => res(undefined), { once: true });
}))),
new Promise(res => setTimeout(res, Math.max(0, deadline - Date.now())))
]);
}, timeoutMs);
}
async function waitForPlotly(page, timeoutMs = 20000) {
await page.evaluate(async (timeout) => {
const start = Date.now();
const hasPlots = () => Array.from(document.querySelectorAll('.js-plotly-plot')).length > 0;
while (!hasPlots() && (Date.now() - start) < timeout) {
await new Promise(r => setTimeout(r, 200));
}
const deadline = start + timeout;
const allReady = () => Array.from(document.querySelectorAll('.js-plotly-plot')).every(el => el.querySelector('svg.main-svg'));
while (!allReady() && Date.now() < deadline) {
await new Promise(r => setTimeout(r, 200));
}
}, timeoutMs);
}
async function waitForD3(page, timeoutMs = 20000) {
await page.evaluate(async (timeout) => {
const start = Date.now();
const isReady = () => {
const hero = document.querySelector('.hero-banner');
if (hero) {
return !!hero.querySelector('svg circle, svg path, svg rect, svg g');
}
const containers = [
...Array.from(document.querySelectorAll('.d3-line')),
...Array.from(document.querySelectorAll('.d3-bar'))
];
if (!containers.length) return true;
return containers.every(c => c.querySelector('svg circle, svg path, svg rect, svg g'));
};
while (!isReady() && (Date.now() - start) < timeout) {
await new Promise(r => setTimeout(r, 200));
}
}, timeoutMs);
}
async function waitForStableLayout(page, timeoutMs = 5000) {
const start = Date.now();
let last = await page.evaluate(() => document.scrollingElement ? document.scrollingElement.scrollHeight : document.body.scrollHeight);
let stableCount = 0;
while ((Date.now() - start) < timeoutMs && stableCount < 3) {
await page.waitForTimeout(250);
const now = await page.evaluate(() => document.scrollingElement ? document.scrollingElement.scrollHeight : document.body.scrollHeight);
if (now === last) stableCount += 1; else { stableCount = 0; last = now; }
}
}
async function openAllAccordions(page) {
console.log('📂 Opening all accordions…');
await page.evaluate(() => {
// Trouver tous les accordéons (details.accordion)
const accordions = document.querySelectorAll('details.accordion, details');
let openedCount = 0;
accordions.forEach((accordion) => {
if (!accordion.hasAttribute('open')) {
// Ouvrir l'accordéon en ajoutant l'attribut open
accordion.setAttribute('open', '');
// Forcer l'affichage du contenu pour le PDF
const wrapper = accordion.querySelector('.accordion__content-wrapper');
if (wrapper) {
wrapper.style.height = 'auto';
wrapper.style.overflow = 'visible';
}
openedCount++;
}
});
console.log(`Opened ${openedCount} accordion(s)`);
return openedCount;
});
// Petit délai pour que les accordéons se stabilisent
await page.waitForTimeout(500);
}
async function waitForHtmlEmbeds(page, timeoutMs = 15000) {
console.log('⏳ Waiting for HTML embeds to render…');
await page.evaluate(async (timeout) => {
const start = Date.now();
const isEmbedReady = (embed) => {
try {
// Vérifier si l'embed a du contenu
const hasContent = embed.querySelector('svg, canvas, div[id^="frag-"]');
if (!hasContent) return false;
// Vérifier si les SVG ont des éléments
const svgs = embed.querySelectorAll('svg');
for (const svg of svgs) {
const hasShapes = svg.querySelector('path, circle, rect, line, polygon, g');
if (!hasShapes) return false;
}
// Vérifier si les canvas ont été dessinés
const canvases = embed.querySelectorAll('canvas');
for (const canvas of canvases) {
try {
const ctx = canvas.getContext('2d');
const imageData = ctx.getImageData(0, 0, Math.min(10, canvas.width), Math.min(10, canvas.height));
// Vérifier si au moins un pixel est non-transparent
const hasPixels = Array.from(imageData.data).some((v, i) => i % 4 === 3 && v > 0);
if (!hasPixels) return false;
} catch (e) {
// Cross-origin ou erreur, on considère que c'est OK
}
}
return true;
} catch (e) {
return false;
}
};
while (Date.now() - start < timeout) {
const embeds = Array.from(document.querySelectorAll('.html-embed__card'));
if (embeds.length === 0) break; // Pas d'embeds dans la page
const allReady = embeds.every(isEmbedReady);
if (allReady) {
console.log(`All ${embeds.length} HTML embeds ready`);
break;
}
await new Promise(r => setTimeout(r, 300));
}
}, timeoutMs);
}
// ============================================================================
// Script principal
// ============================================================================
async function main() {
const cwd = process.cwd();
const port = Number(process.env.PREVIEW_PORT || 8080);
const baseUrl = `http://127.0.0.1:${port}/`;
const args = parseArgs(process.argv);
const theme = (args.theme === 'dark' || args.theme === 'light') ? args.theme : 'light';
const format = args.format || 'A4';
const wait = args.wait || 'full';
let outFileBase = (args.filename && String(args.filename).replace(/\.pdf$/i, '')) || 'article-book';
// Build si nécessaire
const distDir = resolve(cwd, 'dist');
let hasDist = false;
try {
const st = await fs.stat(distDir);
hasDist = st && st.isDirectory();
} catch { }
if (!hasDist) {
console.log('📦 Building Astro site…');
await run('npm', ['run', 'build']);
} else {
console.log('✓ Using existing dist/ build');
}
console.log('🚀 Starting Astro preview server…');
const preview = spawn('npm', ['run', 'preview'], { cwd, stdio: 'inherit', detached: true });
const previewExit = new Promise((resolvePreview) => {
preview.on('close', (code, signal) => resolvePreview({ code, signal }));
});
try {
await waitForServer(baseUrl, 60000);
console.log('✓ Server ready');
console.log('📖 Launching browser…');
const browser = await chromium.launch({ headless: true });
try {
const context = await browser.newContext();
// Appliquer le thème
await context.addInitScript((desired) => {
try {
localStorage.setItem('theme', desired);
if (document && document.documentElement) {
document.documentElement.dataset.theme = desired;
}
} catch { }
}, theme);
const page = await context.newPage();
// Viewport pour le contenu
await page.setViewportSize({ width: 1200, height: 1600 });
console.log('📄 Loading page…');
await page.goto(baseUrl, { waitUntil: 'load', timeout: 60000 });
// Attendre les libraries
try { await page.waitForFunction(() => !!window.Plotly, { timeout: 8000 }); } catch { }
try { await page.waitForFunction(() => !!window.d3, { timeout: 8000 }); } catch { }
// Récupérer le nom du fichier
if (!args.filename) {
const fromBtn = await page.evaluate(() => {
const btn = document.getElementById('download-pdf-btn');
const f = btn ? btn.getAttribute('data-pdf-filename') : null;
return f || '';
});
if (fromBtn) {
outFileBase = String(fromBtn).replace(/\.pdf$/i, '') + '-book';
} else {
const title = await page.evaluate(() => {
const h1 = document.querySelector('h1.hero-title');
const t = h1 ? h1.textContent : document.title;
return (t || '').replace(/\s+/g, ' ').trim();
});
outFileBase = slugify(title) + '-book';
}
}
// Attendre le rendu du contenu
if (wait === 'images' || wait === 'full') {
console.log('⏳ Waiting for images…');
await waitForImages(page);
}
if (wait === 'd3' || wait === 'full') {
console.log('⏳ Waiting for D3…');
await waitForD3(page);
}
if (wait === 'plotly' || wait === 'full') {
console.log('⏳ Waiting for Plotly…');
await waitForPlotly(page);
}
if (wait === 'full') {
await waitForHtmlEmbeds(page);
await waitForStableLayout(page);
}
// Ouvrir tous les accordéons pour qu'ils soient visibles dans le PDF
await openAllAccordions(page);
await waitForStableLayout(page, 2000);
// Activer le mode print
await page.emulateMedia({ media: 'print' });
console.log('📚 Applying book styles…');
// Injecter le CSS livre
const bookCssPath = resolve(__dirname, '..', 'src', 'styles', '_print-book.css');
const bookCss = await fs.readFile(bookCssPath, 'utf-8');
await page.addStyleTag({ content: bookCss });
// Attendre que le style soit appliqué
await page.waitForTimeout(1000);
// Générer le PDF avec les options appropriées
const outPath = resolve(cwd, 'dist', `${outFileBase}.pdf`);
console.log('🖨️ Generating PDF…');
await page.pdf({
path: outPath,
format,
printBackground: true,
displayHeaderFooter: false, // On utilise CSS @page à la place
preferCSSPageSize: false,
margin: {
top: '20mm',
right: '20mm',
bottom: '25mm',
left: '25mm'
}
});
// Vérifier la taille du PDF
const stats = await fs.stat(outPath);
const sizeKB = Math.round(stats.size / 1024);
console.log(`✅ PDF generated: ${outPath} (${sizeKB} KB)`);
if (sizeKB < 10) {
console.warn('⚠️ Warning: PDF is very small, content might be missing');
}
// Copier dans public/
const publicPath = resolve(cwd, 'public', `${outFileBase}.pdf`);
try {
await fs.mkdir(resolve(cwd, 'public'), { recursive: true });
await fs.copyFile(outPath, publicPath);
console.log(`✅ PDF copied to: ${publicPath}`);
} catch (e) {
console.warn('⚠️ Unable to copy PDF to public/:', e?.message || e);
}
} finally {
await browser.close();
}
} finally {
// Arrêter le serveur preview
console.log('🛑 Stopping preview server…');
try {
if (process.platform !== 'win32') {
try { process.kill(-preview.pid, 'SIGINT'); } catch { }
}
try { preview.kill('SIGINT'); } catch { }
await Promise.race([previewExit, delay(3000)]);
if (!preview.killed) {
try {
if (process.platform !== 'win32') {
try { process.kill(-preview.pid, 'SIGKILL'); } catch { }
}
try { preview.kill('SIGKILL'); } catch { }
} catch { }
await Promise.race([previewExit, delay(1000)]);
}
} catch { }
}
console.log('');
console.log('╔═══════════════════════════════════════════════════════════════╗');
console.log('║ 📚 PDF BOOK (SIMPLE) GENERATED! 📚 ║');
console.log('╚═══════════════════════════════════════════════════════════════╝');
console.log('');
}
main().catch((err) => {
console.error('❌ Error:', err);
process.exit(1);
});
|