123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778 |
- /**
- * @licstart The following is the entire license notice for the
- * Javascript code in this page
- *
- * Copyright 2022 Mozilla Foundation
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- * @licend The above is the entire license notice for the
- * Javascript code in this page
- */
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.PDFViewerApplication = exports.PDFPrintServiceFactory = exports.DefaultExternalServices = void 0;
- var _ui_utils = require("./ui_utils.js");
- var _app_options = require("./app_options.js");
- var _event_utils = require("./event_utils.js");
- var _pdf = require("../pdf");
- var _pdf_cursor_tools = require("./pdf_cursor_tools.js");
- var _pdf_link_service = require("./pdf_link_service.js");
- var _overlay_manager = require("./overlay_manager.js");
- var _password_prompt = require("./password_prompt.js");
- var _pdf_attachment_viewer = require("./pdf_attachment_viewer.js");
- var _pdf_document_properties = require("./pdf_document_properties.js");
- var _pdf_find_bar = require("./pdf_find_bar.js");
- var _pdf_find_controller = require("./pdf_find_controller.js");
- var _pdf_history = require("./pdf_history.js");
- var _pdf_layer_viewer = require("./pdf_layer_viewer.js");
- var _pdf_outline_viewer = require("./pdf_outline_viewer.js");
- var _pdf_presentation_mode = require("./pdf_presentation_mode.js");
- var _pdf_rendering_queue = require("./pdf_rendering_queue.js");
- var _pdf_scripting_manager = require("./pdf_scripting_manager.js");
- var _pdf_sidebar = require("./pdf_sidebar.js");
- var _pdf_sidebar_resizer = require("./pdf_sidebar_resizer.js");
- var _pdf_thumbnail_viewer = require("./pdf_thumbnail_viewer.js");
- var _pdf_viewer = require("./pdf_viewer.js");
- var _secondary_toolbar = require("./secondary_toolbar.js");
- var _toolbar = require("./toolbar.js");
- var _view_history = require("./view_history.js");
- const DISABLE_AUTO_FETCH_LOADING_BAR_TIMEOUT = 5000;
- const FORCE_PAGES_LOADED_TIMEOUT = 10000;
- const WHEEL_ZOOM_DISABLED_TIMEOUT = 1000;
- const ViewOnLoad = {
- UNKNOWN: -1,
- PREVIOUS: 0,
- INITIAL: 1
- };
- const ViewerCssTheme = {
- AUTOMATIC: 0,
- LIGHT: 1,
- DARK: 2
- };
- const KNOWN_VERSIONS = ["1.0", "1.1", "1.2", "1.3", "1.4", "1.5", "1.6", "1.7", "1.8", "1.9", "2.0", "2.1", "2.2", "2.3"];
- const KNOWN_GENERATORS = ["acrobat distiller", "acrobat pdfwriter", "adobe livecycle", "adobe pdf library", "adobe photoshop", "ghostscript", "tcpdf", "cairo", "dvipdfm", "dvips", "pdftex", "pdfkit", "itext", "prince", "quarkxpress", "mac os x", "microsoft", "openoffice", "oracle", "luradocument", "pdf-xchange", "antenna house", "aspose.cells", "fpdf"];
- class DefaultExternalServices {
- constructor() {
- throw new Error("Cannot initialize DefaultExternalServices.");
- }
- static updateFindControlState(data) {}
- static updateFindMatchesCount(data) {}
- static initPassiveLoading(callbacks) {}
- static async fallback(data) {}
- static reportTelemetry(data) {}
- static createDownloadManager(options) {
- throw new Error("Not implemented: createDownloadManager");
- }
- static createPreferences() {
- throw new Error("Not implemented: createPreferences");
- }
- static createL10n(options) {
- throw new Error("Not implemented: createL10n");
- }
- static createScripting(options) {
- throw new Error("Not implemented: createScripting");
- }
- static get supportsIntegratedFind() {
- return (0, _pdf.shadow)(this, "supportsIntegratedFind", false);
- }
- static get supportsDocumentFonts() {
- return (0, _pdf.shadow)(this, "supportsDocumentFonts", true);
- }
- static get supportedMouseWheelZoomModifierKeys() {
- return (0, _pdf.shadow)(this, "supportedMouseWheelZoomModifierKeys", {
- ctrlKey: true,
- metaKey: true
- });
- }
- static get isInAutomation() {
- return (0, _pdf.shadow)(this, "isInAutomation", false);
- }
- }
- exports.DefaultExternalServices = DefaultExternalServices;
- const PDFViewerApplication = {
- initialBookmark: document.location.hash.substring(1),
- _initializedCapability: (0, _pdf.createPromiseCapability)(),
- _fellback: false,
- appConfig: null,
- pdfDocument: null,
- pdfLoadingTask: null,
- printService: null,
- pdfViewer: null,
- pdfThumbnailViewer: null,
- pdfRenderingQueue: null,
- pdfPresentationMode: null,
- pdfDocumentProperties: null,
- pdfLinkService: null,
- pdfHistory: null,
- pdfSidebar: null,
- pdfSidebarResizer: null,
- pdfOutlineViewer: null,
- pdfAttachmentViewer: null,
- pdfLayerViewer: null,
- pdfCursorTools: null,
- pdfScriptingManager: null,
- store: null,
- downloadManager: null,
- overlayManager: null,
- preferences: null,
- toolbar: null,
- secondaryToolbar: null,
- eventBus: null,
- l10n: null,
- isInitialViewSet: false,
- downloadComplete: false,
- isViewerEmbedded: window.parent !== window,
- url: "",
- baseUrl: "",
- _downloadUrl: "",
- externalServices: DefaultExternalServices,
- _boundEvents: Object.create(null),
- documentInfo: null,
- metadata: null,
- _contentDispositionFilename: null,
- _contentLength: null,
- _saveInProgress: false,
- _docStats: null,
- _wheelUnusedTicks: 0,
- _idleCallbacks: new Set(),
- async initialize(appConfig) {
- this.preferences = this.externalServices.createPreferences();
- this.appConfig = appConfig;
- await this._readPreferences();
- await this._parseHashParameters();
- this._forceCssTheme();
- await this._initializeL10n();
- if (this.isViewerEmbedded && _app_options.AppOptions.get("externalLinkTarget") === _pdf_link_service.LinkTarget.NONE) {
- _app_options.AppOptions.set("externalLinkTarget", _pdf_link_service.LinkTarget.TOP);
- }
- await this._initializeViewerComponents();
- this.bindEvents();
- this.bindWindowEvents();
- const appContainer = appConfig.appContainer || document.documentElement;
- this.l10n.translate(appContainer).then(() => {
- this.eventBus.dispatch("localized", {
- source: this
- });
- });
- this._initializedCapability.resolve();
- },
- async _readPreferences() {
- if (_app_options.AppOptions.get("disablePreferences")) {
- return;
- }
- if (_app_options.AppOptions._hasUserOptions()) {
- console.warn("_readPreferences: The Preferences may override manually set AppOptions; " + 'please use the "disablePreferences"-option in order to prevent that.');
- }
- try {
- _app_options.AppOptions.setAll(await this.preferences.getAll());
- } catch (reason) {
- console.error(`_readPreferences: "${reason?.message}".`);
- }
- },
- async _parseHashParameters() {
- if (!_app_options.AppOptions.get("pdfBugEnabled")) {
- return;
- }
- const hash = document.location.hash.substring(1);
- if (!hash) {
- return;
- }
- const params = (0, _ui_utils.parseQueryString)(hash),
- waitOn = [];
- if (params.get("disableworker") === "true") {
- waitOn.push(loadFakeWorker());
- }
- if (params.has("disablerange")) {
- _app_options.AppOptions.set("disableRange", params.get("disablerange") === "true");
- }
- if (params.has("disablestream")) {
- _app_options.AppOptions.set("disableStream", params.get("disablestream") === "true");
- }
- if (params.has("disableautofetch")) {
- _app_options.AppOptions.set("disableAutoFetch", params.get("disableautofetch") === "true");
- }
- if (params.has("disablefontface")) {
- _app_options.AppOptions.set("disableFontFace", params.get("disablefontface") === "true");
- }
- if (params.has("disablehistory")) {
- _app_options.AppOptions.set("disableHistory", params.get("disablehistory") === "true");
- }
- if (params.has("verbosity")) {
- _app_options.AppOptions.set("verbosity", params.get("verbosity") | 0);
- }
- if (params.has("textlayer")) {
- switch (params.get("textlayer")) {
- case "off":
- _app_options.AppOptions.set("textLayerMode", _ui_utils.TextLayerMode.DISABLE);
- break;
- case "visible":
- case "shadow":
- case "hover":
- const viewer = this.appConfig.viewerContainer;
- viewer.classList.add(`textLayer-${params.get("textlayer")}`);
- break;
- }
- }
- if (params.has("pdfbug")) {
- _app_options.AppOptions.set("pdfBug", true);
- _app_options.AppOptions.set("fontExtraProperties", true);
- const enabled = params.get("pdfbug").split(",");
- waitOn.push(initPDFBug(enabled));
- }
- if (params.has("locale")) {
- _app_options.AppOptions.set("locale", params.get("locale"));
- }
- if (waitOn.length === 0) {
- return;
- }
- try {
- await Promise.all(waitOn);
- } catch (reason) {
- console.error(`_parseHashParameters: "${reason.message}".`);
- }
- },
- async _initializeL10n() {
- this.l10n = this.externalServices.createL10n({
- locale: _app_options.AppOptions.get("locale")
- });
- const dir = await this.l10n.getDirection();
- document.getElementsByTagName("html")[0].dir = dir;
- },
- _forceCssTheme() {
- const cssTheme = _app_options.AppOptions.get("viewerCssTheme");
- if (cssTheme === ViewerCssTheme.AUTOMATIC || !Object.values(ViewerCssTheme).includes(cssTheme)) {
- return;
- }
- try {
- const styleSheet = document.styleSheets[0];
- const cssRules = styleSheet?.cssRules || [];
- for (let i = 0, ii = cssRules.length; i < ii; i++) {
- const rule = cssRules[i];
- if (rule instanceof CSSMediaRule && rule.media?.[0] === "(prefers-color-scheme: dark)") {
- if (cssTheme === ViewerCssTheme.LIGHT) {
- styleSheet.deleteRule(i);
- return;
- }
- const darkRules = /^@media \(prefers-color-scheme: dark\) {\n\s*([\w\s-.,:;/\\{}()]+)\n}$/.exec(rule.cssText);
- if (darkRules?.[1]) {
- styleSheet.deleteRule(i);
- styleSheet.insertRule(darkRules[1], i);
- }
- return;
- }
- }
- } catch (reason) {
- console.error(`_forceCssTheme: "${reason?.message}".`);
- }
- },
- async _initializeViewerComponents() {
- const {
- appConfig,
- externalServices
- } = this;
- const eventBus = externalServices.isInAutomation ? new _event_utils.AutomationEventBus() : new _event_utils.EventBus();
- this.eventBus = eventBus;
- this.overlayManager = new _overlay_manager.OverlayManager();
- const pdfRenderingQueue = new _pdf_rendering_queue.PDFRenderingQueue();
- pdfRenderingQueue.onIdle = this._cleanup.bind(this);
- this.pdfRenderingQueue = pdfRenderingQueue;
- const pdfLinkService = new _pdf_link_service.PDFLinkService({
- eventBus,
- externalLinkTarget: _app_options.AppOptions.get("externalLinkTarget"),
- externalLinkRel: _app_options.AppOptions.get("externalLinkRel"),
- ignoreDestinationZoom: _app_options.AppOptions.get("ignoreDestinationZoom")
- });
- this.pdfLinkService = pdfLinkService;
- const downloadManager = externalServices.createDownloadManager();
- this.downloadManager = downloadManager;
- const findController = new _pdf_find_controller.PDFFindController({
- linkService: pdfLinkService,
- eventBus
- });
- this.findController = findController;
- const pdfScriptingManager = new _pdf_scripting_manager.PDFScriptingManager({
- eventBus,
- sandboxBundleSrc: _app_options.AppOptions.get("sandboxBundleSrc"),
- scriptingFactory: externalServices,
- docPropertiesLookup: this._scriptingDocProperties.bind(this)
- });
- this.pdfScriptingManager = pdfScriptingManager;
- const container = appConfig.mainContainer;
- const viewer = appConfig.viewerContainer;
- this.pdfViewer = new _pdf_viewer.PDFViewer({
- container,
- viewer,
- eventBus,
- renderingQueue: pdfRenderingQueue,
- linkService: pdfLinkService,
- downloadManager,
- findController,
- scriptingManager: _app_options.AppOptions.get("enableScripting") && pdfScriptingManager,
- renderer: _app_options.AppOptions.get("renderer"),
- l10n: this.l10n,
- textLayerMode: _app_options.AppOptions.get("textLayerMode"),
- annotationMode: _app_options.AppOptions.get("annotationMode"),
- imageResourcesPath: _app_options.AppOptions.get("imageResourcesPath"),
- enablePrintAutoRotate: _app_options.AppOptions.get("enablePrintAutoRotate"),
- useOnlyCssZoom: _app_options.AppOptions.get("useOnlyCssZoom"),
- maxCanvasPixels: _app_options.AppOptions.get("maxCanvasPixels"),
- enablePermissions: _app_options.AppOptions.get("enablePermissions")
- });
- pdfRenderingQueue.setViewer(this.pdfViewer);
- pdfLinkService.setViewer(this.pdfViewer);
- pdfScriptingManager.setViewer(this.pdfViewer);
- this.pdfThumbnailViewer = new _pdf_thumbnail_viewer.PDFThumbnailViewer({
- container: appConfig.sidebar.thumbnailView,
- eventBus,
- renderingQueue: pdfRenderingQueue,
- linkService: pdfLinkService,
- l10n: this.l10n
- });
- pdfRenderingQueue.setThumbnailViewer(this.pdfThumbnailViewer);
- if (!this.isViewerEmbedded && !_app_options.AppOptions.get("disableHistory")) {
- this.pdfHistory = new _pdf_history.PDFHistory({
- linkService: pdfLinkService,
- eventBus
- });
- pdfLinkService.setHistory(this.pdfHistory);
- }
- if (!this.supportsIntegratedFind) {
- this.findBar = new _pdf_find_bar.PDFFindBar(appConfig.findBar, eventBus, this.l10n);
- }
- this.pdfDocumentProperties = new _pdf_document_properties.PDFDocumentProperties(appConfig.documentProperties, this.overlayManager, eventBus, this.l10n);
- this.pdfCursorTools = new _pdf_cursor_tools.PDFCursorTools({
- container,
- eventBus,
- cursorToolOnLoad: _app_options.AppOptions.get("cursorToolOnLoad")
- });
- this.toolbar = new _toolbar.Toolbar(appConfig.toolbar, eventBus, this.l10n);
- this.secondaryToolbar = new _secondary_toolbar.SecondaryToolbar(appConfig.secondaryToolbar, container, eventBus);
- if (this.supportsFullscreen) {
- this.pdfPresentationMode = new _pdf_presentation_mode.PDFPresentationMode({
- container,
- pdfViewer: this.pdfViewer,
- eventBus
- });
- }
- this.passwordPrompt = new _password_prompt.PasswordPrompt(appConfig.passwordOverlay, this.overlayManager, this.l10n, this.isViewerEmbedded);
- this.pdfOutlineViewer = new _pdf_outline_viewer.PDFOutlineViewer({
- container: appConfig.sidebar.outlineView,
- eventBus,
- linkService: pdfLinkService
- });
- this.pdfAttachmentViewer = new _pdf_attachment_viewer.PDFAttachmentViewer({
- container: appConfig.sidebar.attachmentsView,
- eventBus,
- downloadManager
- });
- this.pdfLayerViewer = new _pdf_layer_viewer.PDFLayerViewer({
- container: appConfig.sidebar.layersView,
- eventBus,
- l10n: this.l10n
- });
- this.pdfSidebar = new _pdf_sidebar.PDFSidebar({
- elements: appConfig.sidebar,
- pdfViewer: this.pdfViewer,
- pdfThumbnailViewer: this.pdfThumbnailViewer,
- eventBus,
- l10n: this.l10n
- });
- this.pdfSidebar.onToggled = this.forceRendering.bind(this);
- this.pdfSidebarResizer = new _pdf_sidebar_resizer.PDFSidebarResizer(appConfig.sidebarResizer, eventBus, this.l10n);
- },
- run(config) {
- this.initialize(config).then(webViewerInitialized);
- },
- get initialized() {
- return this._initializedCapability.settled;
- },
- get initializedPromise() {
- return this._initializedCapability.promise;
- },
- zoomIn(steps) {
- if (this.pdfViewer.isInPresentationMode) {
- return;
- }
- this.pdfViewer.increaseScale(steps);
- },
- zoomOut(steps) {
- if (this.pdfViewer.isInPresentationMode) {
- return;
- }
- this.pdfViewer.decreaseScale(steps);
- },
- zoomReset() {
- if (this.pdfViewer.isInPresentationMode) {
- return;
- }
- this.pdfViewer.currentScaleValue = _ui_utils.DEFAULT_SCALE_VALUE;
- },
- get pagesCount() {
- return this.pdfDocument ? this.pdfDocument.numPages : 0;
- },
- get page() {
- return this.pdfViewer.currentPageNumber;
- },
- set page(val) {
- this.pdfViewer.currentPageNumber = val;
- },
- get supportsPrinting() {
- return PDFPrintServiceFactory.instance.supportsPrinting;
- },
- get supportsFullscreen() {
- return (0, _pdf.shadow)(this, "supportsFullscreen", document.fullscreenEnabled);
- },
- get supportsIntegratedFind() {
- return this.externalServices.supportsIntegratedFind;
- },
- get supportsDocumentFonts() {
- return this.externalServices.supportsDocumentFonts;
- },
- get loadingBar() {
- const bar = new _ui_utils.ProgressBar("#loadingBar");
- return (0, _pdf.shadow)(this, "loadingBar", bar);
- },
- get supportedMouseWheelZoomModifierKeys() {
- return this.externalServices.supportedMouseWheelZoomModifierKeys;
- },
- initPassiveLoading() {
- throw new Error("Not implemented: initPassiveLoading");
- },
- setTitleUsingUrl(url = "", downloadUrl = null) {
- this.url = url;
- this.baseUrl = url.split("#")[0];
- if (downloadUrl) {
- this._downloadUrl = downloadUrl === url ? this.baseUrl : downloadUrl.split("#")[0];
- }
- let title = (0, _pdf.getPdfFilenameFromUrl)(url, "");
- if (!title) {
- try {
- title = decodeURIComponent((0, _pdf.getFilenameFromUrl)(url)) || url;
- } catch (ex) {
- title = url;
- }
- }
- this.setTitle(title);
- },
- setTitle(title) {
- if (this.isViewerEmbedded) {
- return;
- }
- document.title = title;
- },
- get _docFilename() {
- return this._contentDispositionFilename || (0, _pdf.getPdfFilenameFromUrl)(this.url);
- },
- _hideViewBookmark() {
- const {
- toolbar,
- secondaryToolbar
- } = this.appConfig;
- toolbar.viewBookmark.hidden = true;
- secondaryToolbar.viewBookmarkButton.hidden = true;
- },
- _cancelIdleCallbacks() {
- if (!this._idleCallbacks.size) {
- return;
- }
- for (const callback of this._idleCallbacks) {
- window.cancelIdleCallback(callback);
- }
- this._idleCallbacks.clear();
- },
- async close() {
- this._unblockDocumentLoadEvent();
- this._hideViewBookmark();
- const {
- container
- } = this.appConfig.errorWrapper;
- container.hidden = true;
- if (!this.pdfLoadingTask) {
- return;
- }
- if (this.pdfDocument?.annotationStorage.size > 0 && this._annotationStorageModified) {
- try {
- await this.save({
- sourceEventType: "save"
- });
- } catch (reason) {}
- }
- const promises = [];
- promises.push(this.pdfLoadingTask.destroy());
- this.pdfLoadingTask = null;
- if (this.pdfDocument) {
- this.pdfDocument = null;
- this.pdfThumbnailViewer.setDocument(null);
- this.pdfViewer.setDocument(null);
- this.pdfLinkService.setDocument(null);
- this.pdfDocumentProperties.setDocument(null);
- }
- this.pdfLinkService.externalLinkEnabled = true;
- this._fellback = false;
- this.store = null;
- this.isInitialViewSet = false;
- this.downloadComplete = false;
- this.url = "";
- this.baseUrl = "";
- this._downloadUrl = "";
- this.documentInfo = null;
- this.metadata = null;
- this._contentDispositionFilename = null;
- this._contentLength = null;
- this._saveInProgress = false;
- this._docStats = null;
- this._cancelIdleCallbacks();
- promises.push(this.pdfScriptingManager.destroyPromise);
- this.pdfSidebar.reset();
- this.pdfOutlineViewer.reset();
- this.pdfAttachmentViewer.reset();
- this.pdfLayerViewer.reset();
- this.pdfHistory?.reset();
- this.findBar?.reset();
- this.toolbar.reset();
- this.secondaryToolbar.reset();
- if (typeof PDFBug !== "undefined") {
- PDFBug.cleanup();
- }
- await Promise.all(promises);
- },
- async open(file, args) {
- if (this.pdfLoadingTask) {
- await this.close();
- }
- const workerParameters = _app_options.AppOptions.getAll(_app_options.OptionKind.WORKER);
- for (const key in workerParameters) {
- _pdf.GlobalWorkerOptions[key] = workerParameters[key];
- }
- const parameters = Object.create(null);
- if (typeof file === "string") {
- this.setTitleUsingUrl(file, file);
- parameters.url = file;
- } else if (file && "byteLength" in file) {
- parameters.data = file;
- } else if (file.url && file.originalUrl) {
- this.setTitleUsingUrl(file.originalUrl, file.url);
- parameters.url = file.url;
- }
- const apiParameters = _app_options.AppOptions.getAll(_app_options.OptionKind.API);
- for (const key in apiParameters) {
- let value = apiParameters[key];
- if (key === "docBaseUrl" && !value) {}
- parameters[key] = value;
- }
- if (args) {
- for (const key in args) {
- parameters[key] = args[key];
- }
- }
- const loadingTask = (0, _pdf.getDocument)(parameters);
- this.pdfLoadingTask = loadingTask;
- loadingTask.onPassword = (updateCallback, reason) => {
- this.pdfLinkService.externalLinkEnabled = false;
- this.passwordPrompt.setUpdateCallback(updateCallback, reason);
- this.passwordPrompt.open();
- };
- loadingTask.onProgress = ({
- loaded,
- total
- }) => {
- this.progress(loaded / total);
- };
- loadingTask.onUnsupportedFeature = this.fallback.bind(this);
- return loadingTask.promise.then(pdfDocument => {
- this.load(pdfDocument);
- }, reason => {
- if (loadingTask !== this.pdfLoadingTask) {
- return undefined;
- }
- let key = "loading_error";
- if (reason instanceof _pdf.InvalidPDFException) {
- key = "invalid_file_error";
- } else if (reason instanceof _pdf.MissingPDFException) {
- key = "missing_file_error";
- } else if (reason instanceof _pdf.UnexpectedResponseException) {
- key = "unexpected_response_error";
- }
- return this.l10n.get(key).then(msg => {
- this._documentError(msg, {
- message: reason?.message
- });
- throw reason;
- });
- });
- },
- _ensureDownloadComplete() {
- if (this.pdfDocument && this.downloadComplete) {
- return;
- }
- throw new Error("PDF document not downloaded.");
- },
- async download({
- sourceEventType = "download"
- } = {}) {
- const url = this._downloadUrl,
- filename = this._docFilename;
- try {
- this._ensureDownloadComplete();
- const data = await this.pdfDocument.getData();
- const blob = new Blob([data], {
- type: "application/pdf"
- });
- await this.downloadManager.download(blob, url, filename, sourceEventType);
- } catch (reason) {
- await this.downloadManager.downloadUrl(url, filename);
- }
- },
- async save({
- sourceEventType = "download"
- } = {}) {
- if (this._saveInProgress) {
- return;
- }
- this._saveInProgress = true;
- await this.pdfScriptingManager.dispatchWillSave();
- const url = this._downloadUrl,
- filename = this._docFilename;
- try {
- this._ensureDownloadComplete();
- const data = await this.pdfDocument.saveDocument();
- const blob = new Blob([data], {
- type: "application/pdf"
- });
- await this.downloadManager.download(blob, url, filename, sourceEventType);
- } catch (reason) {
- console.error(`Error when saving the document: ${reason.message}`);
- await this.download({
- sourceEventType
- });
- } finally {
- await this.pdfScriptingManager.dispatchDidSave();
- this._saveInProgress = false;
- }
- },
- downloadOrSave(options) {
- if (this.pdfDocument?.annotationStorage.size > 0) {
- this.save(options);
- } else {
- this.download(options);
- }
- },
- fallback(featureId) {
- this.externalServices.reportTelemetry({
- type: "unsupportedFeature",
- featureId
- });
- if (this._fellback) {
- return;
- }
- this._fellback = true;
- this.externalServices.fallback({
- featureId,
- url: this.baseUrl
- }).then(download => {
- if (!download) {
- return;
- }
- this.download({
- sourceEventType: "download"
- });
- });
- },
- _documentError(message, moreInfo = null) {
- this._unblockDocumentLoadEvent();
- this._otherError(message, moreInfo);
- this.eventBus.dispatch("documenterror", {
- source: this,
- message,
- reason: moreInfo?.message ?? null
- });
- },
- _otherError(message, moreInfo = null) {
- const moreInfoText = [this.l10n.get("error_version_info", {
- version: _pdf.version || "?",
- build: _pdf.build || "?"
- })];
- if (moreInfo) {
- moreInfoText.push(this.l10n.get("error_message", {
- message: moreInfo.message
- }));
- if (moreInfo.stack) {
- moreInfoText.push(this.l10n.get("error_stack", {
- stack: moreInfo.stack
- }));
- } else {
- if (moreInfo.filename) {
- moreInfoText.push(this.l10n.get("error_file", {
- file: moreInfo.filename
- }));
- }
- if (moreInfo.lineNumber) {
- moreInfoText.push(this.l10n.get("error_line", {
- line: moreInfo.lineNumber
- }));
- }
- }
- }
- const errorWrapperConfig = this.appConfig.errorWrapper;
- const errorWrapper = errorWrapperConfig.container;
- errorWrapper.hidden = false;
- const errorMessage = errorWrapperConfig.errorMessage;
- errorMessage.textContent = message;
- const closeButton = errorWrapperConfig.closeButton;
- closeButton.onclick = function () {
- errorWrapper.hidden = true;
- };
- const errorMoreInfo = errorWrapperConfig.errorMoreInfo;
- const moreInfoButton = errorWrapperConfig.moreInfoButton;
- const lessInfoButton = errorWrapperConfig.lessInfoButton;
- moreInfoButton.onclick = function () {
- errorMoreInfo.hidden = false;
- moreInfoButton.hidden = true;
- lessInfoButton.hidden = false;
- errorMoreInfo.style.height = errorMoreInfo.scrollHeight + "px";
- };
- lessInfoButton.onclick = function () {
- errorMoreInfo.hidden = true;
- moreInfoButton.hidden = false;
- lessInfoButton.hidden = true;
- };
- moreInfoButton.oncontextmenu = _ui_utils.noContextMenuHandler;
- lessInfoButton.oncontextmenu = _ui_utils.noContextMenuHandler;
- closeButton.oncontextmenu = _ui_utils.noContextMenuHandler;
- moreInfoButton.hidden = false;
- lessInfoButton.hidden = true;
- Promise.all(moreInfoText).then(parts => {
- errorMoreInfo.value = parts.join("\n");
- });
- },
- progress(level) {
- if (this.downloadComplete) {
- return;
- }
- const percent = Math.round(level * 100);
- if (percent > this.loadingBar.percent || isNaN(percent)) {
- this.loadingBar.percent = percent;
- const disableAutoFetch = this.pdfDocument ? this.pdfDocument.loadingParams.disableAutoFetch : _app_options.AppOptions.get("disableAutoFetch");
- if (disableAutoFetch && percent) {
- if (this.disableAutoFetchLoadingBarTimeout) {
- clearTimeout(this.disableAutoFetchLoadingBarTimeout);
- this.disableAutoFetchLoadingBarTimeout = null;
- }
- this.loadingBar.show();
- this.disableAutoFetchLoadingBarTimeout = setTimeout(() => {
- this.loadingBar.hide();
- this.disableAutoFetchLoadingBarTimeout = null;
- }, DISABLE_AUTO_FETCH_LOADING_BAR_TIMEOUT);
- }
- }
- },
- load(pdfDocument) {
- this.pdfDocument = pdfDocument;
- pdfDocument.getDownloadInfo().then(({
- length
- }) => {
- this._contentLength = length;
- this.downloadComplete = true;
- this.loadingBar.hide();
- firstPagePromise.then(() => {
- this.eventBus.dispatch("documentloaded", {
- source: this
- });
- });
- });
- const pageLayoutPromise = pdfDocument.getPageLayout().catch(function () {});
- const pageModePromise = pdfDocument.getPageMode().catch(function () {});
- const openActionPromise = pdfDocument.getOpenAction().catch(function () {});
- this.toolbar.setPagesCount(pdfDocument.numPages, false);
- this.secondaryToolbar.setPagesCount(pdfDocument.numPages);
- let baseDocumentUrl;
- baseDocumentUrl = null;
- this.pdfLinkService.setDocument(pdfDocument, baseDocumentUrl);
- this.pdfDocumentProperties.setDocument(pdfDocument, this.url);
- const pdfViewer = this.pdfViewer;
- pdfViewer.setDocument(pdfDocument);
- const {
- firstPagePromise,
- onePageRendered,
- pagesPromise
- } = pdfViewer;
- const pdfThumbnailViewer = this.pdfThumbnailViewer;
- pdfThumbnailViewer.setDocument(pdfDocument);
- const storedPromise = (this.store = new _view_history.ViewHistory(pdfDocument.fingerprints[0])).getMultiple({
- page: null,
- zoom: _ui_utils.DEFAULT_SCALE_VALUE,
- scrollLeft: "0",
- scrollTop: "0",
- rotation: null,
- sidebarView: _ui_utils.SidebarView.UNKNOWN,
- scrollMode: _ui_utils.ScrollMode.UNKNOWN,
- spreadMode: _ui_utils.SpreadMode.UNKNOWN
- }).catch(() => {
- return Object.create(null);
- });
- firstPagePromise.then(pdfPage => {
- this.loadingBar.setWidth(this.appConfig.viewerContainer);
- this._initializeAnnotationStorageCallbacks(pdfDocument);
- Promise.all([_ui_utils.animationStarted, storedPromise, pageLayoutPromise, pageModePromise, openActionPromise]).then(async ([timeStamp, stored, pageLayout, pageMode, openAction]) => {
- const viewOnLoad = _app_options.AppOptions.get("viewOnLoad");
- this._initializePdfHistory({
- fingerprint: pdfDocument.fingerprints[0],
- viewOnLoad,
- initialDest: openAction?.dest
- });
- const initialBookmark = this.initialBookmark;
- const zoom = _app_options.AppOptions.get("defaultZoomValue");
- let hash = zoom ? `zoom=${zoom}` : null;
- let rotation = null;
- let sidebarView = _app_options.AppOptions.get("sidebarViewOnLoad");
- let scrollMode = _app_options.AppOptions.get("scrollModeOnLoad");
- let spreadMode = _app_options.AppOptions.get("spreadModeOnLoad");
- if (stored.page && viewOnLoad !== ViewOnLoad.INITIAL) {
- hash = `page=${stored.page}&zoom=${zoom || stored.zoom},` + `${stored.scrollLeft},${stored.scrollTop}`;
- rotation = parseInt(stored.rotation, 10);
- if (sidebarView === _ui_utils.SidebarView.UNKNOWN) {
- sidebarView = stored.sidebarView | 0;
- }
- if (scrollMode === _ui_utils.ScrollMode.UNKNOWN) {
- scrollMode = stored.scrollMode | 0;
- }
- if (spreadMode === _ui_utils.SpreadMode.UNKNOWN) {
- spreadMode = stored.spreadMode | 0;
- }
- }
- if (pageMode && sidebarView === _ui_utils.SidebarView.UNKNOWN) {
- sidebarView = (0, _ui_utils.apiPageModeToSidebarView)(pageMode);
- }
- if (pageLayout && scrollMode === _ui_utils.ScrollMode.UNKNOWN && spreadMode === _ui_utils.SpreadMode.UNKNOWN) {
- const modes = (0, _ui_utils.apiPageLayoutToViewerModes)(pageLayout);
- spreadMode = modes.spreadMode;
- }
- this.setInitialView(hash, {
- rotation,
- sidebarView,
- scrollMode,
- spreadMode
- });
- this.eventBus.dispatch("documentinit", {
- source: this
- });
- if (!this.isViewerEmbedded) {
- pdfViewer.focus();
- }
- await Promise.race([pagesPromise, new Promise(resolve => {
- setTimeout(resolve, FORCE_PAGES_LOADED_TIMEOUT);
- })]);
- if (!initialBookmark && !hash) {
- return;
- }
- if (pdfViewer.hasEqualPageSizes) {
- return;
- }
- this.initialBookmark = initialBookmark;
- pdfViewer.currentScaleValue = pdfViewer.currentScaleValue;
- this.setInitialView(hash);
- }).catch(() => {
- this.setInitialView();
- }).then(function () {
- pdfViewer.update();
- });
- });
- pagesPromise.then(() => {
- this._unblockDocumentLoadEvent();
- this._initializeAutoPrint(pdfDocument, openActionPromise);
- }, reason => {
- this.l10n.get("loading_error").then(msg => {
- this._documentError(msg, {
- message: reason?.message
- });
- });
- });
- onePageRendered.then(data => {
- this.externalServices.reportTelemetry({
- type: "pageInfo",
- timestamp: data.timestamp
- });
- pdfDocument.getOutline().then(outline => {
- if (pdfDocument !== this.pdfDocument) {
- return;
- }
- this.pdfOutlineViewer.render({
- outline,
- pdfDocument
- });
- });
- pdfDocument.getAttachments().then(attachments => {
- if (pdfDocument !== this.pdfDocument) {
- return;
- }
- this.pdfAttachmentViewer.render({
- attachments
- });
- });
- pdfViewer.optionalContentConfigPromise.then(optionalContentConfig => {
- if (pdfDocument !== this.pdfDocument) {
- return;
- }
- this.pdfLayerViewer.render({
- optionalContentConfig,
- pdfDocument
- });
- });
- if ("requestIdleCallback" in window) {
- const callback = window.requestIdleCallback(() => {
- this._collectTelemetry(pdfDocument);
- this._idleCallbacks.delete(callback);
- }, {
- timeout: 1000
- });
- this._idleCallbacks.add(callback);
- }
- });
- this._initializePageLabels(pdfDocument);
- this._initializeMetadata(pdfDocument);
- },
- async _scriptingDocProperties(pdfDocument) {
- if (!this.documentInfo) {
- await new Promise(resolve => {
- this.eventBus._on("metadataloaded", resolve, {
- once: true
- });
- });
- if (pdfDocument !== this.pdfDocument) {
- return null;
- }
- }
- if (!this._contentLength) {
- await new Promise(resolve => {
- this.eventBus._on("documentloaded", resolve, {
- once: true
- });
- });
- if (pdfDocument !== this.pdfDocument) {
- return null;
- }
- }
- return { ...this.documentInfo,
- baseURL: this.baseUrl,
- filesize: this._contentLength,
- filename: this._docFilename,
- metadata: this.metadata?.getRaw(),
- authors: this.metadata?.get("dc:creator"),
- numPages: this.pagesCount,
- URL: this.url
- };
- },
- async _collectTelemetry(pdfDocument) {
- const markInfo = await this.pdfDocument.getMarkInfo();
- if (pdfDocument !== this.pdfDocument) {
- return;
- }
- const tagged = markInfo?.Marked || false;
- this.externalServices.reportTelemetry({
- type: "tagged",
- tagged
- });
- },
- async _initializeAutoPrint(pdfDocument, openActionPromise) {
- const [openAction, javaScript] = await Promise.all([openActionPromise, !this.pdfViewer.enableScripting ? pdfDocument.getJavaScript() : null]);
- if (pdfDocument !== this.pdfDocument) {
- return;
- }
- let triggerAutoPrint = false;
- if (openAction?.action === "Print") {
- triggerAutoPrint = true;
- }
- if (javaScript) {
- javaScript.some(js => {
- if (!js) {
- return false;
- }
- console.warn("Warning: JavaScript support is not enabled");
- this.fallback(_pdf.UNSUPPORTED_FEATURES.javaScript);
- return true;
- });
- if (!triggerAutoPrint) {
- for (const js of javaScript) {
- if (js && _ui_utils.AutoPrintRegExp.test(js)) {
- triggerAutoPrint = true;
- break;
- }
- }
- }
- }
- if (triggerAutoPrint) {
- this.triggerPrinting();
- }
- },
- async _initializeMetadata(pdfDocument) {
- const {
- info,
- metadata,
- contentDispositionFilename,
- contentLength
- } = await pdfDocument.getMetadata();
- if (pdfDocument !== this.pdfDocument) {
- return;
- }
- this.documentInfo = info;
- this.metadata = metadata;
- this._contentDispositionFilename ??= contentDispositionFilename;
- this._contentLength ??= contentLength;
- console.log(`PDF ${pdfDocument.fingerprints[0]} [${info.PDFFormatVersion} ` + `${(info.Producer || "-").trim()} / ${(info.Creator || "-").trim()}] ` + `(PDF.js: ${_pdf.version || "-"})`);
- let pdfTitle = info?.Title;
- const metadataTitle = metadata?.get("dc:title");
- if (metadataTitle) {
- if (metadataTitle !== "Untitled" && !/[\uFFF0-\uFFFF]/g.test(metadataTitle)) {
- pdfTitle = metadataTitle;
- }
- }
- if (pdfTitle) {
- this.setTitle(`${pdfTitle} - ${contentDispositionFilename || document.title}`);
- } else if (contentDispositionFilename) {
- this.setTitle(contentDispositionFilename);
- }
- if (info.IsXFAPresent && !info.IsAcroFormPresent && !pdfDocument.isPureXfa) {
- if (pdfDocument.loadingParams.enableXfa) {
- console.warn("Warning: XFA Foreground documents are not supported");
- } else {
- console.warn("Warning: XFA support is not enabled");
- }
- this.fallback(_pdf.UNSUPPORTED_FEATURES.forms);
- } else if ((info.IsAcroFormPresent || info.IsXFAPresent) && !this.pdfViewer.renderForms) {
- console.warn("Warning: Interactive form support is not enabled");
- this.fallback(_pdf.UNSUPPORTED_FEATURES.forms);
- }
- if (info.IsSignaturesPresent) {
- console.warn("Warning: Digital signatures validation is not supported");
- this.fallback(_pdf.UNSUPPORTED_FEATURES.signatures);
- }
- let versionId = "other";
- if (KNOWN_VERSIONS.includes(info.PDFFormatVersion)) {
- versionId = `v${info.PDFFormatVersion.replace(".", "_")}`;
- }
- let generatorId = "other";
- if (info.Producer) {
- const producer = info.Producer.toLowerCase();
- KNOWN_GENERATORS.some(function (generator) {
- if (!producer.includes(generator)) {
- return false;
- }
- generatorId = generator.replace(/[ .-]/g, "_");
- return true;
- });
- }
- let formType = null;
- if (info.IsXFAPresent) {
- formType = "xfa";
- } else if (info.IsAcroFormPresent) {
- formType = "acroform";
- }
- this.externalServices.reportTelemetry({
- type: "documentInfo",
- version: versionId,
- generator: generatorId,
- formType
- });
- this.eventBus.dispatch("metadataloaded", {
- source: this
- });
- },
- async _initializePageLabels(pdfDocument) {
- const labels = await pdfDocument.getPageLabels();
- if (pdfDocument !== this.pdfDocument) {
- return;
- }
- if (!labels || _app_options.AppOptions.get("disablePageLabels")) {
- return;
- }
- const numLabels = labels.length;
- let standardLabels = 0,
- emptyLabels = 0;
- for (let i = 0; i < numLabels; i++) {
- const label = labels[i];
- if (label === (i + 1).toString()) {
- standardLabels++;
- } else if (label === "") {
- emptyLabels++;
- } else {
- break;
- }
- }
- if (standardLabels >= numLabels || emptyLabels >= numLabels) {
- return;
- }
- const {
- pdfViewer,
- pdfThumbnailViewer,
- toolbar
- } = this;
- pdfViewer.setPageLabels(labels);
- pdfThumbnailViewer.setPageLabels(labels);
- toolbar.setPagesCount(numLabels, true);
- toolbar.setPageNumber(pdfViewer.currentPageNumber, pdfViewer.currentPageLabel);
- },
- _initializePdfHistory({
- fingerprint,
- viewOnLoad,
- initialDest = null
- }) {
- if (!this.pdfHistory) {
- return;
- }
- this.pdfHistory.initialize({
- fingerprint,
- resetHistory: viewOnLoad === ViewOnLoad.INITIAL,
- updateUrl: _app_options.AppOptions.get("historyUpdateUrl")
- });
- if (this.pdfHistory.initialBookmark) {
- this.initialBookmark = this.pdfHistory.initialBookmark;
- this.initialRotation = this.pdfHistory.initialRotation;
- }
- if (initialDest && !this.initialBookmark && viewOnLoad === ViewOnLoad.UNKNOWN) {
- this.initialBookmark = JSON.stringify(initialDest);
- this.pdfHistory.push({
- explicitDest: initialDest,
- pageNumber: null
- });
- }
- },
- _initializeAnnotationStorageCallbacks(pdfDocument) {
- if (pdfDocument !== this.pdfDocument) {
- return;
- }
- const {
- annotationStorage
- } = pdfDocument;
- annotationStorage.onSetModified = () => {
- window.addEventListener("beforeunload", beforeUnload);
- this._annotationStorageModified = true;
- };
- annotationStorage.onResetModified = () => {
- window.removeEventListener("beforeunload", beforeUnload);
- delete this._annotationStorageModified;
- };
- },
- setInitialView(storedHash, {
- rotation,
- sidebarView,
- scrollMode,
- spreadMode
- } = {}) {
- const setRotation = angle => {
- if ((0, _ui_utils.isValidRotation)(angle)) {
- this.pdfViewer.pagesRotation = angle;
- }
- };
- const setViewerModes = (scroll, spread) => {
- if ((0, _ui_utils.isValidScrollMode)(scroll)) {
- this.pdfViewer.scrollMode = scroll;
- }
- if ((0, _ui_utils.isValidSpreadMode)(spread)) {
- this.pdfViewer.spreadMode = spread;
- }
- };
- this.isInitialViewSet = true;
- this.pdfSidebar.setInitialView(sidebarView);
- setViewerModes(scrollMode, spreadMode);
- if (this.initialBookmark) {
- setRotation(this.initialRotation);
- delete this.initialRotation;
- this.pdfLinkService.setHash(this.initialBookmark);
- this.initialBookmark = null;
- } else if (storedHash) {
- setRotation(rotation);
- this.pdfLinkService.setHash(storedHash);
- }
- this.toolbar.setPageNumber(this.pdfViewer.currentPageNumber, this.pdfViewer.currentPageLabel);
- this.secondaryToolbar.setPageNumber(this.pdfViewer.currentPageNumber);
- if (!this.pdfViewer.currentScaleValue) {
- this.pdfViewer.currentScaleValue = _ui_utils.DEFAULT_SCALE_VALUE;
- }
- },
- _cleanup() {
- if (!this.pdfDocument) {
- return;
- }
- this.pdfViewer.cleanup();
- this.pdfThumbnailViewer.cleanup();
- this.pdfDocument.cleanup(this.pdfViewer.renderer === _ui_utils.RendererType.SVG);
- },
- forceRendering() {
- this.pdfRenderingQueue.printing = !!this.printService;
- this.pdfRenderingQueue.isThumbnailViewEnabled = this.pdfSidebar.isThumbnailViewVisible;
- this.pdfRenderingQueue.renderHighestPriority();
- },
- beforePrint() {
- this.pdfScriptingManager.dispatchWillPrint();
- if (this.printService) {
- return;
- }
- if (!this.supportsPrinting) {
- this.l10n.get("printing_not_supported").then(msg => {
- this._otherError(msg);
- });
- return;
- }
- if (!this.pdfViewer.pageViewsReady) {
- this.l10n.get("printing_not_ready").then(msg => {
- window.alert(msg);
- });
- return;
- }
- const pagesOverview = this.pdfViewer.getPagesOverview();
- const printContainer = this.appConfig.printContainer;
- const printResolution = _app_options.AppOptions.get("printResolution");
- const optionalContentConfigPromise = this.pdfViewer.optionalContentConfigPromise;
- const printService = PDFPrintServiceFactory.instance.createPrintService(this.pdfDocument, pagesOverview, printContainer, printResolution, optionalContentConfigPromise, this.l10n);
- this.printService = printService;
- this.forceRendering();
- printService.layout();
- this.externalServices.reportTelemetry({
- type: "print"
- });
- },
- afterPrint() {
- this.pdfScriptingManager.dispatchDidPrint();
- if (this.printService) {
- this.printService.destroy();
- this.printService = null;
- this.pdfDocument?.annotationStorage.resetModified();
- }
- this.forceRendering();
- },
- rotatePages(delta) {
- this.pdfViewer.pagesRotation += delta;
- },
- requestPresentationMode() {
- this.pdfPresentationMode?.request();
- },
- triggerPrinting() {
- if (!this.supportsPrinting) {
- return;
- }
- window.print();
- },
- bindEvents() {
- const {
- eventBus,
- _boundEvents
- } = this;
- _boundEvents.beforePrint = this.beforePrint.bind(this);
- _boundEvents.afterPrint = this.afterPrint.bind(this);
- eventBus._on("resize", webViewerResize);
- eventBus._on("hashchange", webViewerHashchange);
- eventBus._on("beforeprint", _boundEvents.beforePrint);
- eventBus._on("afterprint", _boundEvents.afterPrint);
- eventBus._on("pagerendered", webViewerPageRendered);
- eventBus._on("updateviewarea", webViewerUpdateViewarea);
- eventBus._on("pagechanging", webViewerPageChanging);
- eventBus._on("scalechanging", webViewerScaleChanging);
- eventBus._on("rotationchanging", webViewerRotationChanging);
- eventBus._on("sidebarviewchanged", webViewerSidebarViewChanged);
- eventBus._on("pagemode", webViewerPageMode);
- eventBus._on("namedaction", webViewerNamedAction);
- eventBus._on("presentationmodechanged", webViewerPresentationModeChanged);
- eventBus._on("presentationmode", webViewerPresentationMode);
- eventBus._on("print", webViewerPrint);
- eventBus._on("download", webViewerDownload);
- eventBus._on("save", webViewerSave);
- eventBus._on("firstpage", webViewerFirstPage);
- eventBus._on("lastpage", webViewerLastPage);
- eventBus._on("nextpage", webViewerNextPage);
- eventBus._on("previouspage", webViewerPreviousPage);
- eventBus._on("zoomin", webViewerZoomIn);
- eventBus._on("zoomout", webViewerZoomOut);
- eventBus._on("zoomreset", webViewerZoomReset);
- eventBus._on("pagenumberchanged", webViewerPageNumberChanged);
- eventBus._on("scalechanged", webViewerScaleChanged);
- eventBus._on("rotatecw", webViewerRotateCw);
- eventBus._on("rotateccw", webViewerRotateCcw);
- eventBus._on("optionalcontentconfig", webViewerOptionalContentConfig);
- eventBus._on("switchscrollmode", webViewerSwitchScrollMode);
- eventBus._on("scrollmodechanged", webViewerScrollModeChanged);
- eventBus._on("switchspreadmode", webViewerSwitchSpreadMode);
- eventBus._on("spreadmodechanged", webViewerSpreadModeChanged);
- eventBus._on("documentproperties", webViewerDocumentProperties);
- eventBus._on("findfromurlhash", webViewerFindFromUrlHash);
- eventBus._on("updatefindmatchescount", webViewerUpdateFindMatchesCount);
- eventBus._on("updatefindcontrolstate", webViewerUpdateFindControlState);
- if (_app_options.AppOptions.get("pdfBug")) {
- _boundEvents.reportPageStatsPDFBug = reportPageStatsPDFBug;
- eventBus._on("pagerendered", _boundEvents.reportPageStatsPDFBug);
- eventBus._on("pagechanging", _boundEvents.reportPageStatsPDFBug);
- }
- eventBus._on("fileinputchange", webViewerFileInputChange);
- eventBus._on("openfile", webViewerOpenFile);
- },
- bindWindowEvents() {
- const {
- eventBus,
- _boundEvents
- } = this;
- _boundEvents.windowResize = () => {
- eventBus.dispatch("resize", {
- source: window
- });
- };
- _boundEvents.windowHashChange = () => {
- eventBus.dispatch("hashchange", {
- source: window,
- hash: document.location.hash.substring(1)
- });
- };
- _boundEvents.windowBeforePrint = () => {
- eventBus.dispatch("beforeprint", {
- source: window
- });
- };
- _boundEvents.windowAfterPrint = () => {
- eventBus.dispatch("afterprint", {
- source: window
- });
- };
- _boundEvents.windowUpdateFromSandbox = event => {
- eventBus.dispatch("updatefromsandbox", {
- source: window,
- detail: event.detail
- });
- };
- window.addEventListener("visibilitychange", webViewerVisibilityChange);
- window.addEventListener("wheel", webViewerWheel, {
- passive: false
- });
- window.addEventListener("touchstart", webViewerTouchStart, {
- passive: false
- });
- window.addEventListener("click", webViewerClick);
- window.addEventListener("keydown", webViewerKeyDown);
- window.addEventListener("resize", _boundEvents.windowResize);
- window.addEventListener("hashchange", _boundEvents.windowHashChange);
- window.addEventListener("beforeprint", _boundEvents.windowBeforePrint);
- window.addEventListener("afterprint", _boundEvents.windowAfterPrint);
- window.addEventListener("updatefromsandbox", _boundEvents.windowUpdateFromSandbox);
- },
- unbindEvents() {
- const {
- eventBus,
- _boundEvents
- } = this;
- eventBus._off("resize", webViewerResize);
- eventBus._off("hashchange", webViewerHashchange);
- eventBus._off("beforeprint", _boundEvents.beforePrint);
- eventBus._off("afterprint", _boundEvents.afterPrint);
- eventBus._off("pagerendered", webViewerPageRendered);
- eventBus._off("updateviewarea", webViewerUpdateViewarea);
- eventBus._off("pagechanging", webViewerPageChanging);
- eventBus._off("scalechanging", webViewerScaleChanging);
- eventBus._off("rotationchanging", webViewerRotationChanging);
- eventBus._off("sidebarviewchanged", webViewerSidebarViewChanged);
- eventBus._off("pagemode", webViewerPageMode);
- eventBus._off("namedaction", webViewerNamedAction);
- eventBus._off("presentationmodechanged", webViewerPresentationModeChanged);
- eventBus._off("presentationmode", webViewerPresentationMode);
- eventBus._off("print", webViewerPrint);
- eventBus._off("download", webViewerDownload);
- eventBus._off("save", webViewerSave);
- eventBus._off("firstpage", webViewerFirstPage);
- eventBus._off("lastpage", webViewerLastPage);
- eventBus._off("nextpage", webViewerNextPage);
- eventBus._off("previouspage", webViewerPreviousPage);
- eventBus._off("zoomin", webViewerZoomIn);
- eventBus._off("zoomout", webViewerZoomOut);
- eventBus._off("zoomreset", webViewerZoomReset);
- eventBus._off("pagenumberchanged", webViewerPageNumberChanged);
- eventBus._off("scalechanged", webViewerScaleChanged);
- eventBus._off("rotatecw", webViewerRotateCw);
- eventBus._off("rotateccw", webViewerRotateCcw);
- eventBus._off("optionalcontentconfig", webViewerOptionalContentConfig);
- eventBus._off("switchscrollmode", webViewerSwitchScrollMode);
- eventBus._off("scrollmodechanged", webViewerScrollModeChanged);
- eventBus._off("switchspreadmode", webViewerSwitchSpreadMode);
- eventBus._off("spreadmodechanged", webViewerSpreadModeChanged);
- eventBus._off("documentproperties", webViewerDocumentProperties);
- eventBus._off("findfromurlhash", webViewerFindFromUrlHash);
- eventBus._off("updatefindmatchescount", webViewerUpdateFindMatchesCount);
- eventBus._off("updatefindcontrolstate", webViewerUpdateFindControlState);
- if (_boundEvents.reportPageStatsPDFBug) {
- eventBus._off("pagerendered", _boundEvents.reportPageStatsPDFBug);
- eventBus._off("pagechanging", _boundEvents.reportPageStatsPDFBug);
- _boundEvents.reportPageStatsPDFBug = null;
- }
- eventBus._off("fileinputchange", webViewerFileInputChange);
- eventBus._off("openfile", webViewerOpenFile);
- _boundEvents.beforePrint = null;
- _boundEvents.afterPrint = null;
- },
- unbindWindowEvents() {
- const {
- _boundEvents
- } = this;
- window.removeEventListener("visibilitychange", webViewerVisibilityChange);
- window.removeEventListener("wheel", webViewerWheel, {
- passive: false
- });
- window.removeEventListener("touchstart", webViewerTouchStart, {
- passive: false
- });
- window.removeEventListener("click", webViewerClick);
- window.removeEventListener("keydown", webViewerKeyDown);
- window.removeEventListener("resize", _boundEvents.windowResize);
- window.removeEventListener("hashchange", _boundEvents.windowHashChange);
- window.removeEventListener("beforeprint", _boundEvents.windowBeforePrint);
- window.removeEventListener("afterprint", _boundEvents.windowAfterPrint);
- window.removeEventListener("updatefromsandbox", _boundEvents.windowUpdateFromSandbox);
- _boundEvents.windowResize = null;
- _boundEvents.windowHashChange = null;
- _boundEvents.windowBeforePrint = null;
- _boundEvents.windowAfterPrint = null;
- _boundEvents.windowUpdateFromSandbox = null;
- },
- accumulateWheelTicks(ticks) {
- if (this._wheelUnusedTicks > 0 && ticks < 0 || this._wheelUnusedTicks < 0 && ticks > 0) {
- this._wheelUnusedTicks = 0;
- }
- this._wheelUnusedTicks += ticks;
- const wholeTicks = Math.sign(this._wheelUnusedTicks) * Math.floor(Math.abs(this._wheelUnusedTicks));
- this._wheelUnusedTicks -= wholeTicks;
- return wholeTicks;
- },
- _unblockDocumentLoadEvent() {
- if (document.blockUnblockOnload) {
- document.blockUnblockOnload(false);
- }
- this._unblockDocumentLoadEvent = () => {};
- },
- _reportDocumentStatsTelemetry() {
- const {
- stats
- } = this.pdfDocument;
- if (stats !== this._docStats) {
- this._docStats = stats;
- this.externalServices.reportTelemetry({
- type: "documentStats",
- stats
- });
- }
- },
- get scriptingReady() {
- return this.pdfScriptingManager.ready;
- }
- };
- exports.PDFViewerApplication = PDFViewerApplication;
- let validateFileURL;
- {
- const HOSTED_VIEWER_ORIGINS = ["null", "http://mozilla.github.io", "https://mozilla.github.io"];
- validateFileURL = function (file) {
- if (file === undefined) {
- return;
- }
- try {
- const viewerOrigin = new URL(window.location.href).origin || "null";
- if (HOSTED_VIEWER_ORIGINS.includes(viewerOrigin)) {
- return;
- }
- const fileOrigin = new URL(file, window.location.href).origin;
- if (fileOrigin !== viewerOrigin) {
- throw new Error("file origin does not match viewer's");
- }
- } catch (ex) {
- PDFViewerApplication.l10n.get("loading_error").then(msg => {
- PDFViewerApplication._documentError(msg, {
- message: ex?.message
- });
- });
- throw ex;
- }
- };
- }
- async function loadFakeWorker() {
- if (!_pdf.GlobalWorkerOptions.workerSrc) {
- _pdf.GlobalWorkerOptions.workerSrc = _app_options.AppOptions.get("workerSrc");
- }
- await (0, _pdf.loadScript)(_pdf.PDFWorker.workerSrc);
- }
- async function initPDFBug(enabledTabs) {
- const {
- debuggerScriptPath,
- mainContainer
- } = PDFViewerApplication.appConfig;
- await (0, _pdf.loadScript)(debuggerScriptPath);
- PDFBug.init({
- OPS: _pdf.OPS
- }, mainContainer, enabledTabs);
- }
- function reportPageStatsPDFBug({
- pageNumber
- }) {
- if (typeof Stats === "undefined" || !Stats.enabled) {
- return;
- }
- const pageView = PDFViewerApplication.pdfViewer.getPageView(pageNumber - 1);
- const pageStats = pageView?.pdfPage?.stats;
- if (!pageStats) {
- return;
- }
- Stats.add(pageNumber, pageStats);
- }
- function webViewerInitialized() {
- const appConfig = PDFViewerApplication.appConfig;
- let file;
- const queryString = document.location.search.substring(1);
- const params = (0, _ui_utils.parseQueryString)(queryString);
- file = params.get("file") ?? _app_options.AppOptions.get("defaultUrl");
- validateFileURL(file);
- const fileInput = document.createElement("input");
- fileInput.id = appConfig.openFileInputName;
- fileInput.className = "fileInput";
- fileInput.setAttribute("type", "file");
- fileInput.oncontextmenu = _ui_utils.noContextMenuHandler;
- document.body.appendChild(fileInput);
- if (!window.File || !window.FileReader || !window.FileList || !window.Blob) {
- appConfig.toolbar.openFile.hidden = true;
- appConfig.secondaryToolbar.openFileButton.hidden = true;
- } else {
- fileInput.value = null;
- }
- fileInput.addEventListener("change", function (evt) {
- const files = evt.target.files;
- if (!files || files.length === 0) {
- return;
- }
- PDFViewerApplication.eventBus.dispatch("fileinputchange", {
- source: this,
- fileInput: evt.target
- });
- });
- appConfig.mainContainer.addEventListener("dragover", function (evt) {
- evt.preventDefault();
- evt.dataTransfer.dropEffect = "move";
- });
- appConfig.mainContainer.addEventListener("drop", function (evt) {
- evt.preventDefault();
- const files = evt.dataTransfer.files;
- if (!files || files.length === 0) {
- return;
- }
- PDFViewerApplication.eventBus.dispatch("fileinputchange", {
- source: this,
- fileInput: evt.dataTransfer
- });
- });
- if (!PDFViewerApplication.supportsDocumentFonts) {
- _app_options.AppOptions.set("disableFontFace", true);
- PDFViewerApplication.l10n.get("web_fonts_disabled").then(msg => {
- console.warn(msg);
- });
- }
- if (!PDFViewerApplication.supportsPrinting) {
- appConfig.toolbar.print.classList.add("hidden");
- appConfig.secondaryToolbar.printButton.classList.add("hidden");
- }
- if (!PDFViewerApplication.supportsFullscreen) {
- appConfig.toolbar.presentationModeButton.classList.add("hidden");
- appConfig.secondaryToolbar.presentationModeButton.classList.add("hidden");
- }
- if (PDFViewerApplication.supportsIntegratedFind) {
- appConfig.toolbar.viewFind.classList.add("hidden");
- }
- appConfig.mainContainer.addEventListener("transitionend", function (evt) {
- if (evt.target === this) {
- PDFViewerApplication.eventBus.dispatch("resize", {
- source: this
- });
- }
- }, true);
- try {
- webViewerOpenFileViaURL(file);
- } catch (reason) {
- PDFViewerApplication.l10n.get("loading_error").then(msg => {
- PDFViewerApplication._documentError(msg, reason);
- });
- }
- }
- function webViewerOpenFileViaURL(file) {
- if (file) {
- PDFViewerApplication.open(file);
- } else {
- PDFViewerApplication._hideViewBookmark();
- }
- }
- function webViewerPageRendered({
- pageNumber,
- error
- }) {
- if (pageNumber === PDFViewerApplication.page) {
- PDFViewerApplication.toolbar.updateLoadingIndicatorState(false);
- }
- if (PDFViewerApplication.pdfSidebar.isThumbnailViewVisible) {
- const pageView = PDFViewerApplication.pdfViewer.getPageView(pageNumber - 1);
- const thumbnailView = PDFViewerApplication.pdfThumbnailViewer.getThumbnail(pageNumber - 1);
- if (pageView && thumbnailView) {
- thumbnailView.setImage(pageView);
- }
- }
- if (error) {
- PDFViewerApplication.l10n.get("rendering_error").then(msg => {
- PDFViewerApplication._otherError(msg, error);
- });
- }
- PDFViewerApplication._reportDocumentStatsTelemetry();
- }
- function webViewerPageMode({
- mode
- }) {
- let view;
- switch (mode) {
- case "thumbs":
- view = _ui_utils.SidebarView.THUMBS;
- break;
- case "bookmarks":
- case "outline":
- view = _ui_utils.SidebarView.OUTLINE;
- break;
- case "attachments":
- view = _ui_utils.SidebarView.ATTACHMENTS;
- break;
- case "layers":
- view = _ui_utils.SidebarView.LAYERS;
- break;
- case "none":
- view = _ui_utils.SidebarView.NONE;
- break;
- default:
- console.error('Invalid "pagemode" hash parameter: ' + mode);
- return;
- }
- PDFViewerApplication.pdfSidebar.switchView(view, true);
- }
- function webViewerNamedAction(evt) {
- switch (evt.action) {
- case "GoToPage":
- PDFViewerApplication.appConfig.toolbar.pageNumber.select();
- break;
- case "Find":
- if (!PDFViewerApplication.supportsIntegratedFind) {
- PDFViewerApplication.findBar.toggle();
- }
- break;
- case "Print":
- PDFViewerApplication.triggerPrinting();
- break;
- case "SaveAs":
- webViewerSave();
- break;
- }
- }
- function webViewerPresentationModeChanged(evt) {
- PDFViewerApplication.pdfViewer.presentationModeState = evt.state;
- }
- function webViewerSidebarViewChanged(evt) {
- PDFViewerApplication.pdfRenderingQueue.isThumbnailViewEnabled = PDFViewerApplication.pdfSidebar.isThumbnailViewVisible;
- if (PDFViewerApplication.isInitialViewSet) {
- PDFViewerApplication.store?.set("sidebarView", evt.view).catch(() => {});
- }
- }
- function webViewerUpdateViewarea(evt) {
- const location = evt.location;
- if (PDFViewerApplication.isInitialViewSet) {
- PDFViewerApplication.store?.setMultiple({
- page: location.pageNumber,
- zoom: location.scale,
- scrollLeft: location.left,
- scrollTop: location.top,
- rotation: location.rotation
- }).catch(() => {});
- }
- const href = PDFViewerApplication.pdfLinkService.getAnchorUrl(location.pdfOpenParams);
- PDFViewerApplication.appConfig.toolbar.viewBookmark.href = href;
- PDFViewerApplication.appConfig.secondaryToolbar.viewBookmarkButton.href = href;
- const currentPage = PDFViewerApplication.pdfViewer.getPageView(PDFViewerApplication.page - 1);
- const loading = currentPage?.renderingState !== _ui_utils.RenderingStates.FINISHED;
- PDFViewerApplication.toolbar.updateLoadingIndicatorState(loading);
- }
- function webViewerScrollModeChanged(evt) {
- if (PDFViewerApplication.isInitialViewSet) {
- PDFViewerApplication.store?.set("scrollMode", evt.mode).catch(() => {});
- }
- }
- function webViewerSpreadModeChanged(evt) {
- if (PDFViewerApplication.isInitialViewSet) {
- PDFViewerApplication.store?.set("spreadMode", evt.mode).catch(() => {});
- }
- }
- function webViewerResize() {
- const {
- pdfDocument,
- pdfViewer
- } = PDFViewerApplication;
- if (!pdfDocument) {
- return;
- }
- const currentScaleValue = pdfViewer.currentScaleValue;
- if (currentScaleValue === "auto" || currentScaleValue === "page-fit" || currentScaleValue === "page-width") {
- pdfViewer.currentScaleValue = currentScaleValue;
- }
- pdfViewer.update();
- }
- function webViewerHashchange(evt) {
- const hash = evt.hash;
- if (!hash) {
- return;
- }
- if (!PDFViewerApplication.isInitialViewSet) {
- PDFViewerApplication.initialBookmark = hash;
- } else if (!PDFViewerApplication.pdfHistory?.popStateInProgress) {
- PDFViewerApplication.pdfLinkService.setHash(hash);
- }
- }
- let webViewerFileInputChange, webViewerOpenFile;
- {
- webViewerFileInputChange = function (evt) {
- if (PDFViewerApplication.pdfViewer?.isInPresentationMode) {
- return;
- }
- const file = evt.fileInput.files[0];
- let url = URL.createObjectURL(file);
- if (file.name) {
- url = {
- url,
- originalUrl: file.name
- };
- }
- PDFViewerApplication.open(url);
- };
- webViewerOpenFile = function (evt) {
- const openFileInputName = PDFViewerApplication.appConfig.openFileInputName;
- document.getElementById(openFileInputName).click();
- };
- }
- function webViewerPresentationMode() {
- PDFViewerApplication.requestPresentationMode();
- }
- function webViewerPrint() {
- PDFViewerApplication.triggerPrinting();
- }
- function webViewerDownload() {
- PDFViewerApplication.downloadOrSave({
- sourceEventType: "download"
- });
- }
- function webViewerSave() {
- PDFViewerApplication.downloadOrSave({
- sourceEventType: "save"
- });
- }
- function webViewerFirstPage() {
- if (PDFViewerApplication.pdfDocument) {
- PDFViewerApplication.page = 1;
- }
- }
- function webViewerLastPage() {
- if (PDFViewerApplication.pdfDocument) {
- PDFViewerApplication.page = PDFViewerApplication.pagesCount;
- }
- }
- function webViewerNextPage() {
- PDFViewerApplication.pdfViewer.nextPage();
- }
- function webViewerPreviousPage() {
- PDFViewerApplication.pdfViewer.previousPage();
- }
- function webViewerZoomIn() {
- PDFViewerApplication.zoomIn();
- }
- function webViewerZoomOut() {
- PDFViewerApplication.zoomOut();
- }
- function webViewerZoomReset() {
- PDFViewerApplication.zoomReset();
- }
- function webViewerPageNumberChanged(evt) {
- const pdfViewer = PDFViewerApplication.pdfViewer;
- if (evt.value !== "") {
- PDFViewerApplication.pdfLinkService.goToPage(evt.value);
- }
- if (evt.value !== pdfViewer.currentPageNumber.toString() && evt.value !== pdfViewer.currentPageLabel) {
- PDFViewerApplication.toolbar.setPageNumber(pdfViewer.currentPageNumber, pdfViewer.currentPageLabel);
- }
- }
- function webViewerScaleChanged(evt) {
- PDFViewerApplication.pdfViewer.currentScaleValue = evt.value;
- }
- function webViewerRotateCw() {
- PDFViewerApplication.rotatePages(90);
- }
- function webViewerRotateCcw() {
- PDFViewerApplication.rotatePages(-90);
- }
- function webViewerOptionalContentConfig(evt) {
- PDFViewerApplication.pdfViewer.optionalContentConfigPromise = evt.promise;
- }
- function webViewerSwitchScrollMode(evt) {
- PDFViewerApplication.pdfViewer.scrollMode = evt.mode;
- }
- function webViewerSwitchSpreadMode(evt) {
- PDFViewerApplication.pdfViewer.spreadMode = evt.mode;
- }
- function webViewerDocumentProperties() {
- PDFViewerApplication.pdfDocumentProperties.open();
- }
- function webViewerFindFromUrlHash(evt) {
- PDFViewerApplication.eventBus.dispatch("find", {
- source: evt.source,
- type: "",
- query: evt.query,
- phraseSearch: evt.phraseSearch,
- caseSensitive: false,
- entireWord: false,
- highlightAll: true,
- findPrevious: false,
- matchDiacritics: true
- });
- }
- function webViewerUpdateFindMatchesCount({
- matchesCount
- }) {
- if (PDFViewerApplication.supportsIntegratedFind) {
- PDFViewerApplication.externalServices.updateFindMatchesCount(matchesCount);
- } else {
- PDFViewerApplication.findBar.updateResultsCount(matchesCount);
- }
- }
- function webViewerUpdateFindControlState({
- state,
- previous,
- matchesCount,
- rawQuery
- }) {
- if (PDFViewerApplication.supportsIntegratedFind) {
- PDFViewerApplication.externalServices.updateFindControlState({
- result: state,
- findPrevious: previous,
- matchesCount,
- rawQuery
- });
- } else {
- PDFViewerApplication.findBar.updateUIState(state, previous, matchesCount);
- }
- }
- function webViewerScaleChanging(evt) {
- PDFViewerApplication.toolbar.setPageScale(evt.presetValue, evt.scale);
- PDFViewerApplication.pdfViewer.update();
- }
- function webViewerRotationChanging(evt) {
- PDFViewerApplication.pdfThumbnailViewer.pagesRotation = evt.pagesRotation;
- PDFViewerApplication.forceRendering();
- PDFViewerApplication.pdfViewer.currentPageNumber = evt.pageNumber;
- }
- function webViewerPageChanging({
- pageNumber,
- pageLabel
- }) {
- PDFViewerApplication.toolbar.setPageNumber(pageNumber, pageLabel);
- PDFViewerApplication.secondaryToolbar.setPageNumber(pageNumber);
- if (PDFViewerApplication.pdfSidebar.isThumbnailViewVisible) {
- PDFViewerApplication.pdfThumbnailViewer.scrollThumbnailIntoView(pageNumber);
- }
- }
- function webViewerVisibilityChange(evt) {
- if (document.visibilityState === "visible") {
- setZoomDisabledTimeout();
- }
- }
- let zoomDisabledTimeout = null;
- function setZoomDisabledTimeout() {
- if (zoomDisabledTimeout) {
- clearTimeout(zoomDisabledTimeout);
- }
- zoomDisabledTimeout = setTimeout(function () {
- zoomDisabledTimeout = null;
- }, WHEEL_ZOOM_DISABLED_TIMEOUT);
- }
- function webViewerWheel(evt) {
- const {
- pdfViewer,
- supportedMouseWheelZoomModifierKeys
- } = PDFViewerApplication;
- if (pdfViewer.isInPresentationMode) {
- return;
- }
- if (evt.ctrlKey && supportedMouseWheelZoomModifierKeys.ctrlKey || evt.metaKey && supportedMouseWheelZoomModifierKeys.metaKey) {
- evt.preventDefault();
- if (zoomDisabledTimeout || document.visibilityState === "hidden") {
- return;
- }
- const deltaMode = evt.deltaMode;
- const delta = (0, _ui_utils.normalizeWheelEventDirection)(evt);
- const previousScale = pdfViewer.currentScale;
- let ticks = 0;
- if (deltaMode === WheelEvent.DOM_DELTA_LINE || deltaMode === WheelEvent.DOM_DELTA_PAGE) {
- if (Math.abs(delta) >= 1) {
- ticks = Math.sign(delta);
- } else {
- ticks = PDFViewerApplication.accumulateWheelTicks(delta);
- }
- } else {
- const PIXELS_PER_LINE_SCALE = 30;
- ticks = PDFViewerApplication.accumulateWheelTicks(delta / PIXELS_PER_LINE_SCALE);
- }
- if (ticks < 0) {
- PDFViewerApplication.zoomOut(-ticks);
- } else if (ticks > 0) {
- PDFViewerApplication.zoomIn(ticks);
- }
- const currentScale = pdfViewer.currentScale;
- if (previousScale !== currentScale) {
- const scaleCorrectionFactor = currentScale / previousScale - 1;
- const rect = pdfViewer.container.getBoundingClientRect();
- const dx = evt.clientX - rect.left;
- const dy = evt.clientY - rect.top;
- pdfViewer.container.scrollLeft += dx * scaleCorrectionFactor;
- pdfViewer.container.scrollTop += dy * scaleCorrectionFactor;
- }
- } else {
- setZoomDisabledTimeout();
- }
- }
- function webViewerTouchStart(evt) {
- if (evt.touches.length > 1) {
- evt.preventDefault();
- }
- }
- function webViewerClick(evt) {
- if (!PDFViewerApplication.secondaryToolbar.isOpen) {
- return;
- }
- const appConfig = PDFViewerApplication.appConfig;
- if (PDFViewerApplication.pdfViewer.containsElement(evt.target) || appConfig.toolbar.container.contains(evt.target) && evt.target !== appConfig.secondaryToolbar.toggleButton) {
- PDFViewerApplication.secondaryToolbar.close();
- }
- }
- function webViewerKeyDown(evt) {
- if (PDFViewerApplication.overlayManager.active) {
- return;
- }
- const {
- eventBus,
- pdfViewer
- } = PDFViewerApplication;
- const isViewerInPresentationMode = pdfViewer.isInPresentationMode;
- let handled = false,
- ensureViewerFocused = false;
- const cmd = (evt.ctrlKey ? 1 : 0) | (evt.altKey ? 2 : 0) | (evt.shiftKey ? 4 : 0) | (evt.metaKey ? 8 : 0);
- if (cmd === 1 || cmd === 8 || cmd === 5 || cmd === 12) {
- switch (evt.keyCode) {
- case 70:
- if (!PDFViewerApplication.supportsIntegratedFind && !evt.shiftKey) {
- PDFViewerApplication.findBar.open();
- handled = true;
- }
- break;
- case 71:
- if (!PDFViewerApplication.supportsIntegratedFind) {
- const {
- state
- } = PDFViewerApplication.findController;
- if (state) {
- const eventState = Object.assign(Object.create(null), state, {
- source: window,
- type: "again",
- findPrevious: cmd === 5 || cmd === 12
- });
- eventBus.dispatch("find", eventState);
- }
- handled = true;
- }
- break;
- case 61:
- case 107:
- case 187:
- case 171:
- if (!isViewerInPresentationMode) {
- PDFViewerApplication.zoomIn();
- }
- handled = true;
- break;
- case 173:
- case 109:
- case 189:
- if (!isViewerInPresentationMode) {
- PDFViewerApplication.zoomOut();
- }
- handled = true;
- break;
- case 48:
- case 96:
- if (!isViewerInPresentationMode) {
- setTimeout(function () {
- PDFViewerApplication.zoomReset();
- });
- handled = false;
- }
- break;
- case 38:
- if (isViewerInPresentationMode || PDFViewerApplication.page > 1) {
- PDFViewerApplication.page = 1;
- handled = true;
- ensureViewerFocused = true;
- }
- break;
- case 40:
- if (isViewerInPresentationMode || PDFViewerApplication.page < PDFViewerApplication.pagesCount) {
- PDFViewerApplication.page = PDFViewerApplication.pagesCount;
- handled = true;
- ensureViewerFocused = true;
- }
- break;
- }
- }
- if (cmd === 1 || cmd === 8) {
- switch (evt.keyCode) {
- case 83:
- eventBus.dispatch("download", {
- source: window
- });
- handled = true;
- break;
- case 79:
- {
- eventBus.dispatch("openfile", {
- source: window
- });
- handled = true;
- }
- break;
- }
- }
- if (cmd === 3 || cmd === 10) {
- switch (evt.keyCode) {
- case 80:
- PDFViewerApplication.requestPresentationMode();
- handled = true;
- break;
- case 71:
- PDFViewerApplication.appConfig.toolbar.pageNumber.select();
- handled = true;
- break;
- }
- }
- if (handled) {
- if (ensureViewerFocused && !isViewerInPresentationMode) {
- pdfViewer.focus();
- }
- evt.preventDefault();
- return;
- }
- const curElement = (0, _ui_utils.getActiveOrFocusedElement)();
- const curElementTagName = curElement?.tagName.toUpperCase();
- if (curElementTagName === "INPUT" || curElementTagName === "TEXTAREA" || curElementTagName === "SELECT" || curElement?.isContentEditable) {
- if (evt.keyCode !== 27) {
- return;
- }
- }
- if (cmd === 0) {
- let turnPage = 0,
- turnOnlyIfPageFit = false;
- switch (evt.keyCode) {
- case 38:
- case 33:
- if (pdfViewer.isVerticalScrollbarEnabled) {
- turnOnlyIfPageFit = true;
- }
- turnPage = -1;
- break;
- case 8:
- if (!isViewerInPresentationMode) {
- turnOnlyIfPageFit = true;
- }
- turnPage = -1;
- break;
- case 37:
- if (pdfViewer.isHorizontalScrollbarEnabled) {
- turnOnlyIfPageFit = true;
- }
- case 75:
- case 80:
- turnPage = -1;
- break;
- case 27:
- if (PDFViewerApplication.secondaryToolbar.isOpen) {
- PDFViewerApplication.secondaryToolbar.close();
- handled = true;
- }
- if (!PDFViewerApplication.supportsIntegratedFind && PDFViewerApplication.findBar.opened) {
- PDFViewerApplication.findBar.close();
- handled = true;
- }
- break;
- case 40:
- case 34:
- if (pdfViewer.isVerticalScrollbarEnabled) {
- turnOnlyIfPageFit = true;
- }
- turnPage = 1;
- break;
- case 13:
- case 32:
- if (!isViewerInPresentationMode) {
- turnOnlyIfPageFit = true;
- }
- turnPage = 1;
- break;
- case 39:
- if (pdfViewer.isHorizontalScrollbarEnabled) {
- turnOnlyIfPageFit = true;
- }
- case 74:
- case 78:
- turnPage = 1;
- break;
- case 36:
- if (isViewerInPresentationMode || PDFViewerApplication.page > 1) {
- PDFViewerApplication.page = 1;
- handled = true;
- ensureViewerFocused = true;
- }
- break;
- case 35:
- if (isViewerInPresentationMode || PDFViewerApplication.page < PDFViewerApplication.pagesCount) {
- PDFViewerApplication.page = PDFViewerApplication.pagesCount;
- handled = true;
- ensureViewerFocused = true;
- }
- break;
- case 83:
- PDFViewerApplication.pdfCursorTools.switchTool(_pdf_cursor_tools.CursorTool.SELECT);
- break;
- case 72:
- PDFViewerApplication.pdfCursorTools.switchTool(_pdf_cursor_tools.CursorTool.HAND);
- break;
- case 82:
- PDFViewerApplication.rotatePages(90);
- break;
- case 115:
- PDFViewerApplication.pdfSidebar.toggle();
- break;
- }
- if (turnPage !== 0 && (!turnOnlyIfPageFit || pdfViewer.currentScaleValue === "page-fit")) {
- if (turnPage > 0) {
- pdfViewer.nextPage();
- } else {
- pdfViewer.previousPage();
- }
- handled = true;
- }
- }
- if (cmd === 4) {
- switch (evt.keyCode) {
- case 13:
- case 32:
- if (!isViewerInPresentationMode && pdfViewer.currentScaleValue !== "page-fit") {
- break;
- }
- pdfViewer.previousPage();
- handled = true;
- break;
- case 82:
- PDFViewerApplication.rotatePages(-90);
- break;
- }
- }
- if (!handled && !isViewerInPresentationMode) {
- if (evt.keyCode >= 33 && evt.keyCode <= 40 || evt.keyCode === 32 && curElementTagName !== "BUTTON") {
- ensureViewerFocused = true;
- }
- }
- if (ensureViewerFocused && !pdfViewer.containsElement(curElement)) {
- pdfViewer.focus();
- }
- if (handled) {
- evt.preventDefault();
- }
- }
- function beforeUnload(evt) {
- evt.preventDefault();
- evt.returnValue = "";
- return false;
- }
- const PDFPrintServiceFactory = {
- instance: {
- supportsPrinting: false,
- createPrintService() {
- throw new Error("Not implemented: createPrintService");
- }
- }
- };
- exports.PDFPrintServiceFactory = PDFPrintServiceFactory;
|