Files
silo-server/web/vendor/foliate-js/fixed-layout.js
8b70357703 feat(ebooks): first-class ebook libraries, scanner, and reader (#124)
* docs: define ebook architecture matching audiobooks

* docs: plan ebook audiobook-parity implementation

* feat: add ebook scanner parser foundation

* fix: harden ebook scanner foundation

* fix: handle ebook isbn labels

* fix: guard ebook subtree scans

* feat: scan ebook libraries in core

* fix: preserve ebook scan people credits

* fix: refresh ebook scan metadata safely

* feat: persist ebook series membership

* test: cover ebook series persistence decisions

* fix: address ebook scanner PR review

* docs: clarify ebook foundation PR scope

* feat: add ebook metadata enricher

* fix: harden ebook poster cache

* feat: wire ebook metadata sync task

* feat: expose ebook library metadata setup

* feat: add ebook catalog scope support

* feat: add ebook detail view

* feat: label ebook file versions by format

* feat: use file-size copy for downloads

* feat: use file language in download dialog

* test: cover ebook detail authors and downloads

* fix: drop narrator credits from ebook scanner merges

* fix: align ebook collection filters with book media

* fix: drop asin provider ids from ebook enrichment

* fix: force ebook people refresh for stale narrators

* chore: omit ebook planning docs from branch

* feat: add ebook detail related content

* feat: add ebook reader file entrypoint

* feat: render ebooks with foliate reader

* feat: persist ebook reader progress

* feat: add ebook reader controls

* feat: extract ebook pdf metadata

* feat: favor scanner isbn during ebook enrichment

* feat: extract fbz ebook metadata

* feat: count cbz ebook pages

* feat: show ebook file page counts

* feat: show ebook download summaries

* feat: switch ebook reader files

* feat: prefer epub for ebook read action

* feat: surface ebook reader progress

* feat: sync ebook reader progress cache

* feat: hide ebook read action for unsupported files

* feat: filter ebook reader file selector

* fix: serve fbz ebook archives with reader mime type

* fix: detect fbz ebooks from compound filename

* fix: authorize fbz ebooks from compound filename

* fix: scope ebook catalog facets

* fix: reject narrator queries for ebooks

* fix: build ebook recommendation text from authors

* fix: include ebooks in embedding eligibility

* fix: include ebooks in recommendation media mix

* fix: include ebooks in recently added recommendations

* feat: include ebook progress in recommendation signals

* feat: include ebooks in continue watching sections

* feat: include ebooks in catalog progress metrics

* fix: read ebook isbn from epub metadata

* fix: filter ebook asin provider aliases

* fix: fall back from unsupported ebook reader files

* fix: sort ebook catalogs by reader progress

* fix: filter ebook catalogs by reader progress

* fix: include ebooks in last watched catalog filters

* feat: reflect ebook reader progress in item user state

* feat: share ebook progress state across item surfaces

* feat: report ebook scan progress

* fix: include ebook activity in recommendations

* fix: expose ebook reader progress on item detail

* fix: support ebook subtree scans

* fix: honor profile header for ebook item progress

* fix: add ebook library default sections

* fix: route ebook continue cards to reader

* fix: hide watched toggle for ebooks

* fix: route ebook watch tonight cards to reader

* fix: route ebook hero actions to reader

* fix: detect archive ebook reader formats by filename

* feat: cache embedded ebook covers during scan

* fix: encode ebook hero reader links

* fix: persist non-epub ebook reader progress

* fix: scope narrator catalog badges to audiobooks

* fix: merge ebook reader progress during item repair

* fix: label ebook progress filters as read

* fix: show ebook related rails as book covers

* fix: remove txt ebook reader support

* fix: reject txt ebook reader files

* fix: label ebook advanced filters as read

* fix: label ebook personalized sorts as read

* fix: remove plain text reader loader path

* test: cover ebook unread catalog rules

* fix: preserve ebook reader library context

* fix: link ebook genres with library scope

* fix: encode related rail item links

* fix: encode catalog card item links

* fix: encode hero and continue item links

* fix: encode watch tonight item links

* fix: encode recommendation and search item links

* test: cover ebook scan format set

* fix: label ebook search results clearly

* fix: make global search prompt media neutral

* fix: encode catalog read API ids

* fix: encode item API ids

* fix: include ebook reader vendor in docker build

* fix: make ebook reader build clean

* fix: clean ebook embedded descriptions

* docs: plan ebook reader shell parity

* feat: add ebook reader shell controls

* fix: widen ebook scrolled reader flow

* fix: remove scrolled reader content width cap

* docs: plan ebook reader full parity

* feat: persist ebook reader config

* feat: add ebook annotations and bookmarks

* feat: add ebook reader tools and aids

* feat: add ebook advanced reader settings

* fix: keep ebook reader panel in viewport

* fix: use foliate sizing units for ebook scroll flow

* fix: keep ebook settings controls readable

* fix: simplify ebook reader settings controls

* feat(ebooks): extract local covers during scan (#98)

* feat(ebooks): extract local covers during scan

* fix(ebooks): read nullable poster paths during cover scan

* fix(catalog): coalesce nullable media artwork fields

* fix(ebooks): group sibling formats by book identity

* fix(ebooks): tolerate legacy ebook metadata encodings

* fix(ebooks): decode PDF hex metadata strings

* fix(ebooks): harden local cover extraction and format grouping

Address review findings on the local cover scan:

- Restrict generic sidecar covers (cover.jpg, folder.png, ...) to
  single-book directories, always accept images named after the book
  file, and apply exactly one cover per reconcile with sidecar taking
  precedence over the embedded cover.
- Replace the read-then-write poster update with an atomic conditional
  UPDATE (ItemRepository.SetLocalPoster) so provider/admin artwork is
  never clobbered by concurrent writers, and refresh locally owned
  posters when the extracted cover bytes change (thumbhash compare).
- Preserve UTF-8 PDF Info strings (including a UTF-8 BOM) instead of
  forcing everything through Windows-1252; the cp1252 fallback now only
  applies to non-UTF-8 bytes.
- Select EPUB covers by manifest media-type with properties="cover-image"
  outranking the EPUB2 meta name="cover" id, so XHTML cover pages no
  longer shadow the real image.
- Order CBZ pages naturally (2.jpg before 10.jpg, ch2/ before ch10/)
  when picking the cover page, via a single O(n) min-scan.
- Bump the ebook content group key scheme to version 2 and reprocess
  rows written under older versions so pre-existing libraries gain
  sibling-format grouping instead of accumulating duplicates.
- Group different formats only (a same-format sibling with colliding
  sparse metadata stays a separate item) and stop a joining sibling's
  embedded metadata from overwriting a provider-matched item.
- Decode any IANA-labelled OPF/FB2 XML charset (windows-1251, koi8-r,
  shift_jis, ...) via x/net/html/charset, and wire the charset reader
  into FB2 parsing which previously had none.
- Strip the full .fb2.zip double extension from filename-derived titles
  and group keys.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

---------

Co-authored-by: rxwatcher <rxwatcher@users.noreply.github.com>
Co-authored-by: Quick <31828688+Quick104@users.noreply.github.com>
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>

* feat(ebooks): add reader profiles and ruler (#99)

* feat(ebooks): extract local covers during scan

* fix(ebooks): read nullable poster paths during cover scan

* fix(catalog): coalesce nullable media artwork fields

* fix(ebooks): group sibling formats by book identity

* fix(ebooks): tolerate legacy ebook metadata encodings

* fix(ebooks): decode PDF hex metadata strings

* feat(ebooks): add reader profiles and ruler

* fix(ebooks): address reader ruler and profile review findings

- skip renderer setStyles/render when computed styles and attributes are
  unchanged, so ruler position updates no longer re-style the book view
- drag the ruler via a local draft that commits on release, with the
  surface rect cached at pointer-down
- migrate font values persisted before the generic stacks (Inter,
  Georgia, Merriweather, legacy serif) so the font select never renders
  blank, with a Custom fallback option for unknown values
- make the ruler band click-through and move dragging to a dedicated
  keyboard-accessible slider handle so links and text selection keep
  working under the band
- share font stacks between options and profiles via READER_FONT_STACKS
- surface the active reading profile, move presets to the top of the
  settings panel, and drop the redundant profile button aria-labels

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* fix(ebooks): resolve prefer-const lint error in readest document lib

`pnpm run lint` failed on the branch because `direction` is never
reassigned in getDirection; split the destructure so only the
reassigned `writingMode` stays mutable.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

---------

Co-authored-by: rxwatcher <rxwatcher@users.noreply.github.com>
Co-authored-by: Quick <31828688+Quick104@users.noreply.github.com>
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>

* Merge branch 'main' into work/ebooks-reader-base

Brings the ebook integration branch up to date with main (audiobook
library redesign, continue-watching rework and card affordances,
quic-go bump, jellycompat fixes). Conflict resolutions favor main's
generalized mechanisms and register ebooks with them:

- media scope validation goes through IsValidMediaScope (now including
  "ebook" alongside main's "video" group scope), in Go and in the web
  filter/search types
- continue-watching uses main's typed rails; reading-type sections pull
  resume points from ebook_reader_progress and the ebook library default
  section is wired to ContinueTypeConfig(ContinueTypeReading)
- item_repo keeps main's derived select-list machinery (itemColumnExpr)
  and both poster accessors (GetPoster/SetLocalPoster for ebook covers,
  GetPosterPath for audiobook covers)
- web cards/hero/watch-tonight adopt main's buildMediaPlayHref helpers,
  which now route ebooks to /reader/ebook and encode content ids;
  ebook affordances (BookOpen icon, Read verb, percent-read subtitle)
  carry over onto main's reworked components
- LibraryForm ebook support ported into main's refactored
  useLibraryForm/libraryTypes modules

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* fix(docker): copy foliate-js vendor into Dockerfile.dev frontend stage

foliate-js is a file:vendor/foliate-js dependency, so pnpm install needs
the vendor directory before the lockfile install layer. The production
Dockerfile already copies it; the dev image was missed, breaking
make dev-deploy with ENOENT on /app/web/vendor/foliate-js.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* feat(ebooks): render Continue Reading sections as upright poster cards

All-ebook continue sections previously fell through to the horizontal
16:9 wide card; include ebooks in the poster-variant check so book
covers render in their natural 2:3 framing.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* fix(ui): stop related-rail highlight ring clipping on detail pages

Move the current-item ring onto the cover artwork with a themed
ring-offset color (matching the sidebar profile highlight) and give
the scroll container top headroom so the ring is not cut off by
overflow-x-auto. Applies to both ebook and audiobook detail rails.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* fix(scanner): harden ebook scanning against data loss and bad metadata

- Reconcile missing ebook files like video/audio, with real per-root walk
  failure tracking (failed/unmounted roots are excluded from deletion),
  symlinked-root support via the shared logical walker, and the empty-root
  cleanup allowance before any destructive reconciliation.
- Create ebook items as 'pending' so enrichment can promote them to
  'matched' (backfill migration included), and protect matched items from
  re-scan clobbering: title/year skipped, people/series fill-empty only.
- PDF metadata: scan head + tail windows (non-linearized PDFs keep the Info
  dict at the end), require proper key delimiters, head values win.
- Cap plain .fb2 reads like .fbz entries; drop .md as an ebook format.
- gofmt internal/scanner/audiobook.go (pre-existing drift).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* fix(ebooks): make enrichment failures non-terminal with dedicated backoff state

- Provider errors now record a failure (capped retries) instead of stamping
  last_refreshed, which permanently excluded items after transient outages.
- Unconfigured metadata chains and the scan-window membership race skip the
  item without stamping or burning a retry.
- Failure tracking moves to a new ebook_enrichment_state table, decoupling
  it from media_items.refresh_failures (shared with metadata refresh debt).
- Preserve non-author people credits when persisting enrichment results.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* fix(catalog): gate ebook progress on hidden history and centralize threshold

- Apply user_history_hidden_items gating (video semantics) to the ebook
  watched/in-progress filters, progress sort plan, and Continue Reading.
- Continue Reading pages past dismissed items via the shared collector and
  dedupes items across pages (also fixes the video path's latent exposure).
- Centralize the 0.9 finished threshold as models.EbookFinishedProgressThreshold
  with a single SQL-interpolated mirror in catalog.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* fix(recommendations): correct watcher counting and wire ebook taste signals

- itemWatchersQuery dedupes to distinct (watcher, item) rows so one
  binge-watcher can no longer satisfy minWatchers; the eligibility floor
  now counts distinct accounts rather than profiles.
- Hidden-history gating on GetEbookReaderProgressForUser (signal reader).
- Ebook reading produces canonical implicit taste signals (weighted like
  the equivalent movie progress ratio); ebooks join taste-seed candidates.
- Stale GetRecentlyAddedItems doc comment corrected.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* fix(api): harden ebook reader endpoints and serve a Content-Security-Policy

- Serve a CSP on all SPA HTML responses: blob/srcdoc book iframes inherit
  it, so script-src 'self' 'wasm-unsafe-eval' blocks script execution from
  malicious book content (sandbox alone is defeated by the WebKit
  allow-scripts requirement). Threat model documented on the constant.
- X-Content-Type-Options: nosniff on frontend, jellycompat, and ebook file
  responses; MIME resolution can no longer fall through to octet-stream
  for an admitted ebook file.
- Annotation PATCH: presence-aware field semantics (absent keeps, present
  sets/clears), invariant re-validation on the merged row, and an atomic
  SELECT ... FOR UPDATE read-merge-write.
- Request size caps (413) on progress/config/annotation writes;
  Content-Disposition via mime.FormatMediaType; hidden-history gating in
  the shared ebook progress lister; FK-cascade indexes for reader tables.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* feat(api): native read-state endpoints for ebooks

- POST/DELETE /watched/{id} accepts ebook content IDs: mark read upserts
  progress 1.0 preserving the reader's file/location (or picks the
  preferred reader file for never-opened books); mark unread mirrors video
  unwatch semantics and deletes the progress row.
- /history/remove accepts ebooks: hides via user_history_hidden_items
  without touching the reading position (hidden != unread; next reading
  activity resurfaces the book, mirroring video re-watch).
- Access-filter checks match the video branch; shared logic lives in
  ebook_read_state.go. Sort metrics/user-state thresholds use the shared
  constant; profile-header fallback deduplicated.

Clients: response is {type: "ebook", affected_count: 1, played: bool};
the existing watched SSE event fires.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* fix(web): harden the ebook reader UI

- Open-flow race: cancellation checked after every await with full stale-run
  teardown (no wrong-file progress saves, no leaked views/blob URLs);
  book.destroy() on cleanup.
- Progress: monotonic stale-response guard; visibilitychange flush uses the
  refresh-capable client, pagehide uses keepalive; per-book cross-format
  progress documented as deliberate.
- Settings: side effects out of the setState updater; local edits no longer
  clobbered by late server config; pending saves flushed on unmount/pagehide.
- TTS: generation token so Stop actually stops (Chromium/Firefox synthetic
  events); Media Session uninstalled on unmount.
- External book links: http(s) only, opened with noopener,noreferrer.
- apiBlob 512 MiB guard with a user-facing error; fraction bookmarks
  navigable; search-result key collisions fixed; dead e-ink code removed;
  getLibrarySortRelevanceScope deduplicated; md format dropped.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* feat(web): mark read/unread affordances for ebooks

- Item detail gets a Mark Read/Unread button; card menus drop the ebook
  gate and share type-aware labels/toasts (also dedupes audiobook wording).
- Watched-state invalidation includes the reader progress query key so the
  Continue button and percent refresh after toggling.
- Continue Reading dismiss copy for ebooks; dismissal path now URL-encodes
  item IDs (ebook content IDs can contain reserved characters).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* docs: record the PR #124 review and hardening pass

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

---------

Co-authored-by: rxwatcher <rxwatcher@users.noreply.github.com>
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
2026-06-10 08:18:35 -04:00

1296 lines
50 KiB
JavaScript

import 'construct-style-sheets-polyfill'
const parseViewport = str => str
?.split(/[,;\s]/) // NOTE: technically, only the comma is valid
?.filter(x => x)
?.map(x => x.split('=').map(x => x.trim()))
const getViewport = (doc, viewport) => {
// use `viewBox` for SVG
if (doc.documentElement.localName === 'svg') {
const [, , width, height] = doc.documentElement
.getAttribute('viewBox')?.split(/\s/) ?? []
return { width, height }
}
// get `viewport` `meta` element
const meta = parseViewport(doc.querySelector('meta[name="viewport"]')
?.getAttribute('content'))
if (meta) return Object.fromEntries(meta)
// fallback to book's viewport
if (typeof viewport === 'string') return parseViewport(viewport)
if (viewport?.width && viewport.height) return viewport
// if no viewport (possibly with image directly in spine), get image size
const img = doc.querySelector('img')
if (img) return { width: img.naturalWidth, height: img.naturalHeight }
// just show *something*, i guess...
console.warn(new Error('Missing viewport properties'))
return { width: 1000, height: 2000 }
}
const clamp = (value, min, max) => Math.min(max, Math.max(min, value))
export const captureScrollModeAnchor = (pages, scrollTop, fallbackIndex = -1) => {
const fallbackPage = pages.find(page => page.index === fallbackIndex)
const currentPage = pages.find(page =>
page.height > 0
&& scrollTop >= page.top
&& scrollTop < page.top + page.height)
?? fallbackPage
?? pages.find(page => page.height > 0)
if (!currentPage) return null
return {
index: currentPage.index,
fraction: currentPage.height > 0
? clamp((scrollTop - currentPage.top) / currentPage.height, 0, 1)
: 0,
scrollTop,
}
}
export const restoreScrollModeAnchor = (pages, anchor, maxScrollTop) => {
if (!anchor) return 0
const page = pages.find(candidate => candidate.index === anchor.index)
if (!page || page.height <= 0) return clamp(anchor.scrollTop, 0, maxScrollTop)
return clamp(page.top + page.height * anchor.fraction, 0, maxScrollTop)
}
export class FixedLayout extends HTMLElement {
static observedAttributes = ['zoom', 'scale-factor', 'spread', 'flow']
#root = this.attachShadow({ mode: 'open' })
#observer = new ResizeObserver(() => this.#render())
#spreads
#index = -1
defaultViewport
spread
#portrait = false
#left
#right
#center
#side
#zoom
#scaleFactor = 1.0
#totalScaleFactor = 1.0
#scrollLocked = false
#isOverflowX = false
#isOverflowY = false
#preloadCache = new Map()
#prerenderedSpreads = new Map()
#spreadAccessTime = new Map()
#maxConcurrentPreloads = 1
#numPrerenderedSpreads = 1
#maxCachedSpreads = 2
#overlayers = new Map()
#pageColors = {}
#preloadQueue = []
#activePreloads = 0
// Scroll mode fields
#scrollMode = false
#scrollPages = []
#scrollObserver = null
#scrollContainer = null
#scrollLoadGen = new Map()
#scrollMaxLoaded = 8
#scrollIdleTimer = null
#scrollCurrentIndex = -1
#getScrollModePageMetrics() {
return this.#scrollPages.map(page => ({
index: page.index,
top: page.el.offsetTop,
height: page.el.offsetHeight,
}))
}
#captureScrollModeAnchor() {
if (!this.#scrollPages.length) return null
const fallbackIndex = this.#scrollCurrentIndex >= 0
? this.#scrollCurrentIndex : this.#getScrollIndex()
return captureScrollModeAnchor(
this.#getScrollModePageMetrics(),
this.scrollTop,
fallbackIndex,
)
}
#restoreScrollModeAnchor(anchor) {
if (!anchor || !this.#scrollPages.length) return
const maxScrollTop = Math.max(0, this.scrollHeight - this.clientHeight)
this.scrollTop = restoreScrollModeAnchor(
this.#getScrollModePageMetrics(),
anchor,
maxScrollTop,
)
this.#scrollCurrentIndex = anchor.index
}
constructor() {
super()
const sheet = new CSSStyleSheet()
this.#root.adoptedStyleSheets = [sheet]
sheet.replaceSync(`:host {
width: 100%;
height: 100%;
display: flex;
justify-content: flex-start;
align-items: center;
overflow: auto;
}
@supports (justify-content: safe center) {
:host {
justify-content: safe center;
}
}
:host([flow="scrolled"]) {
display: block;
overflow-y: auto;
overflow-x: hidden;
}
:host([flow="scrolled"]) .scroll-container {
display: flex;
flex-direction: column;
align-items: center;
min-height: 100%;
background-color: var(--scroll-bg-color);
background-opacity: var(--scroll-bg-opacity);
}
:host([flow="scrolled"]) .scroll-page {
position: relative;
flex-shrink: 0;
overflow: hidden;
margin: 4px 0;
}
:host([flow="scrolled"]) .scroll-page iframe {
pointer-events: none;
}`)
this.#observer.observe(this)
}
attributeChangedCallback(name, _, value) {
switch (name) {
case 'zoom':
this.#zoom = value !== 'fit-width' && value !== 'fit-page'
? parseFloat(value) : value
this.#render()
break
case 'scale-factor':
this.#scaleFactor = parseFloat(value) / 100
this.#render()
break
case 'spread':
this.#respread(value)
break
case 'flow':
if (value === 'scrolled' && !this.#scrollMode) {
// Capture index from paginated mode BEFORE setting scroll flag
const savedIndex = this.index
this.#scrollMode = true
if (this.book) this.#initScrollMode(savedIndex)
} else if (value !== 'scrolled' && this.#scrollMode) {
this.#destroyScrollMode()
this.#scrollMode = false
this.#render()
}
break
}
}
async #createFrame({ index, src: srcOption, detached = false }) {
const srcOptionIsString = typeof srcOption === 'string'
const src = srcOptionIsString ? srcOption : srcOption?.src
const data = srcOptionIsString ? null : srcOption?.data
const onZoom = srcOptionIsString ? null : srcOption?.onZoom
const element = document.createElement('div')
element.setAttribute('dir', 'ltr')
element.style.position = 'relative'
const iframe = document.createElement('iframe')
element.append(iframe)
Object.assign(iframe.style, {
border: '0',
display: 'none',
overflow: 'hidden',
})
// `allow-scripts` is needed for events because of WebKit bug
// https://bugs.webkit.org/show_bug.cgi?id=218086
iframe.setAttribute('sandbox', 'allow-same-origin allow-scripts')
iframe.setAttribute('scrolling', 'no')
iframe.setAttribute('part', 'filter')
this.#root.append(element)
if (detached) {
Object.assign(element.style, {
position: 'absolute',
visibility: 'hidden',
pointerEvents: 'none',
})
}
if (!src) return { blank: true, element, iframe }
return new Promise(resolve => {
iframe.addEventListener('load', () => {
const doc = iframe.contentDocument
iframe.dataset.sectionIndex = index
this.dispatchEvent(new CustomEvent('load', { detail: { doc, index } }))
const { width, height } = getViewport(doc, this.defaultViewport)
resolve({
element, iframe,
width: parseFloat(width),
height: parseFloat(height),
onZoom,
detached,
})
}, { once: true })
if (data) {
iframe.srcdoc = data
} else {
iframe.src = src
}
})
}
#render(side = this.#side) {
if (this.#scrollMode) {
this.#renderScrollMode()
return []
}
if (!side) return []
const left = this.#left ?? {}
const right = this.#center ?? this.#right ?? {}
const target = side === 'left' ? left : right
const { width, height } = this.getBoundingClientRect()
// for unfolded devices with slightly taller height than width also use landscape layout
const portrait = this.spread !== 'both' && this.spread !== 'portrait'
&& height > width * 1.2
this.#portrait = portrait
const blankWidth = left.width ?? right.width ?? 0
const blankHeight = left.height ?? right.height ?? 0
let scale = typeof this.#zoom === 'number' && !isNaN(this.#zoom)
? this.#zoom
: (this.#zoom === 'fit-width'
? (portrait || this.#center
? width / (target.width ?? blankWidth)
: width / ((left.width ?? blankWidth) + (right.width ?? blankWidth)))
: (portrait || this.#center
? Math.min(
width / (target.width ?? blankWidth),
height / (target.height ?? blankHeight))
: Math.min(
width / ((left.width ?? blankWidth) + (right.width ?? blankWidth)),
height / Math.max(
left.height ?? blankHeight,
right.height ?? blankHeight)))
) || 1
scale *= this.#scaleFactor
this.#totalScaleFactor = scale
const renderPromises = []
const transform = ({frame, styles}) => {
let { element, iframe, width, height, blank, onZoom } = frame
if (!iframe) return
if (onZoom) {
const p = onZoom({ doc: frame.iframe.contentDocument, scale, pageColors: this.#pageColors })
if (p?.then) {
// onZoom (e.g. pdf.js) may rebuild the text layer DOM,
// invalidating Range objects stored in the overlayer. After
// the rebuild, re-emit create-overlayer so listeners can
// re-anchor annotations against the fresh DOM.
const refreshed = p.then(() => this.#refreshOverlayerForFrame(frame))
renderPromises.push(refreshed)
}
}
const iframeScale = onZoom ? scale : 1
const zoomedOut = this.#scaleFactor < 1.0
Object.assign(iframe.style, {
width: `${width * iframeScale}px`,
height: `${height * iframeScale}px`,
transform: onZoom ? 'none' : `scale(${scale})`,
transformOrigin: 'top left',
display: blank ? 'none' : 'block',
})
Object.assign(element.style, {
width: `${(width ?? blankWidth) * scale}px`,
height: `${(height ?? blankHeight) * scale}px`,
flexShrink: '0',
display: zoomedOut ? 'flex' : 'block',
marginBlock: zoomedOut ? undefined : 'auto',
alignItems: zoomedOut ? 'center' : undefined,
justifyContent: zoomedOut ? 'center' : undefined,
...styles,
})
if (portrait && frame !== target) {
element.style.display = 'none'
}
// position and redraw overlayer to match the scaled iframe
const sectionIndex = iframe.dataset.sectionIndex != null
? parseInt(iframe.dataset.sectionIndex) : undefined
if (sectionIndex != null) {
const overlayer = this.#overlayers.get(sectionIndex)
if (overlayer) {
Object.assign(overlayer.element.style, {
position: 'absolute',
top: '0',
left: '0',
width: `${(width ?? blankWidth) * scale}px`,
height: `${(height ?? blankHeight) * scale}px`,
})
overlayer.redraw()
}
}
const container= element.parentNode?.host
if (!container) return
const containerWidth = container.clientWidth
const containerHeight = container.clientHeight
container.scrollLeft = (element.clientWidth - containerWidth) / 2
return {
width: element.clientWidth,
height: element.clientHeight,
containerWidth,
containerHeight,
}
}
if (this.#center) {
const dimensions = transform({frame: this.#center, styles: { marginInline: 'auto' }})
if (!dimensions) return renderPromises
const {width, height, containerWidth, containerHeight} = dimensions
this.#isOverflowX = width > containerWidth
this.#isOverflowY = height > containerHeight
} else {
const leftDimensions = transform({frame: left, styles: { marginInlineStart: 'auto' }})
const rightDimensions = transform({frame: right, styles: { marginInlineEnd: 'auto' }})
if (!leftDimensions || !rightDimensions) return renderPromises
const {width: leftWidth, height: leftHeight, containerWidth, containerHeight} = leftDimensions
const {width: rightWidth, height: rightHeight} = rightDimensions
this.#isOverflowX = leftWidth + rightWidth > containerWidth
this.#isOverflowY = Math.max(leftHeight, rightHeight) > containerHeight
}
return renderPromises
}
async #showSpread({ left, right, center, side, spreadIndex }) {
this.#left = null
this.#right = null
this.#center = null
const cacheKey = spreadIndex !== undefined ? `spread-${spreadIndex}` : null
const prerendered = cacheKey ? this.#prerenderedSpreads.get(cacheKey) : null
if (prerendered) {
this.#spreadAccessTime.set(cacheKey, Date.now())
if (prerendered.center) {
this.#center = prerendered.center
} else {
this.#left = prerendered.left
this.#right = prerendered.right
}
} else {
if (center) {
this.#center = await this.#createFrame(center)
if (cacheKey) {
this.#prerenderedSpreads.set(cacheKey, { center: this.#center })
this.#spreadAccessTime.set(cacheKey, Date.now())
}
} else {
this.#left = await this.#createFrame(left)
this.#right = await this.#createFrame(right)
if (cacheKey) {
this.#prerenderedSpreads.set(cacheKey, { left: this.#left, right: this.#right })
this.#spreadAccessTime.set(cacheKey, Date.now())
}
}
}
this.#side = center ? 'center' : this.#left?.blank ? 'right'
: this.#right?.blank ? 'left' : side
const visibleFrames = center
? [this.#center?.element]
: [this.#left?.element, this.#right?.element]
Array.from(this.#root.children).forEach(child => {
const isVisible = visibleFrames.includes(child)
Object.assign(child.style, {
position: isVisible ? 'relative' : 'absolute',
visibility: isVisible ? 'visible' : 'hidden',
pointerEvents: isVisible ? 'auto' : 'none',
})
})
// Render layout and await any async onZoom callbacks (e.g. PDF text
// layer rendering) so the document is fully populated before overlayers
// try to resolve CFIs against it.
const renderPromises = this.#render()
if (renderPromises.length) await Promise.all(renderPromises)
const showingFrames = center
? [this.#center]
: [this.#left, this.#right]
for (const frame of showingFrames) {
if (!frame?.iframe) continue
const index = frame.iframe.dataset.sectionIndex != null
? parseInt(frame.iframe.dataset.sectionIndex) : undefined
if (index != null && !this.#overlayers.has(index)) {
const doc = frame.iframe.contentDocument
if (doc) {
this.dispatchEvent(new CustomEvent('create-overlayer', {
detail: {
doc, index,
attach: overlayer => {
this.#overlayers.set(index, overlayer)
frame.element.append(overlayer.element)
},
},
}))
}
}
}
}
#initScrollMode(targetIndex = 0) {
const currentIndex = targetIndex
// Hide all paginated content
for (const child of Array.from(this.#root.children)) {
child.style.display = 'none'
}
this.#scrollContainer = document.createElement('div')
this.#scrollContainer.className = 'scroll-container'
this.#root.append(this.#scrollContainer)
const sections = this.book.sections
const viewport = this.defaultViewport
const vw = viewport?.width ?? 1000
const vh = viewport?.height ?? 1400
this.#scrollPages = sections.map((section, i) => {
const el = document.createElement('div')
el.className = 'scroll-page'
el.dataset.index = i
this.#scrollContainer.append(el)
return { el, index: i, section, state: 'idle', frame: null, vpWidth: vw, vpHeight: vh }
})
this.#renderScrollMode()
// Scroll to target position BEFORE setting up the observer
// so only pages near the target are observed as intersecting
if (currentIndex >= 0 && currentIndex < this.#scrollPages.length) {
this.#scrollPages[currentIndex].el.scrollIntoView()
this.#scrollCurrentIndex = currentIndex
}
this.addEventListener('scroll', this.#handleScrollEvent)
// Set up IntersectionObserver after scroll position is established.
// rootMargin '50%' loads ~1 page buffer above/below the viewport.
this.#scrollObserver = new IntersectionObserver(entries => {
for (const entry of entries) {
if (!entry.isIntersecting) continue
const index = parseInt(entry.target.dataset.index)
const pageData = this.#scrollPages[index]
if (pageData && pageData.state === 'idle') {
this.#loadScrollPage(pageData)
}
}
this.#evictScrollPages()
}, { root: this, rootMargin: '50% 0px' })
for (const page of this.#scrollPages) {
this.#scrollObserver.observe(page.el)
}
}
#handleScrollEvent = () => {
// Disable iframe interaction during scroll for native smooth scrolling
this.#setScrollIframeInteraction(false)
if (this.#scrollIdleTimer) clearTimeout(this.#scrollIdleTimer)
this.#scrollIdleTimer = setTimeout(() => {
this.#setScrollIframeInteraction(true)
// Report location only after scroll settles to avoid
// expensive React re-renders on every frame
this.#reportScrollLocation()
}, 150)
}
#setScrollIframeInteraction(enabled) {
const value = enabled ? 'auto' : ''
for (const page of this.#scrollPages) {
if (page.frame?.iframe) {
page.frame.iframe.style.pointerEvents = value
}
}
}
#destroyScrollMode() {
// Use the cached scroll index because by the time attributeChangedCallback
// fires, the CSS has already switched from block/scroll to flex layout,
// making #getScrollIndex() return incorrect positions
const currentIndex = this.#scrollCurrentIndex >= 0
? this.#scrollCurrentIndex : this.#getScrollIndex()
this.removeEventListener('scroll', this.#handleScrollEvent)
if (this.#scrollObserver) {
this.#scrollObserver.disconnect()
this.#scrollObserver = null
}
if (this.#scrollIdleTimer) {
clearTimeout(this.#scrollIdleTimer)
this.#scrollIdleTimer = null
}
// Clean up all scroll page frames and overlayers
for (const page of this.#scrollPages) {
this.#teardownScrollPage(page)
}
this.#scrollPages = []
this.#scrollLoadGen.clear()
this.#scrollCurrentIndex = -1
if (this.#scrollContainer) {
this.#scrollContainer.remove()
this.#scrollContainer = null
}
// Reset scroll position left over from scroll mode
this.scrollTop = 0
this.scrollLeft = 0
// Restore paginated content
for (const child of Array.from(this.#root.children)) {
child.style.display = ''
}
// Navigate to the page we were on
if (currentIndex >= 0) {
const section = this.book.sections[currentIndex]
if (section) {
const spread = this.getSpreadOf(section)
if (spread) {
this.#index = -1
this.goToSpread(spread.index, spread.side, 'page')
}
}
}
}
// Create an iframe directly inside the page placeholder (no reparenting)
async #createScrollFrame(pageData, srcOption) {
const srcOptionIsString = typeof srcOption === 'string'
const src = srcOptionIsString ? srcOption : srcOption?.src
const data = srcOptionIsString ? null : srcOption?.data
const onZoom = srcOptionIsString ? null : srcOption?.onZoom
const element = document.createElement('div')
element.setAttribute('dir', 'ltr')
element.style.position = 'relative'
const iframe = document.createElement('iframe')
element.append(iframe)
Object.assign(iframe.style, {
border: '0',
display: 'none',
overflow: 'hidden',
})
iframe.setAttribute('sandbox', 'allow-same-origin allow-scripts')
iframe.setAttribute('scrolling', 'no')
iframe.setAttribute('part', 'filter')
// Place directly in the placeholder — no root append + reparent
pageData.el.append(element)
if (!src) return { blank: true, element, iframe }
return new Promise(resolve => {
iframe.addEventListener('load', () => {
const doc = iframe.contentDocument
iframe.dataset.sectionIndex = pageData.index
this.dispatchEvent(new CustomEvent('load', { detail: { doc, index: pageData.index } }))
const { width, height } = getViewport(doc, this.defaultViewport)
resolve({
element, iframe,
width: parseFloat(width),
height: parseFloat(height),
onZoom,
})
}, { once: true })
if (data) {
iframe.srcdoc = data
} else {
iframe.src = src
}
})
}
async #loadScrollPage(pageData) {
if (pageData.state !== 'idle') return
pageData.state = 'loading'
// Generation counter to detect stale loads
const gen = (this.#scrollLoadGen.get(pageData.index) || 0) + 1
this.#scrollLoadGen.set(pageData.index, gen)
try {
const src = await pageData.section.load?.()
// Bail if cancelled or mode changed
if (this.#scrollLoadGen.get(pageData.index) !== gen || !this.#scrollMode) {
pageData.state = 'idle'
return
}
if (!src) { pageData.state = 'idle'; return }
const frame = await this.#createScrollFrame(pageData, src)
// Bail if cancelled during frame creation
if (this.#scrollLoadGen.get(pageData.index) !== gen || !this.#scrollMode) {
frame.element?.remove()
pageData.state = 'idle'
return
}
pageData.frame = frame
pageData.state = 'loaded'
const scrollAnchor = this.#captureScrollModeAnchor()
// Update dimensions from actual page viewport
if (frame.width && frame.height) {
pageData.vpWidth = frame.width
pageData.vpHeight = frame.height
}
this.#renderScrollPage(pageData)
this.#restoreScrollModeAnchor(scrollAnchor)
// Create overlayer
const doc = frame.iframe.contentDocument
if (doc) {
this.dispatchEvent(new CustomEvent('create-overlayer', {
detail: {
doc, index: pageData.index,
attach: overlayer => {
this.#overlayers.set(pageData.index, overlayer)
frame.element.append(overlayer.element)
},
},
}))
// Forward wheel events to host when iframe has pointer-events
// (fallback for the brief window after scroll settles)
doc.addEventListener('wheel', e => {
// Disable pointer-events immediately so subsequent
// wheel ticks use native scroll
this.#setScrollIframeInteraction(false)
this.scrollBy({ top: e.deltaY, left: e.deltaX, behavior: 'instant' })
}, { passive: true })
}
} catch (e) {
console.warn('Failed to load scroll page', pageData.index, e)
pageData.state = 'idle'
}
}
// Remove a loaded scroll page's frame and overlayer
#teardownScrollPage(pageData) {
// Bump generation to cancel any in-progress load
const gen = (this.#scrollLoadGen.get(pageData.index) || 0) + 1
this.#scrollLoadGen.set(pageData.index, gen)
if (pageData.frame) {
const idx = pageData.index
this.#overlayers.delete(idx)
pageData.frame.element?.remove()
}
pageData.frame = null
pageData.state = 'idle'
}
// Evict the farthest loaded pages when over limit
#evictScrollPages() {
const loaded = this.#scrollPages.filter(p => p.state === 'loaded')
if (loaded.length <= this.#scrollMaxLoaded) return
const currentIndex = this.#getScrollIndex()
loaded.sort((a, b) =>
Math.abs(a.index - currentIndex) - Math.abs(b.index - currentIndex))
for (const page of loaded.slice(this.#scrollMaxLoaded)) {
this.#teardownScrollPage(page)
}
}
#renderScrollMode() {
const { width: hostWidth } = this.getBoundingClientRect()
if (!hostWidth) return
const scrollAnchor = this.#captureScrollModeAnchor()
for (const page of this.#scrollPages) {
const scale = (hostWidth / page.vpWidth) * this.#scaleFactor
page.el.style.width = `${page.vpWidth * scale}px`
page.el.style.height = `${page.vpHeight * scale}px`
if (page.state === 'loaded' && page.frame) {
this.#renderScrollPage(page)
}
}
this.#restoreScrollModeAnchor(scrollAnchor)
}
#renderScrollPage(pageData) {
const { width: hostWidth } = this.getBoundingClientRect()
if (!hostWidth || !pageData.frame) return
const { vpWidth: vw, vpHeight: vh, frame } = pageData
const scale = (hostWidth / vw) * this.#scaleFactor
if (frame.onZoom) {
frame.onZoom({ doc: frame.iframe.contentDocument, scale, pageColors: this.#pageColors })
Object.assign(frame.iframe.style, {
width: `${vw * scale}px`,
height: `${vh * scale}px`,
transform: 'none',
display: 'block',
})
} else {
Object.assign(frame.iframe.style, {
width: `${vw}px`,
height: `${vh}px`,
transform: `scale(${scale})`,
transformOrigin: 'top left',
display: 'block',
})
}
Object.assign(frame.element.style, {
width: `${vw * scale}px`,
height: `${vh * scale}px`,
})
// Update placeholder to match actual page dimensions
pageData.el.style.width = `${vw * scale}px`
pageData.el.style.height = `${vh * scale}px`
const overlayer = this.#overlayers.get(pageData.index)
if (overlayer) {
Object.assign(overlayer.element.style, {
position: 'absolute',
top: '0',
left: '0',
width: `${vw * scale}px`,
height: `${vh * scale}px`,
})
overlayer.redraw()
}
}
#getScrollIndex() {
if (!this.#scrollPages.length) return -1
const hostRect = this.getBoundingClientRect()
const midY = hostRect.top + hostRect.height / 2
for (const page of this.#scrollPages) {
const rect = page.el.getBoundingClientRect()
if (rect.top <= midY && rect.bottom >= midY) return page.index
}
let closest = 0, minDist = Infinity
for (const page of this.#scrollPages) {
const rect = page.el.getBoundingClientRect()
const dist = Math.abs(rect.top + rect.height / 2 - midY)
if (dist < minDist) { minDist = dist; closest = page.index }
}
return closest
}
#reportScrollLocation() {
const index = this.#getScrollIndex()
if (index < 0) return
this.#scrollCurrentIndex = index
this.dispatchEvent(new CustomEvent('relocate', { detail:
{ reason: 'scroll', range: null, index, fraction: 0, size: 1 } }))
}
#goLeft() {
if (this.#center || this.#left?.blank) return
if (this.#portrait && this.#left?.element?.style?.display === 'none') {
this.#side = 'left'
this.#render()
this.#reportLocation('page')
return true
}
}
#goRight() {
if (this.#center || this.#right?.blank) return
if (this.#portrait && this.#right?.element?.style?.display === 'none') {
this.#side = 'right'
this.#render()
this.#reportLocation('page')
return true
}
}
open(book) {
this.book = book
this.defaultViewport = book.rendition?.viewport
this.rtl = book.dir === 'rtl'
this.#spread()
if (this.#scrollMode) this.#initScrollMode()
}
#spread(mode) {
const book = this.book
const { rendition } = book
const rtl = this.rtl
const ltr = !rtl
this.spread = mode || rendition?.spread
if (this.spread === 'none')
this.#spreads = book.sections.map(section => ({ center: section }))
else this.#spreads = book.sections.reduce((arr, section, i) => {
const last = arr[arr.length - 1]
const { pageSpread } = section
const newSpread = () => {
const spread = {}
arr.push(spread)
return spread
}
if (pageSpread === 'center') {
const spread = last.left || last.right ? newSpread() : last
spread.center = section
}
else if (pageSpread === 'left') {
const spread = last.center || last.left || ltr && i ? newSpread() : last
spread.left = section
}
else if (pageSpread === 'right') {
const spread = last.center || last.right || rtl && i ? newSpread() : last
spread.right = section
}
else if (ltr) {
if (last.center || last.right) newSpread().left = section
else if (last.left || !i) last.right = section
else last.left = section
}
else {
if (last.center || last.left) newSpread().right = section
else if (last.right || !i) last.left = section
else last.right = section
}
return arr
}, [{}])
}
#respread(spreadMode) {
if (this.#index === -1) return
const section = this.book.sections[this.index]
this.#spread(spreadMode)
const { index } = this.getSpreadOf(section)
this.#index = -1
this.#preloadCache.clear()
for (const frames of this.#prerenderedSpreads.values()) {
if (frames.center) {
frames.center.element?.remove()
} else {
frames.left?.element?.remove()
frames.right?.element?.remove()
}
}
this.#prerenderedSpreads.clear()
this.#spreadAccessTime.clear()
this.#overlayers.clear()
this.goToSpread(index, this.rtl ? 'right' : 'left', 'page')
}
get index() {
if (this.#scrollMode) return this.#scrollCurrentIndex >= 0
? this.#scrollCurrentIndex : this.#getScrollIndex()
if (this.#index < 0 || !this.#spreads) return -1
const spread = this.#spreads[this.#index]
if (!spread) return -1
const section = spread.center ?? (this.#side === 'left'
? spread.left ?? spread.right : spread.right ?? spread.left)
return this.book.sections.indexOf(section)
}
get pageColors() {
return this.#pageColors
}
set pageColors(value) {
this.#pageColors = value
this.#render()
}
get scrolled() {
return this.#scrollMode
}
get scrollLocked() {
return this.#scrollLocked
}
set scrollLocked(value) {
this.#scrollLocked = value
}
get isOverflowX() {
return this.#isOverflowX
}
get isOverflowY() {
return this.#isOverflowY
}
get atStart() {
if (this.#scrollMode) return this.scrollTop <= 0
return this.#index <= 0
}
get atEnd() {
if (this.#scrollMode) return this.scrollTop + this.clientHeight >= this.scrollHeight - 2
return this.#index >= this.#spreads.length - 1
}
#reportLocation(reason) {
this.dispatchEvent(new CustomEvent('relocate', { detail:
{ reason, range: null, index: this.index, fraction: 0, size: 1 } }))
}
getSpreadOf(section) {
const spreads = this.#spreads
for (let index = 0; index < spreads.length; index++) {
const { left, right, center } = spreads[index]
if (left === section) return { index, side: 'left' }
if (right === section) return { index, side: 'right' }
if (center === section) return { index, side: 'center' }
}
}
async goToSpread(index, side, reason) {
if (index < 0 || index > this.#spreads.length - 1) return
if (index === this.#index) {
this.#render(side)
return
}
this.#index = index
const spread = this.#spreads[index]
const cacheKey = `spread-${index}`
const cached = this.#preloadCache.get(cacheKey)
if (cached && cached !== 'loading') {
if (cached.center) {
const sectionIndex = this.book.sections.indexOf(spread.center)
await this.#showSpread({ center: { index: sectionIndex, src: cached.center }, spreadIndex: index, side })
} else {
const indexL = this.book.sections.indexOf(spread.left)
const indexR = this.book.sections.indexOf(spread.right)
const left = { index: indexL, src: cached.left }
const right = { index: indexR, src: cached.right }
await this.#showSpread({ left, right, side, spreadIndex: index })
}
} else {
if (spread.center) {
const sectionIndex = this.book.sections.indexOf(spread.center)
const src = await spread.center?.load?.()
await this.#showSpread({ center: { index: sectionIndex, src }, spreadIndex: index, side })
} else {
const indexL = this.book.sections.indexOf(spread.left)
const indexR = this.book.sections.indexOf(spread.right)
const srcL = await spread.left?.load?.()
const srcR = await spread.right?.load?.()
const left = { index: indexL, src: srcL }
const right = { index: indexR, src: srcR }
await this.#showSpread({ left, right, side, spreadIndex: index })
}
}
this.#reportLocation(reason)
this.#preloadNextSpreads()
}
#preloadNextSpreads() {
this.#cleanupPreloadCache()
if (this.#numPrerenderedSpreads <= 0) return
const toPreload = []
const forwardPreloadCount = Math.max(1, this.#numPrerenderedSpreads - 1)
const backwardPreloadCount = Math.max(0, this.#numPrerenderedSpreads - forwardPreloadCount)
for (let distance = 1; distance <= forwardPreloadCount; distance++) {
const forwardIndex = this.#index + distance
if (forwardIndex >= 0 && forwardIndex < this.#spreads.length) {
toPreload.push({ index: forwardIndex, direction: 'forward', distance })
}
}
for (let distance = 1; distance <= backwardPreloadCount; distance++) {
const backwardIndex = this.#index - distance
if (backwardIndex >= 0 && backwardIndex < this.#spreads.length) {
toPreload.push({ index: backwardIndex, direction: 'backward', distance })
}
}
for (const { index: targetIndex, direction } of toPreload) {
const cacheKey = `spread-${targetIndex}`
if (this.#prerenderedSpreads.has(cacheKey)) continue
const spread = this.#spreads[targetIndex]
if (!spread) continue
this.#preloadQueue.push({ targetIndex, direction, spread, cacheKey })
}
this.#processPreloadQueue()
}
async #processPreloadQueue() {
while (this.#preloadQueue.length > 0 && this.#activePreloads < this.#maxConcurrentPreloads) {
const task = this.#preloadQueue.shift()
if (!task) break
const { spread, cacheKey } = task
this.#preloadCache.set(cacheKey, 'loading')
this.#activePreloads++
Promise.resolve().then(async () => {
try {
if (spread.center) {
const src = await spread.center?.load?.()
this.#preloadCache.set(cacheKey, { center: src })
const sectionIndex = this.book.sections.indexOf(spread.center)
const frame = await this.#createFrame({ index: sectionIndex, src, detached: true })
this.#prerenderedSpreads.set(cacheKey, { center: frame })
this.#spreadAccessTime.set(cacheKey, Date.now())
if (frame.onZoom) {
const doc = frame.iframe.contentDocument
frame.onZoom({ doc, scale: this.#totalScaleFactor, pageColors: this.#pageColors })
}
} else {
const srcL = await spread.left?.load?.()
const srcR = await spread.right?.load?.()
this.#preloadCache.set(cacheKey, { left: srcL, right: srcR })
const indexL = this.book.sections.indexOf(spread.left)
const indexR = this.book.sections.indexOf(spread.right)
const leftFrame = await this.#createFrame({ index: indexL, src: srcL, detached: true })
const rightFrame = await this.#createFrame({ index: indexR, src: srcR, detached: true })
this.#prerenderedSpreads.set(cacheKey, { left: leftFrame, right: rightFrame })
this.#spreadAccessTime.set(cacheKey, Date.now())
if (leftFrame.onZoom) {
const docL = leftFrame.iframe.contentDocument
leftFrame.onZoom({ doc: docL, scale: this.#totalScaleFactor, pageColors: this.#pageColors })
}
if (rightFrame.onZoom) {
const docR = rightFrame.iframe.contentDocument
rightFrame.onZoom({ doc: docR, scale: this.#totalScaleFactor, pageColors: this.#pageColors })
}
}
} catch {
this.#preloadCache.delete(cacheKey)
this.#prerenderedSpreads.delete(cacheKey)
} finally {
this.#activePreloads--
this.#processPreloadQueue()
}
})
}
}
#cleanupPreloadCache() {
const maxSpreads = this.#maxCachedSpreads
if (this.#prerenderedSpreads.size <= maxSpreads) {
return
}
const framesByAge = Array.from(this.#prerenderedSpreads.keys())
.map(key => ({
key,
accessTime: this.#spreadAccessTime.get(key) || 0,
}))
.sort((a, b) => a.accessTime - b.accessTime)
const numToRemove = this.#prerenderedSpreads.size - maxSpreads
const framesToDelete = framesByAge.slice(0, numToRemove).map(item => item.key)
if (framesToDelete.length > 0) {
framesToDelete.forEach(key => {
const frames = this.#prerenderedSpreads.get(key)
if (frames) {
if (frames.center) {
this.#removeOverlayerForFrame(frames.center)
frames.center.element?.remove()
} else {
this.#removeOverlayerForFrame(frames.left)
this.#removeOverlayerForFrame(frames.right)
frames.left?.element?.remove()
frames.right?.element?.remove()
}
}
this.#prerenderedSpreads.delete(key)
this.#spreadAccessTime.delete(key)
this.#preloadCache.delete(key)
})
}
}
#removeOverlayerForFrame(frame) {
if (!frame?.iframe) return
const idx = frame.iframe.dataset.sectionIndex != null
? parseInt(frame.iframe.dataset.sectionIndex) : undefined
if (idx != null) this.#overlayers.delete(idx)
}
// Drop a frame's overlayer and re-emit create-overlayer so listeners can
// re-add annotations. Called after a text layer rebuild (e.g. pdf.js
// onZoom) which invalidates Range objects stored in the overlayer.
#refreshOverlayerForFrame(frame) {
if (!frame?.iframe) return
const index = frame.iframe.dataset.sectionIndex != null
? parseInt(frame.iframe.dataset.sectionIndex) : undefined
if (index == null) return
const stale = this.#overlayers.get(index)
if (!stale) return
// Only refresh for frames currently visible; hidden frames keep their
// overlayer untouched until they are shown again.
const isVisible = frame.element?.parentNode
&& frame.element.style.visibility !== 'hidden'
if (!isVisible) return
stale.element?.remove()
this.#overlayers.delete(index)
const doc = frame.iframe.contentDocument
if (!doc) return
this.dispatchEvent(new CustomEvent('create-overlayer', {
detail: {
doc, index,
attach: overlayer => {
this.#overlayers.set(index, overlayer)
frame.element.append(overlayer.element)
},
},
}))
}
async select(target) {
await this.goTo(target)
// TODO
}
async goTo(target) {
const resolved = await target
if (this.#scrollMode) {
const page = this.#scrollPages[resolved.index]
if (page) {
page.el.scrollIntoView()
this.#scrollCurrentIndex = resolved.index
}
return
}
const { book } = this
const section = book.sections[resolved.index]
if (!section) return
const { index, side } = this.getSpreadOf(section)
await this.goToSpread(index, side)
}
async next(distance) {
if (this.#scrollMode) {
this.scrollBy({ top: distance || this.clientHeight, behavior: 'smooth' })
return
}
const s = this.rtl ? this.#goLeft() : this.#goRight()
if (!s) return this.goToSpread(this.#index + 1, this.rtl ? 'right' : 'left', 'page')
}
async prev(distance) {
if (this.#scrollMode) {
this.scrollBy({ top: -(distance || this.clientHeight), behavior: 'smooth' })
return
}
const s = this.rtl ? this.#goRight() : this.#goLeft()
if (!s) return this.goToSpread(this.#index - 1, this.rtl ? 'left' : 'right', 'page')
}
nextSection() {
if (!this.#scrollMode) return
const currentIndex = this.#getScrollIndex()
const nextIndex = Math.min(currentIndex + 1, this.#scrollPages.length - 1)
this.#scrollPages[nextIndex]?.el.scrollIntoView({ behavior: 'smooth' })
this.#scrollCurrentIndex = nextIndex
}
prevSection() {
if (!this.#scrollMode) return
const currentIndex = this.#getScrollIndex()
const prevIndex = Math.max(currentIndex - 1, 0)
this.#scrollPages[prevIndex]?.el.scrollIntoView({ behavior: 'smooth' })
this.#scrollCurrentIndex = prevIndex
}
async pan(dx, dy) {
if (this.#scrollMode) {
this.scrollBy({ top: dy, left: dx, behavior: 'auto' })
return
}
if (this.#scrollLocked) return
this.#scrollLocked = true
const transform = frame => {
let { element, iframe } = frame
if (!iframe || !element) return
const scrollableContainer = element.parentNode.host
scrollableContainer.scrollLeft += dx
scrollableContainer.scrollTop += dy
}
transform(this.#center ?? this.#right ?? {})
this.#scrollLocked = false
}
getContents() {
if (this.#scrollMode) {
return this.#scrollPages
.filter(p => p.state === 'loaded' && p.frame?.iframe)
.map(p => ({
doc: p.frame.iframe.contentDocument,
index: p.index,
overlayer: this.#overlayers.get(p.index),
}))
}
return Array.from(this.#root.querySelectorAll('iframe'))
.filter(frame => {
const parent = frame.parentElement
return parent && parent.style.visibility !== 'hidden'
})
.map(frame => {
const index = frame.dataset.sectionIndex != null
? parseInt(frame.dataset.sectionIndex) : undefined
return {
doc: frame.contentDocument,
index,
overlayer: index != null ? this.#overlayers.get(index) : undefined,
}
})
}
pinchZoom(ratio) {
const frames = this.#center
? [this.#center]
: [this.#left, this.#right]
for (const frame of frames) {
if (!frame?.element || frame.element.style.visibility === 'hidden') continue
frame.element.style.transform = `scale(${ratio})`
frame.element.style.transformOrigin = 'center'
}
}
pinchEnd() {
for (const frame of [this.#center, this.#left, this.#right]) {
if (!frame?.element) continue
frame.element.style.removeProperty('transform')
frame.element.style.removeProperty('transform-origin')
}
}
get size() {
return this.clientHeight
}
get viewSize() {
return this.#scrollMode ? this.scrollHeight : this.clientHeight
}
get start() {
return this.#scrollMode ? this.scrollTop : 0
}
get end() {
return this.#scrollMode ? this.scrollTop + this.clientHeight : this.clientHeight
}
get page() {
if (this.#scrollMode) return this.#scrollCurrentIndex >= 0
? this.#scrollCurrentIndex : this.#getScrollIndex()
return this.#index
}
get pages() {
if (this.#scrollMode) return this.#scrollPages.length
return this.#spreads?.length ?? 0
}
get containerPosition() {
return 0
}
get sideProp() {
return this.#scrollMode ? 'height' : 'width'
}
destroy() {
this.#observer.unobserve(this)
if (this.#scrollMode) {
this.removeEventListener('scroll', this.#handleScrollEvent)
if (this.#scrollObserver) {
this.#scrollObserver.disconnect()
this.#scrollObserver = null
}
if (this.#scrollIdleTimer) {
clearTimeout(this.#scrollIdleTimer)
this.#scrollIdleTimer = null
}
for (const page of this.#scrollPages) {
this.#teardownScrollPage(page)
}
this.#scrollPages = []
this.#scrollLoadGen.clear()
if (this.#scrollContainer) {
this.#scrollContainer.remove()
this.#scrollContainer = null
}
}
for (const frames of this.#prerenderedSpreads.values()) {
if (frames.center) {
frames.center.element?.remove()
} else {
frames.left?.element?.remove()
frames.right?.element?.remove()
}
}
this.#prerenderedSpreads.clear()
this.#preloadCache.clear()
this.#spreadAccessTime.clear()
this.#overlayers.clear()
}
}
customElements.define('foliate-fxl', FixedLayout)