A4 print-sheet preview#22
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implements #6 — a live A4 sheet preview showing the polaroids laid out as they'll print.
lib/layout.ts(A4 in mm, polaroid ratios, gridsheetLayout(perRow)) — the single source of truth the PDF export (sRGB PDF export (pdf-lib) #8) will also use, so preview and PDF stay in sync.SheetPolaroidrenders proportionally to its cell (frame/image/captions scale together).ResizeObserver, dashed printable-margin guide, honours the selected caption font.Decision: DOM instead of Konva
The issue suggested Konva, but I went DOM/CSS: it reuses the proven polaroid rendering (captions + bundled fonts + images just work — no canvas font-loading pitfalls), it's print-accurate, and the layout is a structured grid that never needs a freeform canvas. Drag-reorder (#10) will use DOM dnd. Lower risk and easier to keep pixel-matched to the PDF.
pnpm lint/typecheck/buildgreen. (Visual check pending — browser profile was locked by an active session; the shared layout gets validated headlessly via the #8 PDF render.)Closes #6