2014-04-25 04:23:25 +09:00
|
|
|
/* Copyright 2012 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-02-13 22:03:52 +09:00
|
|
|
import { addLinkAttributes, LinkTarget, removeNullCharacters } from 'pdfjs-lib';
|
2016-09-30 23:08:03 +09:00
|
|
|
|
2017-04-18 00:13:48 +09:00
|
|
|
const DEFAULT_TITLE = '\u2013';
|
2016-02-26 20:46:46 +09:00
|
|
|
|
2015-01-28 06:54:14 +09:00
|
|
|
/**
|
2016-02-21 21:36:24 +09:00
|
|
|
* @typedef {Object} PDFOutlineViewerOptions
|
2015-01-28 06:54:14 +09:00
|
|
|
* @property {HTMLDivElement} container - The viewer element.
|
|
|
|
* @property {IPDFLinkService} linkService - The navigation/linking service.
|
2016-04-26 07:57:15 +09:00
|
|
|
* @property {EventBus} eventBus - The application event bus.
|
2015-01-28 06:54:14 +09:00
|
|
|
*/
|
|
|
|
|
2016-02-21 21:36:24 +09:00
|
|
|
/**
|
|
|
|
* @typedef {Object} PDFOutlineViewerRenderParameters
|
|
|
|
* @property {Array|null} outline - An array of outline objects.
|
|
|
|
*/
|
|
|
|
|
2017-04-18 00:13:48 +09:00
|
|
|
class PDFOutlineViewer {
|
2015-01-28 06:54:14 +09:00
|
|
|
/**
|
2016-02-21 21:36:24 +09:00
|
|
|
* @param {PDFOutlineViewerOptions} options
|
2015-01-28 06:54:14 +09:00
|
|
|
*/
|
2017-06-30 19:55:22 +09:00
|
|
|
constructor({ container, linkService, eventBus, }) {
|
|
|
|
this.container = container;
|
|
|
|
this.linkService = linkService;
|
|
|
|
this.eventBus = eventBus;
|
2017-08-14 19:34:24 +09:00
|
|
|
|
|
|
|
this.reset();
|
2018-10-02 20:08:24 +09:00
|
|
|
|
|
|
|
eventBus.on('toggleoutlinetree', this.toggleOutlineTree.bind(this));
|
2014-04-25 04:23:25 +09:00
|
|
|
}
|
|
|
|
|
2017-04-18 00:13:48 +09:00
|
|
|
reset() {
|
|
|
|
this.outline = null;
|
|
|
|
this.lastToggleIsShow = true;
|
|
|
|
|
|
|
|
// Remove the outline from the DOM.
|
|
|
|
this.container.textContent = '';
|
|
|
|
|
|
|
|
// Ensure that the left (right in RTL locales) margin is always reset,
|
|
|
|
// to prevent incorrect outline alignment if a new document is opened.
|
|
|
|
this.container.classList.remove('outlineWithDeepNesting');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_dispatchEvent(outlineCount) {
|
|
|
|
this.eventBus.dispatch('outlineloaded', {
|
|
|
|
source: this,
|
|
|
|
outlineCount,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @private
|
|
|
|
*/
|
2018-02-13 22:03:52 +09:00
|
|
|
_bindLink(element, { url, newWindow, dest, }) {
|
|
|
|
let { linkService, } = this;
|
|
|
|
|
|
|
|
if (url) {
|
2017-04-18 00:13:48 +09:00
|
|
|
addLinkAttributes(element, {
|
2018-02-13 22:03:52 +09:00
|
|
|
url,
|
|
|
|
target: (newWindow ? LinkTarget.BLANK : linkService.externalLinkTarget),
|
|
|
|
rel: linkService.externalLinkRel,
|
2015-03-21 21:07:01 +09:00
|
|
|
});
|
2017-04-18 00:13:48 +09:00
|
|
|
return;
|
|
|
|
}
|
2016-10-23 00:44:17 +09:00
|
|
|
|
2018-02-17 23:08:28 +09:00
|
|
|
element.href = linkService.getDestinationHash(dest);
|
2017-04-18 00:13:48 +09:00
|
|
|
element.onclick = () => {
|
2018-02-13 22:03:52 +09:00
|
|
|
if (dest) {
|
2018-02-17 23:08:28 +09:00
|
|
|
linkService.navigateTo(dest);
|
2016-02-01 00:39:29 +09:00
|
|
|
}
|
2017-04-18 00:13:48 +09:00
|
|
|
return false;
|
|
|
|
};
|
|
|
|
}
|
2016-02-01 00:39:29 +09:00
|
|
|
|
2017-04-18 00:13:48 +09:00
|
|
|
/**
|
|
|
|
* @private
|
|
|
|
*/
|
2018-02-13 22:03:52 +09:00
|
|
|
_setStyles(element, { bold, italic, }) {
|
2017-06-30 19:55:22 +09:00
|
|
|
let styleStr = '';
|
2018-02-13 22:03:52 +09:00
|
|
|
if (bold) {
|
2017-04-18 00:13:48 +09:00
|
|
|
styleStr += 'font-weight: bold;';
|
|
|
|
}
|
2018-02-13 22:03:52 +09:00
|
|
|
if (italic) {
|
2017-04-18 00:13:48 +09:00
|
|
|
styleStr += 'font-style: italic;';
|
|
|
|
}
|
2014-04-25 04:23:25 +09:00
|
|
|
|
2017-04-18 00:13:48 +09:00
|
|
|
if (styleStr) {
|
|
|
|
element.setAttribute('style', styleStr);
|
|
|
|
}
|
|
|
|
}
|
2014-04-25 04:23:25 +09:00
|
|
|
|
2017-04-18 00:13:48 +09:00
|
|
|
/**
|
|
|
|
* Prepend a button before an outline item which allows the user to toggle
|
|
|
|
* the visibility of all outline items at that level.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_addToggleButton(div) {
|
2017-06-30 19:55:22 +09:00
|
|
|
let toggler = document.createElement('div');
|
2017-04-18 00:13:48 +09:00
|
|
|
toggler.className = 'outlineItemToggler';
|
|
|
|
toggler.onclick = (evt) => {
|
|
|
|
evt.stopPropagation();
|
|
|
|
toggler.classList.toggle('outlineItemsHidden');
|
|
|
|
|
|
|
|
if (evt.shiftKey) {
|
2017-06-30 19:55:22 +09:00
|
|
|
let shouldShowAll = !toggler.classList.contains('outlineItemsHidden');
|
2017-04-18 00:13:48 +09:00
|
|
|
this._toggleOutlineItem(div, shouldShowAll);
|
2015-07-22 02:52:49 +09:00
|
|
|
}
|
2017-04-18 00:13:48 +09:00
|
|
|
};
|
|
|
|
div.insertBefore(toggler, div.firstChild);
|
|
|
|
}
|
2015-07-22 02:52:49 +09:00
|
|
|
|
2017-04-18 00:13:48 +09:00
|
|
|
/**
|
|
|
|
* Toggle the visibility of the subtree of an outline item.
|
|
|
|
*
|
|
|
|
* @param {Element} root - the root of the outline (sub)tree.
|
|
|
|
* @param {boolean} show - whether to show the outline (sub)tree. If false,
|
|
|
|
* the outline subtree rooted at |root| will be collapsed.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
*/
|
2019-02-07 01:18:45 +09:00
|
|
|
_toggleOutlineItem(root, show = false) {
|
2017-04-18 00:13:48 +09:00
|
|
|
this.lastToggleIsShow = show;
|
2019-02-07 01:18:45 +09:00
|
|
|
for (const toggler of root.querySelectorAll('.outlineItemToggler')) {
|
|
|
|
toggler.classList.toggle('outlineItemsHidden', !show);
|
2017-04-18 00:13:48 +09:00
|
|
|
}
|
|
|
|
}
|
2015-03-21 21:07:01 +09:00
|
|
|
|
2017-04-18 00:13:48 +09:00
|
|
|
/**
|
|
|
|
* Collapse or expand all subtrees of the outline.
|
|
|
|
*/
|
|
|
|
toggleOutlineTree() {
|
|
|
|
if (!this.outline) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this._toggleOutlineItem(this.container, !this.lastToggleIsShow);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {PDFOutlineViewerRenderParameters} params
|
|
|
|
*/
|
2017-06-30 19:55:22 +09:00
|
|
|
render({ outline, }) {
|
|
|
|
let outlineCount = 0;
|
2017-04-18 00:13:48 +09:00
|
|
|
|
|
|
|
if (this.outline) {
|
|
|
|
this.reset();
|
|
|
|
}
|
2017-06-30 19:55:22 +09:00
|
|
|
this.outline = outline || null;
|
2017-04-18 00:13:48 +09:00
|
|
|
|
|
|
|
if (!outline) {
|
2015-03-21 21:07:01 +09:00
|
|
|
this._dispatchEvent(outlineCount);
|
2017-04-18 00:13:48 +09:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-06-30 19:55:22 +09:00
|
|
|
let fragment = document.createDocumentFragment();
|
|
|
|
let queue = [{ parent: fragment, items: this.outline, }];
|
|
|
|
let hasAnyNesting = false;
|
2017-04-18 00:13:48 +09:00
|
|
|
while (queue.length > 0) {
|
2017-06-30 19:55:22 +09:00
|
|
|
let levelData = queue.shift();
|
|
|
|
for (let i = 0, len = levelData.items.length; i < len; i++) {
|
|
|
|
let item = levelData.items[i];
|
2017-04-18 00:13:48 +09:00
|
|
|
|
2017-06-30 19:55:22 +09:00
|
|
|
let div = document.createElement('div');
|
2017-04-18 00:13:48 +09:00
|
|
|
div.className = 'outlineItem';
|
|
|
|
|
2017-06-30 19:55:22 +09:00
|
|
|
let element = document.createElement('a');
|
2017-04-18 00:13:48 +09:00
|
|
|
this._bindLink(element, item);
|
|
|
|
this._setStyles(element, item);
|
|
|
|
element.textContent =
|
|
|
|
removeNullCharacters(item.title) || DEFAULT_TITLE;
|
|
|
|
|
|
|
|
div.appendChild(element);
|
|
|
|
|
|
|
|
if (item.items.length > 0) {
|
|
|
|
hasAnyNesting = true;
|
|
|
|
this._addToggleButton(div);
|
|
|
|
|
2017-06-30 19:55:22 +09:00
|
|
|
let itemsDiv = document.createElement('div');
|
2017-04-18 00:13:48 +09:00
|
|
|
itemsDiv.className = 'outlineItems';
|
|
|
|
div.appendChild(itemsDiv);
|
Fix inconsistent spacing and trailing commas in objects in `web/` files, so we can enable the `comma-dangle` and `object-curly-spacing` ESLint rules later on
http://eslint.org/docs/rules/comma-dangle
http://eslint.org/docs/rules/object-curly-spacing
Given that we currently have quite inconsistent object formatting, fixing this in in *one* big patch probably wouldn't be feasible (since I cannot imagine anyone wanting to review that); hence I've opted to try and do this piecewise instead.
*Please note:* This patch was created automatically, using the ESLint `--fix` command line option. In a couple of places this caused lines to become too long, and I've fixed those manually; please refer to the interdiff below for the only hand-edits in this patch.
```diff
diff --git a/web/pdf_thumbnail_view.js b/web/pdf_thumbnail_view.js
index 002dbf29..1de4e530 100644
--- a/web/pdf_thumbnail_view.js
+++ b/web/pdf_thumbnail_view.js
@@ -420,8 +420,8 @@ var PDFThumbnailView = (function PDFThumbnailViewClosure() {
setPageLabel: function PDFThumbnailView_setPageLabel(label) {
this.pageLabel = (typeof label === 'string' ? label : null);
- this.l10n.get('thumb_page_title', { page: this.pageId, }, 'Page {{page}}').
- then((msg) => {
+ this.l10n.get('thumb_page_title', { page: this.pageId, },
+ 'Page {{page}}').then((msg) => {
this.anchor.title = msg;
});
diff --git a/web/secondary_toolbar.js b/web/secondary_toolbar.js
index 160e0410..6495fc5e 100644
--- a/web/secondary_toolbar.js
+++ b/web/secondary_toolbar.js
@@ -65,7 +65,8 @@ class SecondaryToolbar {
{ element: options.printButton, eventName: 'print', close: true, },
{ element: options.downloadButton, eventName: 'download', close: true, },
{ element: options.viewBookmarkButton, eventName: null, close: true, },
- { element: options.firstPageButton, eventName: 'firstpage', close: true, },
+ { element: options.firstPageButton, eventName: 'firstpage',
+ close: true, },
{ element: options.lastPageButton, eventName: 'lastpage', close: true, },
{ element: options.pageRotateCwButton, eventName: 'rotatecw',
close: false, },
@@ -76,7 +77,7 @@ class SecondaryToolbar {
{ element: options.cursorHandToolButton, eventName: 'switchcursortool',
eventDetails: { tool: CursorTool.HAND, }, close: true, },
{ element: options.documentPropertiesButton,
- eventName: 'documentproperties', close: true, }
+ eventName: 'documentproperties', close: true, },
];
this.items = {
firstPage: options.firstPageButton,
```
2017-06-01 19:46:12 +09:00
|
|
|
queue.push({ parent: itemsDiv, items: item.items, });
|
2017-04-18 00:13:48 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
levelData.parent.appendChild(div);
|
|
|
|
outlineCount++;
|
|
|
|
}
|
2014-04-25 04:23:25 +09:00
|
|
|
}
|
2017-04-18 00:13:48 +09:00
|
|
|
if (hasAnyNesting) {
|
|
|
|
this.container.classList.add('outlineWithDeepNesting');
|
|
|
|
}
|
|
|
|
|
|
|
|
this.container.appendChild(fragment);
|
2015-01-28 06:51:39 +09:00
|
|
|
|
2017-04-18 00:13:48 +09:00
|
|
|
this._dispatchEvent(outlineCount);
|
|
|
|
}
|
|
|
|
}
|
2016-04-09 02:34:27 +09:00
|
|
|
|
2017-03-28 08:07:27 +09:00
|
|
|
export {
|
|
|
|
PDFOutlineViewer,
|
|
|
|
};
|