Spaces:
Running
Running
File size: 18,986 Bytes
f4623fe e3219cb f4623fe e3219cb f4623fe e3219cb f4623fe e3219cb f4623fe e3219cb f4623fe e3219cb f4623fe e3219cb f4623fe e3219cb f4623fe e3219cb f4623fe e3219cb f4623fe e3219cb f4623fe e3219cb f4623fe e3219cb f4623fe e3219cb f4623fe e3219cb f4623fe e3219cb f4623fe e3219cb f4623fe e3219cb f4623fe e3219cb f4623fe e3219cb f4623fe e3219cb f4623fe | 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 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 | /**
* HTML Preview Service
* Renders a resume to HTML using Handlebars templates.
*/
const Handlebars = require('handlebars');
// βββ Handlebars Helpers βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Handlebars.registerHelper('ifCond', function (v1, operator, v2, options) {
switch (operator) {
case '==': return v1 == v2 ? options.fn(this) : options.inverse(this);
case '!=': return v1 != v2 ? options.fn(this) : options.inverse(this);
case '>': return v1 > v2 ? options.fn(this) : options.inverse(this);
case '<': return v1 < v2 ? options.fn(this) : options.inverse(this);
default: return options.inverse(this);
}
});
Handlebars.registerHelper('join', (arr, sep) =>
Array.isArray(arr) ? arr.join(typeof sep === 'string' ? sep : ', ') : ''
);
Handlebars.registerHelper('nl2br', (text) =>
new Handlebars.SafeString(
(text || '').replace(/\n/g, '<br>')
)
);
Handlebars.registerHelper('nl2li', (text) => {
if (!text) return '';
const items = text.split('\n').filter(line => line.trim().length > 0);
const listItems = items.map(item => `<li>${Handlebars.escapeExpression(item.trim())}</li>`).join('');
return new Handlebars.SafeString(`<ul>${listItems}</ul>`);
});
// βββ HTML Builder βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
function normalizeResumeData(resumeData) {
const normalized = { ...resumeData };
// Ensure all array fields are real arrays (they might come as null or strings)
const arrayFields = ['experience', 'education', 'skills', 'certifications', 'projects', 'languages', 'awards', 'customSections', 'references'];
for (const field of arrayFields) {
if (!Array.isArray(normalized[field])) {
if (typeof normalized[field] === 'string' && normalized[field].trim()) {
try { normalized[field] = JSON.parse(normalized[field]); } catch { normalized[field] = []; }
} else {
normalized[field] = [];
}
}
}
// Filter out completely empty objects from list sections
const listFields = ['experience', 'education', 'certifications', 'projects', 'languages', 'awards', 'references'];
for (const field of listFields) {
normalized[field] = normalized[field].filter(item =>
item && typeof item === 'object' && Object.values(item).some(v => v !== '' && v !== null && v !== undefined)
);
}
// Ensure skills is an array of non-empty strings
if (Array.isArray(normalized.skills)) {
normalized.skills = normalized.skills.filter(s => typeof s === 'string' && s.trim());
}
// Normalize education aliases
if (Array.isArray(normalized.education)) {
normalized.education = normalized.education.map((item) => ({
...item,
institution: item.institution || item.school || '',
endDate: item.endDate || item.year || '',
}));
}
// Ensure contact is an object
if (!normalized.contact || typeof normalized.contact !== 'object') {
normalized.contact = {};
}
return normalized;
}
function mmToPx(mm) {
return Math.round((mm / 25.4) * 96);
}
function buildHtml(resumeData, design, templateHtml, templateCss) {
const normalizedResume = normalizeResumeData(resumeData);
const {
primaryColor = '#2563EB',
secondaryColor = '#1e293b',
fontFamily = 'Inter, sans-serif',
fontSize = 11,
lineHeight = 1.5,
margins = { top: 10, right: 12.7, bottom: 10, left: 12.7 },
} = design || {};
const mTop = mmToPx(margins.top ?? 10);
const mRight = mmToPx(margins.right ?? 12.7);
const mBottom = mmToPx(margins.bottom ?? 10);
const mLeft = mmToPx(margins.left ?? 12.7);
const cssVars = `
:root {
--primary: ${primaryColor};
--secondary: ${secondaryColor};
--font-family: ${fontFamily};
--font-size: ${fontSize}pt;
--line-height: ${lineHeight};
--margin-top: ${mTop}px;
--margin-right: ${mRight}px;
--margin-bottom: ${mBottom}px;
--margin-left: ${mLeft}px;
}
`;
const baseStyles = `
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&family=Merriweather:wght@300;400;700&family=Playfair+Display:wght@400;500;700&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');
body {
font-family: var(--font-family) !important;
font-size: var(--font-size) !important;
line-height: var(--line-height) !important;
color: #1e293b;
margin: 0 !important;
padding: 0 !important;
-webkit-print-color-adjust: exact;
}
@media screen {
html, body {
background-color: #cbd5e1 !important;
margin: 0 !important;
padding: 0 !important;
overflow-y: auto !important;
overflow-x: hidden !important;
width: 100% !important;
}
#preview-content {
display: flex;
flex-direction: column;
align-items: center;
gap: 24px;
padding: 24px 0;
width: 100%;
box-sizing: border-box;
background: #cbd5e1;
}
.page {
background: #fff;
box-shadow: 0 8px 32px rgba(0,0,0,0.22), 0 2px 8px rgba(0,0,0,0.10);
border-radius: 2px;
flex-shrink: 0;
}
}
@media print {
html, body {
background: #fff !important;
overflow: visible !important;
padding: 0 !important;
margin: 0 !important;
display: block !important;
}
#preview-content {
display: block !important;
padding: 0 !important;
gap: 0 !important;
}
.page {
box-shadow: none !important;
border-radius: 0 !important;
margin: 0 !important;
page-break-inside: avoid;
break-inside: avoid;
}
.page:not(:last-child) {
page-break-after: always !important;
break-after: page !important;
}
.page:last-child {
page-break-after: avoid !important;
break-after: avoid !important;
}
}
.page {
width: 794px;
height: 1123px;
overflow: hidden;
position: relative;
}
.page-inner {
padding: ${mTop}px ${mRight}px ${mBottom}px ${mLeft}px !important;
box-sizing: border-box;
height: 100%;
}
.bleed-header {
margin-top: -${mTop}px !important;
margin-right: -${mRight}px !important;
margin-left: -${mLeft}px !important;
}
section, .item, .section {
page-break-inside: avoid;
break-inside: avoid;
}
h1, h2, h3, h4, h5, h6 { line-height: 1.25 !important; }
h2 { margin-top: 6pt; margin-bottom: 4pt; }
p, li { margin-bottom: 2pt; }
a { color: var(--primary); text-decoration: none; }
ul { padding-left: 1.2em; }
li { margin-bottom: 2px; }
/* Kill any extra top margin/padding on the very first element inside the page so
templates don't double-stack spacing on top of page-inner's own padding. */
.page-inner > *:first-child {
margin-top: 0 !important;
padding-top: 0 !important;
}
/* Exception: bleed-header is intentional and should NOT have this override */
.page-inner > .bleed-header:first-child {
padding-top: 0 !important;
margin-top: -${mTop}px !important;
}
`;
const compiled = Handlebars.compile(templateHtml);
const body = compiled({ ...normalizedResume, design });
let compiledCss = templateCss || '';
if (templateCss) {
try {
const compileCss = Handlebars.compile(templateCss);
compiledCss = compileCss({ ...normalizedResume, design });
} catch (err) {
console.error('Error compiling template CSS:', err);
}
}
return `<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Resume</title>
<style>${cssVars}${baseStyles}${compiledCss}</style>
</head>
<body>
<div id="preview-content">
<div class="page" id="original-page">
<div class="page-inner">
${body}
</div>
</div>
</div>
<script>
let originalHtml = null;
function paginate() {
const container = document.getElementById('preview-content');
if (!container) return;
// ββ 1. Capture original HTML once ββββββββββββββββββββββββββββββββββββββββ
let originalPage = document.getElementById('original-page');
if (!originalHtml && originalPage) {
originalHtml = originalPage.innerHTML;
}
if (!originalPage && originalHtml) {
container.innerHTML = '<div class="page" id="original-page">' + originalHtml + '</div>';
originalPage = document.getElementById('original-page');
}
if (!originalPage) return;
const pageInner = originalPage.querySelector('.page-inner');
if (!pageInner) return;
const A4_H = 1123;
const A4_W = 794;
// ββ 2. Measure true content height βββββββββββββββββββββββββββββββββββββββ
originalPage.style.height = 'auto';
originalPage.style.overflow = 'visible';
pageInner.style.height = 'auto';
pageInner.style.overflow = 'visible';
const templateRoot = pageInner.firstElementChild;
const totalH = templateRoot
? templateRoot.offsetHeight || templateRoot.scrollHeight
: pageInner.scrollHeight;
// Save top/bottom padding from page-inner
const computedStyles = window.getComputedStyle(pageInner);
const savedPaddingTop = computedStyles.paddingTop;
const savedPaddingBottom = computedStyles.paddingBottom;
const padTop = parseFloat(savedPaddingTop) || 0;
const padBot = parseFloat(savedPaddingBottom) || 0;
// Remove top/bottom padding during measurement so element bounding rects
// are relative to the content area top (not shifted by padding).
pageInner.style.setProperty('padding-top', '0px', 'important');
pageInner.style.setProperty('padding-bottom', '0px', 'important');
// USABLE_H = the pixel height of one A4 page minus top & bottom margin
const USABLE_H = A4_H - padTop - padBot;
// Find atomic layout elements (leaves of the DOM tree)
const allElements = Array.from(pageInner.querySelectorAll('h1, h2, h3, h4, h5, h6, p, li, tr, td, th, .skill-item, .skill-tag, img, svg, div, span, strong'));
const elements = allElements.filter(el => {
const hasBlockChildren = el.querySelector('p, div, section, ul, ol, h1, h2, h3, h4, h5, h6, tr, table');
return !hasBlockChildren;
});
const pageInnerRect = pageInner.getBoundingClientRect();
const scale = pageInnerRect.width / (pageInner.offsetWidth || 794) || 1;
const relativeRects = elements.map(el => {
const r = el.getBoundingClientRect();
const top = (r.top - pageInnerRect.top) / scale;
const bottom = (r.bottom - pageInnerRect.top) / scale;
const height = r.height / scale;
return { top, bottom, height, el };
});
// ββ 3. Calculate page break offsets (in content-coordinate space) βββββββββ
// All offsets are in the "no-padding" coordinate space of pageInner.
const offsets = [0];
let currentOffset = 0;
while (currentOffset < totalH - 5) {
let idealEnd = currentOffset + USABLE_H;
if (idealEnd >= totalH) break;
let adjustedEnd = idealEnd;
// Find elements that are sliced by idealEnd
const cutItems = relativeRects.filter(
item => item.top + 2 < idealEnd && item.bottom - 2 > idealEnd
);
if (cutItems.length > 0) {
let candidateBreaks = [];
for (const item of cutItems) {
if (item.height <= USABLE_H && item.top > currentOffset + 30) {
let breakAt = item.top;
// Try breaking before the parent wrapper for a cleaner split
const parent = item.el.parentElement;
if (parent && parent !== pageInner) {
const pr = parent.getBoundingClientRect();
const pTop = (pr.top - pageInnerRect.top) / scale;
if (pTop > currentOffset + 30 && pTop < breakAt && (idealEnd - pTop) < 300) {
breakAt = pTop;
}
}
candidateBreaks.push(breakAt);
}
}
if (candidateBreaks.length > 0) {
const minBreak = Math.min(...candidateBreaks);
if (minBreak > currentOffset + 30) adjustedEnd = minBreak;
}
}
// Heading keep-with-next: don't orphan a heading at the very bottom
for (const item of relativeRects) {
const isHeading = ['H1','H2','H3','H4','H5','H6'].includes(item.el.tagName)
|| (item.el.classList && item.el.classList.contains('section-title'));
if (isHeading && item.bottom <= adjustedEnd && (adjustedEnd - item.bottom) < 60) {
if (item.top > currentOffset + 30) adjustedEnd = item.top;
}
}
// Safety: guarantee forward progress
if (adjustedEnd <= currentOffset + 30) adjustedEnd = idealEnd;
offsets.push(adjustedEnd);
currentOffset = adjustedEnd;
}
// ββ 4. Render Pages ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// Key coordinate model:
//
// Page 1 clone: top=0, padding-top restored β content starts at padTop px
// The break point (offsets[1]) is in content-coordinates.
// In rendered coordinates the break sits at padTop + offsets[1].
// viewport height must be padTop + offsets[1] to show everything.
//
// Page N clone: top = -(offsets[i]) px, padding-top = 0
// Content for this page starts at content-coord offsets[i].
// After the shift, that maps to rendered coord 0 inside the clone.
// Viewport top = padTop (margin), height = rawVisibleH (content slice).
// The outer page div (overflow:hidden, height:A4_H) clips the rest.
container.innerHTML = '';
for (let i = 0; i < offsets.length; i++) {
const startY = offsets[i];
const isLastPage = (i + 1 >= offsets.length);
const endY = isLastPage ? totalH : offsets[i + 1];
const rawVisibleH = Math.ceil(endY - startY); // height of content slice in px
// ββ Outer A4 page shell ββ
const pageDiv = document.createElement('div');
pageDiv.className = 'page';
pageDiv.style.width = A4_W + 'px';
pageDiv.style.height = A4_H + 'px';
pageDiv.style.position = 'relative';
pageDiv.style.overflow = 'hidden'; // β this is the final clip boundary
pageDiv.style.backgroundColor = '#ffffff';
pageDiv.style.flexShrink = '0';
// ββ Viewport strip (clips to the content slice for this page) ββ
const viewport = document.createElement('div');
viewport.className = 'page-viewport';
viewport.style.position = 'absolute';
viewport.style.left = '0';
viewport.style.width = '100%';
viewport.style.overflow = 'hidden';
// ββ Clone of page-inner with content shifted to show this slice ββ
const clone = document.createElement('div');
clone.innerHTML = pageInner.innerHTML;
clone.className = pageInner.className;
clone.setAttribute('style', pageInner.getAttribute('style') || '');
clone.style.position = 'absolute';
clone.style.left = '0';
clone.style.width = '100%';
clone.style.height = 'auto';
clone.style.overflow = 'visible';
if (i === 0) {
// Page 1:
// β’ Clone starts at top:0 with padding restored.
// Content area begins at padTop px inside the clone.
// β’ Break point in rendered coords = padTop + rawVisibleH
// β’ Viewport height = padTop + rawVisibleH (+ padBot if only page)
// capped at A4_H so it never exceeds the page shell.
const vpH = Math.min(padTop + rawVisibleH + (isLastPage ? padBot : 0), A4_H);
viewport.style.top = '0px';
viewport.style.height = vpH + 'px';
clone.style.top = '0px';
clone.style.setProperty('padding-top', savedPaddingTop, 'important');
clone.style.setProperty('padding-bottom', savedPaddingBottom, 'important');
} else {
// Pages 2+:
// β’ Clone is shifted up by startY so the right content lands at top:0.
// β’ We add back padTop as the viewport's top offset (page margin).
// β’ Viewport height = rawVisibleH (content slice) + padBot on last page,
// capped at USABLE_H so nothing overflows the page shell below.
const vpH = Math.min(rawVisibleH + (isLastPage ? padBot : 0), USABLE_H);
viewport.style.top = padTop + 'px';
viewport.style.height = vpH + 'px';
clone.style.top = '-' + startY + 'px';
clone.style.setProperty('padding-top', '0px', 'important');
clone.style.setProperty('padding-bottom', savedPaddingBottom, 'important');
}
viewport.appendChild(clone);
pageDiv.appendChild(viewport);
container.appendChild(pageDiv);
}
}
// Guard: only allow one paginate run at a time
let paginatePending = false;
const runPaginate = () => {
if (paginatePending) return;
paginatePending = true;
const doRun = () => {
paginate();
paginatePending = false;
};
if (document.fonts) {
document.fonts.ready.then(doRun);
} else {
setTimeout(doRun, 150);
}
};
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', runPaginate);
} else {
runPaginate();
}
// Do NOT re-run on window.load β fonts.ready is sufficient and prevents double-pagination
window.addEventListener('resize', () => { originalHtml = null; paginate(); });
</script>
</body>
</html>`;
}
function generatePreviewHtml(resumeData, design, templateHtml, templateCss) {
return buildHtml(resumeData, design, templateHtml, templateCss);
}
module.exports = { generatePreviewHtml, buildHtml, normalizeResumeData };
|