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.
|
|
|
|
*/
|
|
|
|
|
2018-06-29 22:28:38 +09:00
|
|
|
import { BaseViewer, ScrollMode } from './base_viewer';
|
2017-08-01 21:11:28 +09:00
|
|
|
import { getVisibleElements, scrollIntoView } from './ui_utils';
|
|
|
|
import { shadow } from 'pdfjs-lib';
|
|
|
|
|
|
|
|
class PDFViewer extends BaseViewer {
|
|
|
|
get _setDocumentViewerElement() {
|
|
|
|
return shadow(this, '_setDocumentViewerElement', this.viewer);
|
|
|
|
}
|
|
|
|
|
|
|
|
_scrollIntoView({ pageDiv, pageSpot = 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;
|
2018-06-29 21:14:11 +09:00
|
|
|
if (this._scrollMode === ScrollMode.HORIZONTAL ||
|
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
|
|
|
}
|
2017-08-01 21:11:28 +09:00
|
|
|
scrollIntoView(pageDiv, pageSpot);
|
|
|
|
}
|
|
|
|
|
|
|
|
_getVisiblePages() {
|
|
|
|
if (!this.isInPresentationMode) {
|
2018-05-15 12:10:32 +09:00
|
|
|
return getVisibleElements(this.container, this._pages, true,
|
2018-06-29 21:14:11 +09:00
|
|
|
this._scrollMode === ScrollMode.HORIZONTAL);
|
2017-08-01 21:11:28 +09:00
|
|
|
}
|
2018-10-24 19:29:56 +09:00
|
|
|
// The algorithm in `getVisibleElements` doesn't work in all browsers and
|
2017-08-01 21:11:28 +09:00
|
|
|
// configurations when presentation mode is active.
|
2018-10-24 19:29:56 +09:00
|
|
|
return this._getCurrentVisiblePage();
|
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
|
|
|
}
|
2018-05-15 12:10:32 +09:00
|
|
|
|
2018-06-22 04:45:03 +09:00
|
|
|
get _isScrollModeHorizontal() {
|
|
|
|
// Used to ensure that pre-rendering of the next/previous page works
|
|
|
|
// correctly, since Scroll/Spread modes are ignored in Presentation Mode.
|
|
|
|
return (this.isInPresentationMode ?
|
2018-06-29 21:14:11 +09:00
|
|
|
false : this._scrollMode === ScrollMode.HORIZONTAL);
|
2018-06-22 04:45:03 +09:00
|
|
|
}
|
2017-08-01 21:11:28 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
|
|
|
PDFViewer,
|
|
|
|
};
|