2017-08-01 21:11:28 +09:00
|
|
|
/* Copyright 2014 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.
|
|
|
|
*/
|
|
|
|
|
2019-01-23 17:11:06 +09:00
|
|
|
import { BaseViewer } from './base_viewer';
|
2017-08-01 21:11:28 +09:00
|
|
|
import { shadow } from 'pdfjs-lib';
|
|
|
|
|
|
|
|
class PDFViewer extends BaseViewer {
|
|
|
|
get _setDocumentViewerElement() {
|
|
|
|
return shadow(this, '_setDocumentViewerElement', this.viewer);
|
|
|
|
}
|
|
|
|
|
2019-01-23 17:11:06 +09:00
|
|
|
_scrollIntoView({ pageDiv, pageSpot = null, pageNumber = null, }) {
|
2018-06-22 04:45:03 +09:00
|
|
|
if (!pageSpot && !this.isInPresentationMode) {
|
2018-05-15 12:10:32 +09:00
|
|
|
const left = pageDiv.offsetLeft + pageDiv.clientLeft;
|
|
|
|
const right = left + pageDiv.clientWidth;
|
|
|
|
const { scrollLeft, clientWidth, } = this.container;
|
2019-01-23 17:11:06 +09:00
|
|
|
if (this._isScrollModeHorizontal ||
|
2018-05-15 12:10:32 +09:00
|
|
|
left < scrollLeft || right > scrollLeft + clientWidth) {
|
|
|
|
pageSpot = { left: 0, top: 0, };
|
|
|
|
}
|
2018-05-15 12:10:32 +09:00
|
|
|
}
|
2019-01-23 17:11:06 +09:00
|
|
|
super._scrollIntoView({ pageDiv, pageSpot, pageNumber, });
|
2017-08-01 21:11:28 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
_getVisiblePages() {
|
2019-01-23 17:11:06 +09:00
|
|
|
if (this.isInPresentationMode) {
|
|
|
|
// The algorithm in `getVisibleElements` doesn't work in all browsers and
|
|
|
|
// configurations (e.g. Chrome) when Presentation Mode is active.
|
|
|
|
return this._getCurrentVisiblePage();
|
2017-08-01 21:11:28 +09:00
|
|
|
}
|
2019-01-23 17:11:06 +09:00
|
|
|
return super._getVisiblePages();
|
2017-08-01 21:11:28 +09:00
|
|
|
}
|
|
|
|
|
2019-01-18 20:42:32 +09:00
|
|
|
_updateHelper(visiblePages) {
|
|
|
|
if (this.isInPresentationMode) {
|
2017-08-01 21:11:28 +09:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
let currentId = this._currentPageNumber;
|
|
|
|
let stillFullyVisible = false;
|
|
|
|
|
2019-01-18 20:42:32 +09:00
|
|
|
for (const page of visiblePages) {
|
2017-08-01 21:11:28 +09:00
|
|
|
if (page.percent < 100) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (page.id === currentId) {
|
|
|
|
stillFullyVisible = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!stillFullyVisible) {
|
|
|
|
currentId = visiblePages[0].id;
|
|
|
|
}
|
2019-01-18 20:42:32 +09:00
|
|
|
this._setCurrentPageNumber(currentId);
|
2017-08-01 21:11:28 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
|
|
|
PDFViewer,
|
|
|
|
};
|