mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-29 07:33:36 -05:00
53d6b4dfd0
GitOrigin-RevId: 3fba33a6b52bf2a91f3126efc9d76f6f1dfbc1c4
33 lines
1 KiB
TypeScript
33 lines
1 KiB
TypeScript
import * as PDFJS from 'pdfjs-dist'
|
|
import type { DocumentInitParameters } from 'pdfjs-dist/types/src/display/api'
|
|
|
|
export { PDFJS }
|
|
|
|
PDFJS.GlobalWorkerOptions.workerPort = new Worker(
|
|
/* webpackChunkName: "pdf-worker" */
|
|
new URL('pdfjs-dist/build/pdf.worker.mjs', import.meta.url) // NOTE: .mjs extension
|
|
)
|
|
|
|
export const imageResourcesPath = '/images/pdfjs-dist/'
|
|
const cMapUrl = '/js/pdfjs-dist/cmaps/'
|
|
const standardFontDataUrl = '/fonts/pdfjs-dist/'
|
|
|
|
const params = new URLSearchParams(window.location.search)
|
|
const disableFontFace = params.get('disable-font-face') === 'true'
|
|
const disableStream = process.env.NODE_ENV !== 'test'
|
|
|
|
export const loadPdfDocumentFromUrl = (
|
|
url: string,
|
|
options: Partial<DocumentInitParameters> = {}
|
|
) =>
|
|
PDFJS.getDocument({
|
|
url,
|
|
cMapUrl,
|
|
standardFontDataUrl,
|
|
disableFontFace,
|
|
disableAutoFetch: true, // only fetch the data needed for the displayed pages
|
|
disableStream,
|
|
isEvalSupported: false,
|
|
enableXfa: false, // default is false (2021-10-12), but set explicitly to be sure
|
|
...options,
|
|
})
|