123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753 |
- /**
- * @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.PDFFindController = exports.FindState = void 0;
- var _ui_utils = require("./ui_utils");
- var _pdf = require("../pdf");
- var _pdf_find_utils = require("./pdf_find_utils");
- 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 FindState = {
- FOUND: 0,
- NOT_FOUND: 1,
- WRAPPED: 2,
- PENDING: 3
- };
- exports.FindState = FindState;
- var FIND_TIMEOUT = 250;
- var MATCH_SCROLL_OFFSET_TOP = -50;
- var MATCH_SCROLL_OFFSET_LEFT = -400;
- var CHARACTERS_TO_NORMALIZE = {
- "\u2018": '\'',
- "\u2019": '\'',
- "\u201A": '\'',
- "\u201B": '\'',
- "\u201C": '"',
- "\u201D": '"',
- "\u201E": '"',
- "\u201F": '"',
- "\xBC": '1/4',
- "\xBD": '1/2',
- "\xBE": '3/4'
- };
- var normalizationRegex = null;
- function normalize(text) {
- if (!normalizationRegex) {
- var replace = Object.keys(CHARACTERS_TO_NORMALIZE).join('');
- normalizationRegex = new RegExp("[".concat(replace, "]"), 'g');
- }
- return text.replace(normalizationRegex, function (ch) {
- return CHARACTERS_TO_NORMALIZE[ch];
- });
- }
- var PDFFindController =
- /*#__PURE__*/
- function () {
- function PDFFindController(_ref) {
- var linkService = _ref.linkService,
- _ref$eventBus = _ref.eventBus,
- eventBus = _ref$eventBus === void 0 ? (0, _ui_utils.getGlobalEventBus)() : _ref$eventBus;
- _classCallCheck(this, PDFFindController);
- this._linkService = linkService;
- this._eventBus = eventBus;
- this._reset();
- eventBus.on('findbarclose', this._onFindBarClose.bind(this));
- }
- _createClass(PDFFindController, [{
- key: "setDocument",
- value: function setDocument(pdfDocument) {
- if (this._pdfDocument) {
- this._reset();
- }
- if (!pdfDocument) {
- return;
- }
- this._pdfDocument = pdfDocument;
- this._firstPageCapability.resolve();
- }
- }, {
- key: "executeCommand",
- value: function executeCommand(cmd, state) {
- var _this = this;
- if (!state) {
- return;
- }
- var pdfDocument = this._pdfDocument;
- if (this._state === null || this._shouldDirtyMatch(cmd, state)) {
- this._dirtyMatch = true;
- }
- this._state = state;
- if (cmd !== 'findhighlightallchange') {
- this._updateUIState(FindState.PENDING);
- }
- this._firstPageCapability.promise.then(function () {
- if (!_this._pdfDocument || pdfDocument && _this._pdfDocument !== pdfDocument) {
- return;
- }
- _this._extractText();
- var findbarClosed = !_this._highlightMatches;
- var pendingTimeout = !!_this._findTimeout;
- if (_this._findTimeout) {
- clearTimeout(_this._findTimeout);
- _this._findTimeout = null;
- }
- if (cmd === 'find') {
- _this._findTimeout = setTimeout(function () {
- _this._nextMatch();
- _this._findTimeout = null;
- }, FIND_TIMEOUT);
- } else if (_this._dirtyMatch) {
- _this._nextMatch();
- } else if (cmd === 'findagain') {
- _this._nextMatch();
- if (findbarClosed && _this._state.highlightAll) {
- _this._updateAllPages();
- }
- } else if (cmd === 'findhighlightallchange') {
- if (pendingTimeout) {
- _this._nextMatch();
- } else {
- _this._highlightMatches = true;
- }
- _this._updateAllPages();
- } else {
- _this._nextMatch();
- }
- });
- }
- }, {
- key: "scrollMatchIntoView",
- value: function scrollMatchIntoView(_ref2) {
- var _ref2$element = _ref2.element,
- element = _ref2$element === void 0 ? null : _ref2$element,
- _ref2$pageIndex = _ref2.pageIndex,
- pageIndex = _ref2$pageIndex === void 0 ? -1 : _ref2$pageIndex,
- _ref2$matchIndex = _ref2.matchIndex,
- matchIndex = _ref2$matchIndex === void 0 ? -1 : _ref2$matchIndex;
- if (!this._scrollMatches || !element) {
- return;
- } else if (matchIndex === -1 || matchIndex !== this._selected.matchIdx) {
- return;
- } else if (pageIndex === -1 || pageIndex !== this._selected.pageIdx) {
- return;
- }
- this._scrollMatches = false;
- var spot = {
- top: MATCH_SCROLL_OFFSET_TOP,
- left: MATCH_SCROLL_OFFSET_LEFT
- };
- (0, _ui_utils.scrollIntoView)(element, spot, true);
- }
- }, {
- key: "_reset",
- value: function _reset() {
- this._highlightMatches = false;
- this._scrollMatches = false;
- this._pdfDocument = null;
- this._pageMatches = [];
- this._pageMatchesLength = [];
- this._state = null;
- this._selected = {
- pageIdx: -1,
- matchIdx: -1
- };
- this._offset = {
- pageIdx: null,
- matchIdx: null,
- wrapped: false
- };
- this._extractTextPromises = [];
- this._pageContents = [];
- this._matchesCountTotal = 0;
- this._pagesToSearch = null;
- this._pendingFindMatches = Object.create(null);
- this._resumePageIdx = null;
- this._dirtyMatch = false;
- clearTimeout(this._findTimeout);
- this._findTimeout = null;
- this._firstPageCapability = (0, _pdf.createPromiseCapability)();
- }
- }, {
- key: "_shouldDirtyMatch",
- value: function _shouldDirtyMatch(cmd, state) {
- if (state.query !== this._state.query) {
- return true;
- }
- switch (cmd) {
- case 'findagain':
- var pageNumber = this._selected.pageIdx + 1;
- var linkService = this._linkService;
- if (pageNumber >= 1 && pageNumber <= linkService.pagesCount && pageNumber !== linkService.page && !linkService.isPageVisible(pageNumber)) {
- return true;
- }
- return false;
- case 'findhighlightallchange':
- return false;
- }
- return true;
- }
- }, {
- key: "_prepareMatches",
- value: function _prepareMatches(matchesWithLength, matches, matchesLength) {
- function isSubTerm(matchesWithLength, currentIndex) {
- var currentElem = matchesWithLength[currentIndex];
- var nextElem = matchesWithLength[currentIndex + 1];
- if (currentIndex < matchesWithLength.length - 1 && currentElem.match === nextElem.match) {
- currentElem.skipped = true;
- return true;
- }
- for (var i = currentIndex - 1; i >= 0; i--) {
- var prevElem = matchesWithLength[i];
- if (prevElem.skipped) {
- continue;
- }
- if (prevElem.match + prevElem.matchLength < currentElem.match) {
- break;
- }
- if (prevElem.match + prevElem.matchLength >= currentElem.match + currentElem.matchLength) {
- currentElem.skipped = true;
- return true;
- }
- }
- return false;
- }
- matchesWithLength.sort(function (a, b) {
- return a.match === b.match ? a.matchLength - b.matchLength : a.match - b.match;
- });
- for (var i = 0, len = matchesWithLength.length; i < len; i++) {
- if (isSubTerm(matchesWithLength, i)) {
- continue;
- }
- matches.push(matchesWithLength[i].match);
- matchesLength.push(matchesWithLength[i].matchLength);
- }
- }
- }, {
- key: "_isEntireWord",
- value: function _isEntireWord(content, startIdx, length) {
- if (startIdx > 0) {
- var first = content.charCodeAt(startIdx);
- var limit = content.charCodeAt(startIdx - 1);
- if ((0, _pdf_find_utils.getCharacterType)(first) === (0, _pdf_find_utils.getCharacterType)(limit)) {
- return false;
- }
- }
- var endIdx = startIdx + length - 1;
- if (endIdx < content.length - 1) {
- var last = content.charCodeAt(endIdx);
- var _limit = content.charCodeAt(endIdx + 1);
- if ((0, _pdf_find_utils.getCharacterType)(last) === (0, _pdf_find_utils.getCharacterType)(_limit)) {
- return false;
- }
- }
- return true;
- }
- }, {
- key: "_calculatePhraseMatch",
- value: function _calculatePhraseMatch(query, pageIndex, pageContent, entireWord) {
- var matches = [];
- var queryLen = query.length;
- var matchIdx = -queryLen;
- while (true) {
- matchIdx = pageContent.indexOf(query, matchIdx + queryLen);
- if (matchIdx === -1) {
- break;
- }
- if (entireWord && !this._isEntireWord(pageContent, matchIdx, queryLen)) {
- continue;
- }
- matches.push(matchIdx);
- }
- this._pageMatches[pageIndex] = matches;
- }
- }, {
- key: "_calculateWordMatch",
- value: function _calculateWordMatch(query, pageIndex, pageContent, entireWord) {
- var matchesWithLength = [];
- var queryArray = query.match(/\S+/g);
- for (var i = 0, len = queryArray.length; i < len; i++) {
- var subquery = queryArray[i];
- var subqueryLen = subquery.length;
- var matchIdx = -subqueryLen;
- while (true) {
- matchIdx = pageContent.indexOf(subquery, matchIdx + subqueryLen);
- if (matchIdx === -1) {
- break;
- }
- if (entireWord && !this._isEntireWord(pageContent, matchIdx, subqueryLen)) {
- continue;
- }
- matchesWithLength.push({
- match: matchIdx,
- matchLength: subqueryLen,
- skipped: false
- });
- }
- }
- this._pageMatchesLength[pageIndex] = [];
- this._pageMatches[pageIndex] = [];
- this._prepareMatches(matchesWithLength, this._pageMatches[pageIndex], this._pageMatchesLength[pageIndex]);
- }
- }, {
- key: "_calculateMatch",
- value: function _calculateMatch(pageIndex) {
- var pageContent = this._pageContents[pageIndex];
- var query = this._query;
- var _this$_state = this._state,
- caseSensitive = _this$_state.caseSensitive,
- entireWord = _this$_state.entireWord,
- phraseSearch = _this$_state.phraseSearch;
- if (query.length === 0) {
- return;
- }
- if (!caseSensitive) {
- pageContent = pageContent.toLowerCase();
- query = query.toLowerCase();
- }
- if (phraseSearch) {
- this._calculatePhraseMatch(query, pageIndex, pageContent, entireWord);
- } else {
- this._calculateWordMatch(query, pageIndex, pageContent, entireWord);
- }
- if (this._state.highlightAll) {
- this._updatePage(pageIndex);
- }
- if (this._resumePageIdx === pageIndex) {
- this._resumePageIdx = null;
- this._nextPageMatch();
- }
- var pageMatchesCount = this._pageMatches[pageIndex].length;
- if (pageMatchesCount > 0) {
- this._matchesCountTotal += pageMatchesCount;
- this._updateUIResultsCount();
- }
- }
- }, {
- key: "_extractText",
- value: function _extractText() {
- var _this2 = this;
- if (this._extractTextPromises.length > 0) {
- return;
- }
- var promise = Promise.resolve();
- var _loop = function _loop(i, ii) {
- var extractTextCapability = (0, _pdf.createPromiseCapability)();
- _this2._extractTextPromises[i] = extractTextCapability.promise;
- promise = promise.then(function () {
- return _this2._pdfDocument.getPage(i + 1).then(function (pdfPage) {
- return pdfPage.getTextContent({
- normalizeWhitespace: true
- });
- }).then(function (textContent) {
- var textItems = textContent.items;
- var strBuf = [];
- for (var j = 0, jj = textItems.length; j < jj; j++) {
- strBuf.push(textItems[j].str);
- }
- _this2._pageContents[i] = normalize(strBuf.join(''));
- extractTextCapability.resolve(i);
- }, function (reason) {
- console.error("Unable to get text content for page ".concat(i + 1), reason);
- _this2._pageContents[i] = '';
- extractTextCapability.resolve(i);
- });
- });
- };
- for (var i = 0, ii = this._linkService.pagesCount; i < ii; i++) {
- _loop(i, ii);
- }
- }
- }, {
- key: "_updatePage",
- value: function _updatePage(index) {
- if (this._scrollMatches && this._selected.pageIdx === index) {
- this._linkService.page = index + 1;
- }
- this._eventBus.dispatch('updatetextlayermatches', {
- source: this,
- pageIndex: index
- });
- }
- }, {
- key: "_updateAllPages",
- value: function _updateAllPages() {
- this._eventBus.dispatch('updatetextlayermatches', {
- source: this,
- pageIndex: -1
- });
- }
- }, {
- key: "_nextMatch",
- value: function _nextMatch() {
- var _this3 = this;
- var previous = this._state.findPrevious;
- var currentPageIndex = this._linkService.page - 1;
- var numPages = this._linkService.pagesCount;
- this._highlightMatches = true;
- if (this._dirtyMatch) {
- this._dirtyMatch = false;
- this._selected.pageIdx = this._selected.matchIdx = -1;
- this._offset.pageIdx = currentPageIndex;
- this._offset.matchIdx = null;
- this._offset.wrapped = false;
- this._resumePageIdx = null;
- this._pageMatches.length = 0;
- this._pageMatchesLength.length = 0;
- this._matchesCountTotal = 0;
- this._updateAllPages();
- for (var i = 0; i < numPages; i++) {
- if (this._pendingFindMatches[i] === true) {
- continue;
- }
- this._pendingFindMatches[i] = true;
- this._extractTextPromises[i].then(function (pageIdx) {
- delete _this3._pendingFindMatches[pageIdx];
- _this3._calculateMatch(pageIdx);
- });
- }
- }
- if (this._query === '') {
- this._updateUIState(FindState.FOUND);
- return;
- }
- if (this._resumePageIdx) {
- return;
- }
- var offset = this._offset;
- this._pagesToSearch = numPages;
- if (offset.matchIdx !== null) {
- var numPageMatches = this._pageMatches[offset.pageIdx].length;
- if (!previous && offset.matchIdx + 1 < numPageMatches || previous && offset.matchIdx > 0) {
- offset.matchIdx = previous ? offset.matchIdx - 1 : offset.matchIdx + 1;
- this._updateMatch(true);
- return;
- }
- this._advanceOffsetPage(previous);
- }
- this._nextPageMatch();
- }
- }, {
- key: "_matchesReady",
- value: function _matchesReady(matches) {
- var offset = this._offset;
- var numMatches = matches.length;
- var previous = this._state.findPrevious;
- if (numMatches) {
- offset.matchIdx = previous ? numMatches - 1 : 0;
- this._updateMatch(true);
- return true;
- }
- this._advanceOffsetPage(previous);
- if (offset.wrapped) {
- offset.matchIdx = null;
- if (this._pagesToSearch < 0) {
- this._updateMatch(false);
- return true;
- }
- }
- return false;
- }
- }, {
- key: "_nextPageMatch",
- value: function _nextPageMatch() {
- if (this._resumePageIdx !== null) {
- console.error('There can only be one pending page.');
- }
- var matches = null;
- do {
- var pageIdx = this._offset.pageIdx;
- matches = this._pageMatches[pageIdx];
- if (!matches) {
- this._resumePageIdx = pageIdx;
- break;
- }
- } while (!this._matchesReady(matches));
- }
- }, {
- key: "_advanceOffsetPage",
- value: function _advanceOffsetPage(previous) {
- var offset = this._offset;
- var numPages = this._linkService.pagesCount;
- offset.pageIdx = previous ? offset.pageIdx - 1 : offset.pageIdx + 1;
- offset.matchIdx = null;
- this._pagesToSearch--;
- if (offset.pageIdx >= numPages || offset.pageIdx < 0) {
- offset.pageIdx = previous ? numPages - 1 : 0;
- offset.wrapped = true;
- }
- }
- }, {
- key: "_updateMatch",
- value: function _updateMatch() {
- var found = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
- var state = FindState.NOT_FOUND;
- var wrapped = this._offset.wrapped;
- this._offset.wrapped = false;
- if (found) {
- var previousPage = this._selected.pageIdx;
- this._selected.pageIdx = this._offset.pageIdx;
- this._selected.matchIdx = this._offset.matchIdx;
- state = wrapped ? FindState.WRAPPED : FindState.FOUND;
- if (previousPage !== -1 && previousPage !== this._selected.pageIdx) {
- this._updatePage(previousPage);
- }
- }
- this._updateUIState(state, this._state.findPrevious);
- if (this._selected.pageIdx !== -1) {
- this._scrollMatches = true;
- this._updatePage(this._selected.pageIdx);
- }
- }
- }, {
- key: "_onFindBarClose",
- value: function _onFindBarClose(evt) {
- var _this4 = this;
- var pdfDocument = this._pdfDocument;
- this._firstPageCapability.promise.then(function () {
- if (!_this4._pdfDocument || pdfDocument && _this4._pdfDocument !== pdfDocument) {
- return;
- }
- if (_this4._findTimeout) {
- clearTimeout(_this4._findTimeout);
- _this4._findTimeout = null;
- }
- if (_this4._resumePageIdx) {
- _this4._resumePageIdx = null;
- _this4._dirtyMatch = true;
- }
- _this4._updateUIState(FindState.FOUND);
- _this4._highlightMatches = false;
- _this4._updateAllPages();
- });
- }
- }, {
- key: "_requestMatchesCount",
- value: function _requestMatchesCount() {
- var _this$_selected = this._selected,
- pageIdx = _this$_selected.pageIdx,
- matchIdx = _this$_selected.matchIdx;
- var current = 0,
- total = this._matchesCountTotal;
- if (matchIdx !== -1) {
- for (var i = 0; i < pageIdx; i++) {
- current += this._pageMatches[i] && this._pageMatches[i].length || 0;
- }
- current += matchIdx + 1;
- }
- if (current < 1 || current > total) {
- current = total = 0;
- }
- return {
- current: current,
- total: total
- };
- }
- }, {
- key: "_updateUIResultsCount",
- value: function _updateUIResultsCount() {
- this._eventBus.dispatch('updatefindmatchescount', {
- source: this,
- matchesCount: this._requestMatchesCount()
- });
- }
- }, {
- key: "_updateUIState",
- value: function _updateUIState(state, previous) {
- this._eventBus.dispatch('updatefindcontrolstate', {
- source: this,
- state: state,
- previous: previous,
- matchesCount: this._requestMatchesCount()
- });
- }
- }, {
- key: "highlightMatches",
- get: function get() {
- return this._highlightMatches;
- }
- }, {
- key: "pageMatches",
- get: function get() {
- return this._pageMatches;
- }
- }, {
- key: "pageMatchesLength",
- get: function get() {
- return this._pageMatchesLength;
- }
- }, {
- key: "selected",
- get: function get() {
- return this._selected;
- }
- }, {
- key: "state",
- get: function get() {
- return this._state;
- }
- }, {
- key: "_query",
- get: function get() {
- if (this._state.query !== this._rawQuery) {
- this._rawQuery = this._state.query;
- this._normalizedQuery = normalize(this._state.query);
- }
- return this._normalizedQuery;
- }
- }]);
- return PDFFindController;
- }();
- exports.PDFFindController = PDFFindController;
|