123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292 |
- /**
- * @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.PDFThumbnailViewer = void 0;
- var _ui_utils = require("./ui_utils");
- var _pdf_thumbnail_view = require("./pdf_thumbnail_view");
- 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 THUMBNAIL_SCROLL_MARGIN = -19;
- var THUMBNAIL_SELECTED_CLASS = 'selected';
- var PDFThumbnailViewer =
- /*#__PURE__*/
- function () {
- function PDFThumbnailViewer(_ref) {
- var container = _ref.container,
- linkService = _ref.linkService,
- renderingQueue = _ref.renderingQueue,
- _ref$l10n = _ref.l10n,
- l10n = _ref$l10n === void 0 ? _ui_utils.NullL10n : _ref$l10n;
- _classCallCheck(this, PDFThumbnailViewer);
- this.container = container;
- this.linkService = linkService;
- this.renderingQueue = renderingQueue;
- this.l10n = l10n;
- this.scroll = (0, _ui_utils.watchScroll)(this.container, this._scrollUpdated.bind(this));
- this._resetView();
- }
- _createClass(PDFThumbnailViewer, [{
- key: "_scrollUpdated",
- value: function _scrollUpdated() {
- this.renderingQueue.renderHighestPriority();
- }
- }, {
- key: "getThumbnail",
- value: function getThumbnail(index) {
- return this._thumbnails[index];
- }
- }, {
- key: "_getVisibleThumbs",
- value: function _getVisibleThumbs() {
- return (0, _ui_utils.getVisibleElements)(this.container, this._thumbnails);
- }
- }, {
- key: "scrollThumbnailIntoView",
- value: function scrollThumbnailIntoView(pageNumber) {
- if (!this.pdfDocument) {
- return;
- }
- var thumbnailView = this._thumbnails[pageNumber - 1];
- if (!thumbnailView) {
- console.error('scrollThumbnailIntoView: Invalid "pageNumber" parameter.');
- return;
- }
- if (pageNumber !== this._currentPageNumber) {
- var prevThumbnailView = this._thumbnails[this._currentPageNumber - 1];
- prevThumbnailView.div.classList.remove(THUMBNAIL_SELECTED_CLASS);
- thumbnailView.div.classList.add(THUMBNAIL_SELECTED_CLASS);
- }
- var visibleThumbs = this._getVisibleThumbs();
- var numVisibleThumbs = visibleThumbs.views.length;
- if (numVisibleThumbs > 0) {
- var first = visibleThumbs.first.id;
- var last = numVisibleThumbs > 1 ? visibleThumbs.last.id : first;
- var shouldScroll = false;
- if (pageNumber <= first || pageNumber >= last) {
- shouldScroll = true;
- } else {
- visibleThumbs.views.some(function (view) {
- if (view.id !== pageNumber) {
- return false;
- }
- shouldScroll = view.percent < 100;
- return true;
- });
- }
- if (shouldScroll) {
- (0, _ui_utils.scrollIntoView)(thumbnailView.div, {
- top: THUMBNAIL_SCROLL_MARGIN
- });
- }
- }
- this._currentPageNumber = pageNumber;
- }
- }, {
- key: "cleanup",
- value: function cleanup() {
- _pdf_thumbnail_view.PDFThumbnailView.cleanup();
- }
- }, {
- key: "_resetView",
- value: function _resetView() {
- this._thumbnails = [];
- this._currentPageNumber = 1;
- this._pageLabels = null;
- this._pagesRotation = 0;
- this._pagesRequests = [];
- this.container.textContent = '';
- }
- }, {
- key: "setDocument",
- value: function setDocument(pdfDocument) {
- var _this = this;
- if (this.pdfDocument) {
- this._cancelRendering();
- this._resetView();
- }
- this.pdfDocument = pdfDocument;
- if (!pdfDocument) {
- return;
- }
- pdfDocument.getPage(1).then(function (firstPage) {
- var pagesCount = pdfDocument.numPages;
- var viewport = firstPage.getViewport({
- scale: 1
- });
- for (var pageNum = 1; pageNum <= pagesCount; ++pageNum) {
- var thumbnail = new _pdf_thumbnail_view.PDFThumbnailView({
- container: _this.container,
- id: pageNum,
- defaultViewport: viewport.clone(),
- linkService: _this.linkService,
- renderingQueue: _this.renderingQueue,
- disableCanvasToImageConversion: false,
- l10n: _this.l10n
- });
- _this._thumbnails.push(thumbnail);
- }
- var thumbnailView = _this._thumbnails[_this._currentPageNumber - 1];
- thumbnailView.div.classList.add(THUMBNAIL_SELECTED_CLASS);
- })["catch"](function (reason) {
- console.error('Unable to initialize thumbnail viewer', reason);
- });
- }
- }, {
- key: "_cancelRendering",
- value: function _cancelRendering() {
- for (var i = 0, ii = this._thumbnails.length; i < ii; i++) {
- if (this._thumbnails[i]) {
- this._thumbnails[i].cancelRendering();
- }
- }
- }
- }, {
- 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('PDFThumbnailViewer_setPageLabels: Invalid page labels.');
- } else {
- this._pageLabels = labels;
- }
- for (var i = 0, ii = this._thumbnails.length; i < ii; i++) {
- var label = this._pageLabels && this._pageLabels[i];
- this._thumbnails[i].setPageLabel(label);
- }
- }
- }, {
- key: "_ensurePdfPageLoaded",
- value: function _ensurePdfPageLoaded(thumbView) {
- var _this2 = this;
- if (thumbView.pdfPage) {
- return Promise.resolve(thumbView.pdfPage);
- }
- var pageNumber = thumbView.id;
- if (this._pagesRequests[pageNumber]) {
- return this._pagesRequests[pageNumber];
- }
- var promise = this.pdfDocument.getPage(pageNumber).then(function (pdfPage) {
- thumbView.setPdfPage(pdfPage);
- _this2._pagesRequests[pageNumber] = null;
- return pdfPage;
- })["catch"](function (reason) {
- console.error('Unable to get page for thumb view', reason);
- _this2._pagesRequests[pageNumber] = null;
- });
- this._pagesRequests[pageNumber] = promise;
- return promise;
- }
- }, {
- key: "forceRendering",
- value: function forceRendering() {
- var _this3 = this;
- var visibleThumbs = this._getVisibleThumbs();
- var thumbView = this.renderingQueue.getHighestPriority(visibleThumbs, this._thumbnails, this.scroll.down);
- if (thumbView) {
- this._ensurePdfPageLoaded(thumbView).then(function () {
- _this3.renderingQueue.renderView(thumbView);
- });
- return true;
- }
- return false;
- }
- }, {
- key: "pagesRotation",
- get: function get() {
- return this._pagesRotation;
- },
- set: function set(rotation) {
- if (!(0, _ui_utils.isValidRotation)(rotation)) {
- throw new Error('Invalid thumbnails rotation angle.');
- }
- if (!this.pdfDocument) {
- return;
- }
- if (this._pagesRotation === rotation) {
- return;
- }
- this._pagesRotation = rotation;
- for (var i = 0, ii = this._thumbnails.length; i < ii; i++) {
- this._thumbnails[i].update(rotation);
- }
- }
- }]);
- return PDFThumbnailViewer;
- }();
- exports.PDFThumbnailViewer = PDFThumbnailViewer;
|