123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173 |
- /**
- * @licstart The following is the entire license notice for the
- * Javascript code in this page
- *
- * Copyright 2019 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.BaseViewer = void 0;
- var _ui_utils = require("./ui_utils");
- var _pdf_rendering_queue = require("./pdf_rendering_queue");
- var _annotation_layer_builder = require("./annotation_layer_builder");
- var _pdf = require("../pdf");
- var _pdf_page_view = require("./pdf_page_view");
- var _pdf_link_service = require("./pdf_link_service");
- var _text_layer_builder = require("./text_layer_builder");
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
- var DEFAULT_CACHE_SIZE = 10;
- function PDFPageViewBuffer(size) {
- var data = [];
- this.push = function (view) {
- var i = data.indexOf(view);
- if (i >= 0) {
- data.splice(i, 1);
- }
- data.push(view);
- if (data.length > size) {
- data.shift().destroy();
- }
- };
- this.resize = function (newSize, pagesToKeep) {
- size = newSize;
- if (pagesToKeep) {
- var pageIdsToKeep = new Set();
- for (var i = 0, iMax = pagesToKeep.length; i < iMax; ++i) {
- pageIdsToKeep.add(pagesToKeep[i].id);
- }
- (0, _ui_utils.moveToEndOfArray)(data, function (page) {
- return pageIdsToKeep.has(page.id);
- });
- }
- while (data.length > size) {
- data.shift().destroy();
- }
- };
- }
- function isSameScale(oldScale, newScale) {
- if (newScale === oldScale) {
- return true;
- }
- if (Math.abs(newScale - oldScale) < 1e-15) {
- return true;
- }
- return false;
- }
- var BaseViewer =
- /*#__PURE__*/
- function () {
- function BaseViewer(options) {
- var _this = this;
- _classCallCheck(this, BaseViewer);
- if (this.constructor === BaseViewer) {
- throw new Error('Cannot initialize BaseViewer.');
- }
- this._name = this.constructor.name;
- this.container = options.container;
- this.viewer = options.viewer || options.container.firstElementChild;
- this.eventBus = options.eventBus || (0, _ui_utils.getGlobalEventBus)();
- this.linkService = options.linkService || new _pdf_link_service.SimpleLinkService();
- this.downloadManager = options.downloadManager || null;
- this.findController = options.findController || null;
- this.removePageBorders = options.removePageBorders || false;
- this.textLayerMode = Number.isInteger(options.textLayerMode) ? options.textLayerMode : _ui_utils.TextLayerMode.ENABLE;
- this.imageResourcesPath = options.imageResourcesPath || '';
- this.renderInteractiveForms = options.renderInteractiveForms || false;
- this.enablePrintAutoRotate = options.enablePrintAutoRotate || false;
- this.renderer = options.renderer || _ui_utils.RendererType.CANVAS;
- this.enableWebGL = options.enableWebGL || false;
- this.useOnlyCssZoom = options.useOnlyCssZoom || false;
- this.maxCanvasPixels = options.maxCanvasPixels;
- this.l10n = options.l10n || _ui_utils.NullL10n;
- this.defaultRenderingQueue = !options.renderingQueue;
- if (this.defaultRenderingQueue) {
- this.renderingQueue = new _pdf_rendering_queue.PDFRenderingQueue();
- this.renderingQueue.setViewer(this);
- } else {
- this.renderingQueue = options.renderingQueue;
- }
- this.scroll = (0, _ui_utils.watchScroll)(this.container, this._scrollUpdate.bind(this));
- this.presentationModeState = _ui_utils.PresentationModeState.UNKNOWN;
- this._onBeforeDraw = this._onAfterDraw = null;
- this._resetView();
- if (this.removePageBorders) {
- this.viewer.classList.add('removePageBorders');
- }
- Promise.resolve().then(function () {
- _this.eventBus.dispatch('baseviewerinit', {
- source: _this
- });
- });
- }
- _createClass(BaseViewer, [{
- key: "getPageView",
- value: function getPageView(index) {
- return this._pages[index];
- }
- }, {
- key: "_setCurrentPageNumber",
- value: function _setCurrentPageNumber(val) {
- var resetCurrentPageView = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
- if (this._currentPageNumber === val) {
- if (resetCurrentPageView) {
- this._resetCurrentPageView();
- }
- return true;
- }
- if (!(0 < val && val <= this.pagesCount)) {
- return false;
- }
- this._currentPageNumber = val;
- this.eventBus.dispatch('pagechanging', {
- source: this,
- pageNumber: val,
- pageLabel: this._pageLabels && this._pageLabels[val - 1]
- });
- if (resetCurrentPageView) {
- this._resetCurrentPageView();
- }
- return true;
- }
- }, {
- key: "setDocument",
- value: function setDocument(pdfDocument) {
- var _this2 = this;
- if (this.pdfDocument) {
- this._cancelRendering();
- this._resetView();
- if (this.findController) {
- this.findController.setDocument(null);
- }
- }
- this.pdfDocument = pdfDocument;
- if (!pdfDocument) {
- return;
- }
- var pagesCount = pdfDocument.numPages;
- var pagesCapability = (0, _pdf.createPromiseCapability)();
- this.pagesPromise = pagesCapability.promise;
- pagesCapability.promise.then(function () {
- _this2._pageViewsReady = true;
- _this2.eventBus.dispatch('pagesloaded', {
- source: _this2,
- pagesCount: pagesCount
- });
- });
- var onePageRenderedCapability = (0, _pdf.createPromiseCapability)();
- this.onePageRendered = onePageRenderedCapability.promise;
- var firstPagePromise = pdfDocument.getPage(1);
- this.firstPagePromise = firstPagePromise;
- this._onBeforeDraw = function (evt) {
- var pageView = _this2._pages[evt.pageNumber - 1];
- if (!pageView) {
- return;
- }
- _this2._buffer.push(pageView);
- };
- this.eventBus.on('pagerender', this._onBeforeDraw);
- this._onAfterDraw = function (evt) {
- if (evt.cssTransform || onePageRenderedCapability.settled) {
- return;
- }
- onePageRenderedCapability.resolve();
- _this2.eventBus.off('pagerendered', _this2._onAfterDraw);
- _this2._onAfterDraw = null;
- };
- this.eventBus.on('pagerendered', this._onAfterDraw);
- firstPagePromise.then(function (pdfPage) {
- var scale = _this2.currentScale;
- var viewport = pdfPage.getViewport({
- scale: scale * _ui_utils.CSS_UNITS
- });
- for (var pageNum = 1; pageNum <= pagesCount; ++pageNum) {
- var textLayerFactory = null;
- if (_this2.textLayerMode !== _ui_utils.TextLayerMode.DISABLE) {
- textLayerFactory = _this2;
- }
- var pageView = new _pdf_page_view.PDFPageView({
- container: _this2._setDocumentViewerElement,
- eventBus: _this2.eventBus,
- id: pageNum,
- scale: scale,
- defaultViewport: viewport.clone(),
- renderingQueue: _this2.renderingQueue,
- textLayerFactory: textLayerFactory,
- textLayerMode: _this2.textLayerMode,
- annotationLayerFactory: _this2,
- imageResourcesPath: _this2.imageResourcesPath,
- renderInteractiveForms: _this2.renderInteractiveForms,
- renderer: _this2.renderer,
- enableWebGL: _this2.enableWebGL,
- useOnlyCssZoom: _this2.useOnlyCssZoom,
- maxCanvasPixels: _this2.maxCanvasPixels,
- l10n: _this2.l10n
- });
- _this2._pages.push(pageView);
- }
- if (_this2._spreadMode !== _ui_utils.SpreadMode.NONE) {
- _this2._updateSpreadMode();
- }
- onePageRenderedCapability.promise.then(function () {
- if (_this2.findController) {
- _this2.findController.setDocument(pdfDocument);
- }
- if (pdfDocument.loadingParams['disableAutoFetch']) {
- pagesCapability.resolve();
- return;
- }
- var getPagesLeft = pagesCount;
- var _loop = function _loop(_pageNum) {
- pdfDocument.getPage(_pageNum).then(function (pdfPage) {
- var pageView = _this2._pages[_pageNum - 1];
- if (!pageView.pdfPage) {
- pageView.setPdfPage(pdfPage);
- }
- _this2.linkService.cachePageRef(_pageNum, pdfPage.ref);
- if (--getPagesLeft === 0) {
- pagesCapability.resolve();
- }
- }, function (reason) {
- console.error("Unable to get page ".concat(_pageNum, " to initialize viewer"), reason);
- if (--getPagesLeft === 0) {
- pagesCapability.resolve();
- }
- });
- };
- for (var _pageNum = 1; _pageNum <= pagesCount; ++_pageNum) {
- _loop(_pageNum);
- }
- });
- _this2.eventBus.dispatch('pagesinit', {
- source: _this2
- });
- if (_this2.defaultRenderingQueue) {
- _this2.update();
- }
- })["catch"](function (reason) {
- console.error('Unable to initialize viewer', reason);
- });
- }
- }, {
- key: "setPageLabels",
- value: function setPageLabels(labels) {
- if (!this.pdfDocument) {
- return;
- }
- if (!labels) {
- this._pageLabels = null;
- } else if (!(Array.isArray(labels) && this.pdfDocument.numPages === labels.length)) {
- this._pageLabels = null;
- console.error("".concat(this._name, ".setPageLabels: Invalid page labels."));
- } else {
- this._pageLabels = labels;
- }
- for (var i = 0, ii = this._pages.length; i < ii; i++) {
- var pageView = this._pages[i];
- var label = this._pageLabels && this._pageLabels[i];
- pageView.setPageLabel(label);
- }
- }
- }, {
- key: "_resetView",
- value: function _resetView() {
- this._pages = [];
- this._currentPageNumber = 1;
- this._currentScale = _ui_utils.UNKNOWN_SCALE;
- this._currentScaleValue = null;
- this._pageLabels = null;
- this._buffer = new PDFPageViewBuffer(DEFAULT_CACHE_SIZE);
- this._location = null;
- this._pagesRotation = 0;
- this._pagesRequests = [];
- this._pageViewsReady = false;
- this._scrollMode = _ui_utils.ScrollMode.VERTICAL;
- this._spreadMode = _ui_utils.SpreadMode.NONE;
- if (this._onBeforeDraw) {
- this.eventBus.off('pagerender', this._onBeforeDraw);
- this._onBeforeDraw = null;
- }
- if (this._onAfterDraw) {
- this.eventBus.off('pagerendered', this._onAfterDraw);
- this._onAfterDraw = null;
- }
- this.viewer.textContent = '';
- this._updateScrollMode();
- }
- }, {
- key: "_scrollUpdate",
- value: function _scrollUpdate() {
- if (this.pagesCount === 0) {
- return;
- }
- this.update();
- }
- }, {
- key: "_scrollIntoView",
- value: function _scrollIntoView(_ref) {
- var pageDiv = _ref.pageDiv,
- _ref$pageSpot = _ref.pageSpot,
- pageSpot = _ref$pageSpot === void 0 ? null : _ref$pageSpot,
- _ref$pageNumber = _ref.pageNumber,
- pageNumber = _ref$pageNumber === void 0 ? null : _ref$pageNumber;
- (0, _ui_utils.scrollIntoView)(pageDiv, pageSpot);
- }
- }, {
- key: "_setScaleUpdatePages",
- value: function _setScaleUpdatePages(newScale, newValue) {
- var noScroll = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
- var preset = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false;
- this._currentScaleValue = newValue.toString();
- if (isSameScale(this._currentScale, newScale)) {
- if (preset) {
- this.eventBus.dispatch('scalechanging', {
- source: this,
- scale: newScale,
- presetValue: newValue
- });
- }
- return;
- }
- for (var i = 0, ii = this._pages.length; i < ii; i++) {
- this._pages[i].update(newScale);
- }
- this._currentScale = newScale;
- if (!noScroll) {
- var page = this._currentPageNumber,
- dest;
- if (this._location && !(this.isInPresentationMode || this.isChangingPresentationMode)) {
- page = this._location.pageNumber;
- dest = [null, {
- name: 'XYZ'
- }, this._location.left, this._location.top, null];
- }
- this.scrollPageIntoView({
- pageNumber: page,
- destArray: dest,
- allowNegativeOffset: true
- });
- }
- this.eventBus.dispatch('scalechanging', {
- source: this,
- scale: newScale,
- presetValue: preset ? newValue : undefined
- });
- if (this.defaultRenderingQueue) {
- this.update();
- }
- }
- }, {
- key: "_setScale",
- value: function _setScale(value) {
- var noScroll = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
- var scale = parseFloat(value);
- if (scale > 0) {
- this._setScaleUpdatePages(scale, value, noScroll, false);
- } else {
- var currentPage = this._pages[this._currentPageNumber - 1];
- if (!currentPage) {
- return;
- }
- var noPadding = this.isInPresentationMode || this.removePageBorders;
- var hPadding = noPadding ? 0 : _ui_utils.SCROLLBAR_PADDING;
- var vPadding = noPadding ? 0 : _ui_utils.VERTICAL_PADDING;
- if (!noPadding && this._isScrollModeHorizontal) {
- var _ref2 = [vPadding, hPadding];
- hPadding = _ref2[0];
- vPadding = _ref2[1];
- }
- var pageWidthScale = (this.container.clientWidth - hPadding) / currentPage.width * currentPage.scale;
- var pageHeightScale = (this.container.clientHeight - vPadding) / currentPage.height * currentPage.scale;
- switch (value) {
- case 'page-actual':
- scale = 1;
- break;
- case 'page-width':
- scale = pageWidthScale;
- break;
- case 'page-height':
- scale = pageHeightScale;
- break;
- case 'page-fit':
- scale = Math.min(pageWidthScale, pageHeightScale);
- break;
- case 'auto':
- var horizontalScale = (0, _ui_utils.isPortraitOrientation)(currentPage) ? pageWidthScale : Math.min(pageHeightScale, pageWidthScale);
- scale = Math.min(_ui_utils.MAX_AUTO_SCALE, horizontalScale);
- break;
- default:
- console.error("".concat(this._name, "._setScale: \"").concat(value, "\" is an unknown zoom value."));
- return;
- }
- this._setScaleUpdatePages(scale, value, noScroll, true);
- }
- }
- }, {
- key: "_resetCurrentPageView",
- value: function _resetCurrentPageView() {
- if (this.isInPresentationMode) {
- this._setScale(this._currentScaleValue, true);
- }
- var pageView = this._pages[this._currentPageNumber - 1];
- this._scrollIntoView({
- pageDiv: pageView.div
- });
- }
- }, {
- key: "scrollPageIntoView",
- value: function scrollPageIntoView(_ref3) {
- var pageNumber = _ref3.pageNumber,
- _ref3$destArray = _ref3.destArray,
- destArray = _ref3$destArray === void 0 ? null : _ref3$destArray,
- _ref3$allowNegativeOf = _ref3.allowNegativeOffset,
- allowNegativeOffset = _ref3$allowNegativeOf === void 0 ? false : _ref3$allowNegativeOf;
- if (!this.pdfDocument) {
- return;
- }
- var pageView = Number.isInteger(pageNumber) && this._pages[pageNumber - 1];
- if (!pageView) {
- console.error("".concat(this._name, ".scrollPageIntoView: ") + "\"".concat(pageNumber, "\" is not a valid pageNumber parameter."));
- return;
- }
- if (this.isInPresentationMode || !destArray) {
- this._setCurrentPageNumber(pageNumber, true);
- return;
- }
- var x = 0,
- y = 0;
- var width = 0,
- height = 0,
- widthScale,
- heightScale;
- var changeOrientation = pageView.rotation % 180 === 0 ? false : true;
- var pageWidth = (changeOrientation ? pageView.height : pageView.width) / pageView.scale / _ui_utils.CSS_UNITS;
- var pageHeight = (changeOrientation ? pageView.width : pageView.height) / pageView.scale / _ui_utils.CSS_UNITS;
- var scale = 0;
- switch (destArray[1].name) {
- case 'XYZ':
- x = destArray[2];
- y = destArray[3];
- scale = destArray[4];
- x = x !== null ? x : 0;
- y = y !== null ? y : pageHeight;
- break;
- case 'Fit':
- case 'FitB':
- scale = 'page-fit';
- break;
- case 'FitH':
- case 'FitBH':
- y = destArray[2];
- scale = 'page-width';
- if (y === null && this._location) {
- x = this._location.left;
- y = this._location.top;
- }
- break;
- case 'FitV':
- case 'FitBV':
- x = destArray[2];
- width = pageWidth;
- height = pageHeight;
- scale = 'page-height';
- break;
- case 'FitR':
- x = destArray[2];
- y = destArray[3];
- width = destArray[4] - x;
- height = destArray[5] - y;
- var hPadding = this.removePageBorders ? 0 : _ui_utils.SCROLLBAR_PADDING;
- var vPadding = this.removePageBorders ? 0 : _ui_utils.VERTICAL_PADDING;
- widthScale = (this.container.clientWidth - hPadding) / width / _ui_utils.CSS_UNITS;
- heightScale = (this.container.clientHeight - vPadding) / height / _ui_utils.CSS_UNITS;
- scale = Math.min(Math.abs(widthScale), Math.abs(heightScale));
- break;
- default:
- console.error("".concat(this._name, ".scrollPageIntoView: ") + "\"".concat(destArray[1].name, "\" is not a valid destination type."));
- return;
- }
- if (scale && scale !== this._currentScale) {
- this.currentScaleValue = scale;
- } else if (this._currentScale === _ui_utils.UNKNOWN_SCALE) {
- this.currentScaleValue = _ui_utils.DEFAULT_SCALE_VALUE;
- }
- if (scale === 'page-fit' && !destArray[4]) {
- this._scrollIntoView({
- pageDiv: pageView.div,
- pageNumber: pageNumber
- });
- return;
- }
- var boundingRect = [pageView.viewport.convertToViewportPoint(x, y), pageView.viewport.convertToViewportPoint(x + width, y + height)];
- var left = Math.min(boundingRect[0][0], boundingRect[1][0]);
- var top = Math.min(boundingRect[0][1], boundingRect[1][1]);
- if (!allowNegativeOffset) {
- left = Math.max(left, 0);
- top = Math.max(top, 0);
- }
- this._scrollIntoView({
- pageDiv: pageView.div,
- pageSpot: {
- left: left,
- top: top
- },
- pageNumber: pageNumber
- });
- }
- }, {
- key: "_updateLocation",
- value: function _updateLocation(firstPage) {
- var currentScale = this._currentScale;
- var currentScaleValue = this._currentScaleValue;
- var normalizedScaleValue = parseFloat(currentScaleValue) === currentScale ? Math.round(currentScale * 10000) / 100 : currentScaleValue;
- var pageNumber = firstPage.id;
- var pdfOpenParams = '#page=' + pageNumber;
- pdfOpenParams += '&zoom=' + normalizedScaleValue;
- var currentPageView = this._pages[pageNumber - 1];
- var container = this.container;
- var topLeft = currentPageView.getPagePoint(container.scrollLeft - firstPage.x, container.scrollTop - firstPage.y);
- var intLeft = Math.round(topLeft[0]);
- var intTop = Math.round(topLeft[1]);
- pdfOpenParams += ',' + intLeft + ',' + intTop;
- this._location = {
- pageNumber: pageNumber,
- scale: normalizedScaleValue,
- top: intTop,
- left: intLeft,
- rotation: this._pagesRotation,
- pdfOpenParams: pdfOpenParams
- };
- }
- }, {
- key: "_updateHelper",
- value: function _updateHelper(visiblePages) {
- throw new Error('Not implemented: _updateHelper');
- }
- }, {
- key: "update",
- value: function update() {
- var visible = this._getVisiblePages();
- var visiblePages = visible.views,
- numVisiblePages = visiblePages.length;
- if (numVisiblePages === 0) {
- return;
- }
- var newCacheSize = Math.max(DEFAULT_CACHE_SIZE, 2 * numVisiblePages + 1);
- this._buffer.resize(newCacheSize, visiblePages);
- this.renderingQueue.renderHighestPriority(visible);
- this._updateHelper(visiblePages);
- this._updateLocation(visible.first);
- this.eventBus.dispatch('updateviewarea', {
- source: this,
- location: this._location
- });
- }
- }, {
- key: "containsElement",
- value: function containsElement(element) {
- return this.container.contains(element);
- }
- }, {
- key: "focus",
- value: function focus() {
- this.container.focus();
- }
- }, {
- key: "_getCurrentVisiblePage",
- value: function _getCurrentVisiblePage() {
- if (!this.pagesCount) {
- return {
- views: []
- };
- }
- var pageView = this._pages[this._currentPageNumber - 1];
- var element = pageView.div;
- var view = {
- id: pageView.id,
- x: element.offsetLeft + element.clientLeft,
- y: element.offsetTop + element.clientTop,
- view: pageView
- };
- return {
- first: view,
- last: view,
- views: [view]
- };
- }
- }, {
- key: "_getVisiblePages",
- value: function _getVisiblePages() {
- return (0, _ui_utils.getVisibleElements)(this.container, this._pages, true, this._isScrollModeHorizontal);
- }
- }, {
- key: "isPageVisible",
- value: function isPageVisible(pageNumber) {
- if (!this.pdfDocument) {
- return false;
- }
- if (this.pageNumber < 1 || pageNumber > this.pagesCount) {
- console.error("".concat(this._name, ".isPageVisible: \"").concat(pageNumber, "\" is out of bounds."));
- return false;
- }
- return this._getVisiblePages().views.some(function (view) {
- return view.id === pageNumber;
- });
- }
- }, {
- key: "cleanup",
- value: function cleanup() {
- for (var i = 0, ii = this._pages.length; i < ii; i++) {
- if (this._pages[i] && this._pages[i].renderingState !== _pdf_rendering_queue.RenderingStates.FINISHED) {
- this._pages[i].reset();
- }
- }
- }
- }, {
- key: "_cancelRendering",
- value: function _cancelRendering() {
- for (var i = 0, ii = this._pages.length; i < ii; i++) {
- if (this._pages[i]) {
- this._pages[i].cancelRendering();
- }
- }
- }
- }, {
- key: "_ensurePdfPageLoaded",
- value: function _ensurePdfPageLoaded(pageView) {
- var _this3 = this;
- if (pageView.pdfPage) {
- return Promise.resolve(pageView.pdfPage);
- }
- var pageNumber = pageView.id;
- if (this._pagesRequests[pageNumber]) {
- return this._pagesRequests[pageNumber];
- }
- var promise = this.pdfDocument.getPage(pageNumber).then(function (pdfPage) {
- if (!pageView.pdfPage) {
- pageView.setPdfPage(pdfPage);
- }
- _this3._pagesRequests[pageNumber] = null;
- return pdfPage;
- })["catch"](function (reason) {
- console.error('Unable to get page for page view', reason);
- _this3._pagesRequests[pageNumber] = null;
- });
- this._pagesRequests[pageNumber] = promise;
- return promise;
- }
- }, {
- key: "forceRendering",
- value: function forceRendering(currentlyVisiblePages) {
- var _this4 = this;
- var visiblePages = currentlyVisiblePages || this._getVisiblePages();
- var scrollAhead = this._isScrollModeHorizontal ? this.scroll.right : this.scroll.down;
- var pageView = this.renderingQueue.getHighestPriority(visiblePages, this._pages, scrollAhead);
- if (pageView) {
- this._ensurePdfPageLoaded(pageView).then(function () {
- _this4.renderingQueue.renderView(pageView);
- });
- return true;
- }
- return false;
- }
- }, {
- key: "createTextLayerBuilder",
- value: function createTextLayerBuilder(textLayerDiv, pageIndex, viewport) {
- var enhanceTextSelection = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false;
- return new _text_layer_builder.TextLayerBuilder({
- textLayerDiv: textLayerDiv,
- eventBus: this.eventBus,
- pageIndex: pageIndex,
- viewport: viewport,
- findController: this.isInPresentationMode ? null : this.findController,
- enhanceTextSelection: this.isInPresentationMode ? false : enhanceTextSelection
- });
- }
- }, {
- key: "createAnnotationLayerBuilder",
- value: function createAnnotationLayerBuilder(pageDiv, pdfPage) {
- var imageResourcesPath = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : '';
- var renderInteractiveForms = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false;
- var l10n = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : _ui_utils.NullL10n;
- return new _annotation_layer_builder.AnnotationLayerBuilder({
- pageDiv: pageDiv,
- pdfPage: pdfPage,
- imageResourcesPath: imageResourcesPath,
- renderInteractiveForms: renderInteractiveForms,
- linkService: this.linkService,
- downloadManager: this.downloadManager,
- l10n: l10n
- });
- }
- }, {
- key: "getPagesOverview",
- value: function getPagesOverview() {
- var pagesOverview = this._pages.map(function (pageView) {
- var viewport = pageView.pdfPage.getViewport({
- scale: 1
- });
- return {
- width: viewport.width,
- height: viewport.height,
- rotation: viewport.rotation
- };
- });
- if (!this.enablePrintAutoRotate) {
- return pagesOverview;
- }
- var isFirstPagePortrait = (0, _ui_utils.isPortraitOrientation)(pagesOverview[0]);
- return pagesOverview.map(function (size) {
- if (isFirstPagePortrait === (0, _ui_utils.isPortraitOrientation)(size)) {
- return size;
- }
- return {
- width: size.height,
- height: size.width,
- rotation: (size.rotation + 90) % 360
- };
- });
- }
- }, {
- key: "_updateScrollMode",
- value: function _updateScrollMode() {
- var pageNumber = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
- var scrollMode = this._scrollMode,
- viewer = this.viewer;
- viewer.classList.toggle('scrollHorizontal', scrollMode === _ui_utils.ScrollMode.HORIZONTAL);
- viewer.classList.toggle('scrollWrapped', scrollMode === _ui_utils.ScrollMode.WRAPPED);
- if (!this.pdfDocument || !pageNumber) {
- return;
- }
- if (this._currentScaleValue && isNaN(this._currentScaleValue)) {
- this._setScale(this._currentScaleValue, true);
- }
- this._setCurrentPageNumber(pageNumber, true);
- this.update();
- }
- }, {
- key: "_updateSpreadMode",
- value: function _updateSpreadMode() {
- var pageNumber = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
- if (!this.pdfDocument) {
- return;
- }
- var viewer = this.viewer,
- pages = this._pages;
- viewer.textContent = '';
- if (this._spreadMode === _ui_utils.SpreadMode.NONE) {
- for (var i = 0, iMax = pages.length; i < iMax; ++i) {
- viewer.appendChild(pages[i].div);
- }
- } else {
- var parity = this._spreadMode - 1;
- var spread = null;
- for (var _i = 0, _iMax = pages.length; _i < _iMax; ++_i) {
- if (spread === null) {
- spread = document.createElement('div');
- spread.className = 'spread';
- viewer.appendChild(spread);
- } else if (_i % 2 === parity) {
- spread = spread.cloneNode(false);
- viewer.appendChild(spread);
- }
- spread.appendChild(pages[_i].div);
- }
- }
- if (!pageNumber) {
- return;
- }
- this._setCurrentPageNumber(pageNumber, true);
- this.update();
- }
- }, {
- key: "pagesCount",
- get: function get() {
- return this._pages.length;
- }
- }, {
- key: "pageViewsReady",
- get: function get() {
- return this._pageViewsReady;
- }
- }, {
- key: "currentPageNumber",
- get: function get() {
- return this._currentPageNumber;
- },
- set: function set(val) {
- if (!Number.isInteger(val)) {
- throw new Error('Invalid page number.');
- }
- if (!this.pdfDocument) {
- return;
- }
- if (!this._setCurrentPageNumber(val, true)) {
- console.error("".concat(this._name, ".currentPageNumber: \"").concat(val, "\" is not a valid page."));
- }
- }
- }, {
- key: "currentPageLabel",
- get: function get() {
- return this._pageLabels && this._pageLabels[this._currentPageNumber - 1];
- },
- set: function set(val) {
- if (!this.pdfDocument) {
- return;
- }
- var page = val | 0;
- if (this._pageLabels) {
- var i = this._pageLabels.indexOf(val);
- if (i >= 0) {
- page = i + 1;
- }
- }
- if (!this._setCurrentPageNumber(page, true)) {
- console.error("".concat(this._name, ".currentPageLabel: \"").concat(val, "\" is not a valid page."));
- }
- }
- }, {
- key: "currentScale",
- get: function get() {
- return this._currentScale !== _ui_utils.UNKNOWN_SCALE ? this._currentScale : _ui_utils.DEFAULT_SCALE;
- },
- set: function set(val) {
- if (isNaN(val)) {
- throw new Error('Invalid numeric scale.');
- }
- if (!this.pdfDocument) {
- return;
- }
- this._setScale(val, false);
- }
- }, {
- key: "currentScaleValue",
- get: function get() {
- return this._currentScaleValue;
- },
- set: function set(val) {
- if (!this.pdfDocument) {
- return;
- }
- this._setScale(val, false);
- }
- }, {
- key: "pagesRotation",
- get: function get() {
- return this._pagesRotation;
- },
- set: function set(rotation) {
- if (!(0, _ui_utils.isValidRotation)(rotation)) {
- throw new Error('Invalid pages rotation angle.');
- }
- if (!this.pdfDocument) {
- return;
- }
- if (this._pagesRotation === rotation) {
- return;
- }
- this._pagesRotation = rotation;
- var pageNumber = this._currentPageNumber;
- for (var i = 0, ii = this._pages.length; i < ii; i++) {
- var pageView = this._pages[i];
- pageView.update(pageView.scale, rotation);
- }
- if (this._currentScaleValue) {
- this._setScale(this._currentScaleValue, true);
- }
- this.eventBus.dispatch('rotationchanging', {
- source: this,
- pagesRotation: rotation,
- pageNumber: pageNumber
- });
- if (this.defaultRenderingQueue) {
- this.update();
- }
- }
- }, {
- key: "_setDocumentViewerElement",
- get: function get() {
- throw new Error('Not implemented: _setDocumentViewerElement');
- }
- }, {
- key: "_isScrollModeHorizontal",
- get: function get() {
- return this.isInPresentationMode ? false : this._scrollMode === _ui_utils.ScrollMode.HORIZONTAL;
- }
- }, {
- key: "isInPresentationMode",
- get: function get() {
- return this.presentationModeState === _ui_utils.PresentationModeState.FULLSCREEN;
- }
- }, {
- key: "isChangingPresentationMode",
- get: function get() {
- return this.presentationModeState === _ui_utils.PresentationModeState.CHANGING;
- }
- }, {
- key: "isHorizontalScrollbarEnabled",
- get: function get() {
- return this.isInPresentationMode ? false : this.container.scrollWidth > this.container.clientWidth;
- }
- }, {
- key: "isVerticalScrollbarEnabled",
- get: function get() {
- return this.isInPresentationMode ? false : this.container.scrollHeight > this.container.clientHeight;
- }
- }, {
- key: "hasEqualPageSizes",
- get: function get() {
- var firstPageView = this._pages[0];
- for (var i = 1, ii = this._pages.length; i < ii; ++i) {
- var pageView = this._pages[i];
- if (pageView.width !== firstPageView.width || pageView.height !== firstPageView.height) {
- return false;
- }
- }
- return true;
- }
- }, {
- key: "scrollMode",
- get: function get() {
- return this._scrollMode;
- },
- set: function set(mode) {
- if (this._scrollMode === mode) {
- return;
- }
- if (!(0, _ui_utils.isValidScrollMode)(mode)) {
- throw new Error("Invalid scroll mode: ".concat(mode));
- }
- this._scrollMode = mode;
- this.eventBus.dispatch('scrollmodechanged', {
- source: this,
- mode: mode
- });
- this._updateScrollMode(this._currentPageNumber);
- }
- }, {
- key: "spreadMode",
- get: function get() {
- return this._spreadMode;
- },
- set: function set(mode) {
- if (this._spreadMode === mode) {
- return;
- }
- if (!(0, _ui_utils.isValidSpreadMode)(mode)) {
- throw new Error("Invalid spread mode: ".concat(mode));
- }
- this._spreadMode = mode;
- this.eventBus.dispatch('spreadmodechanged', {
- source: this,
- mode: mode
- });
- this._updateSpreadMode(this._currentPageNumber);
- }
- }]);
- return BaseViewer;
- }();
- exports.BaseViewer = BaseViewer;
|