97c10e9c08
Apparently some PDF files can have annotations with `URI` entries ending with `null` characters, thus breaking the links. To handle this edge-case of bad PDFs, this patch moves the already existing utility function from `ui_utils.js` into `util.js`, in order to fix those URLs. Fixes 6832.
169 lines
5.1 KiB
JavaScript
169 lines
5.1 KiB
JavaScript
/* 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.
|
|
*/
|
|
/* globals PDFJS */
|
|
|
|
'use strict';
|
|
|
|
/**
|
|
* @typedef {Object} PDFOutlineViewOptions
|
|
* @property {HTMLDivElement} container - The viewer element.
|
|
* @property {Array} outline - An array of outline objects.
|
|
* @property {IPDFLinkService} linkService - The navigation/linking service.
|
|
*/
|
|
|
|
/**
|
|
* @class
|
|
*/
|
|
var PDFOutlineView = (function PDFOutlineViewClosure() {
|
|
/**
|
|
* @constructs PDFOutlineView
|
|
* @param {PDFOutlineViewOptions} options
|
|
*/
|
|
function PDFOutlineView(options) {
|
|
this.container = options.container;
|
|
this.outline = options.outline;
|
|
this.linkService = options.linkService;
|
|
this.lastToggleIsShow = true;
|
|
}
|
|
|
|
PDFOutlineView.prototype = {
|
|
reset: function PDFOutlineView_reset() {
|
|
var container = this.container;
|
|
while (container.firstChild) {
|
|
container.removeChild(container.firstChild);
|
|
}
|
|
this.lastToggleIsShow = true;
|
|
},
|
|
|
|
/**
|
|
* @private
|
|
*/
|
|
_dispatchEvent: function PDFOutlineView_dispatchEvent(outlineCount) {
|
|
var event = document.createEvent('CustomEvent');
|
|
event.initCustomEvent('outlineloaded', true, true, {
|
|
outlineCount: outlineCount
|
|
});
|
|
this.container.dispatchEvent(event);
|
|
},
|
|
|
|
/**
|
|
* @private
|
|
*/
|
|
_bindLink: function PDFOutlineView_bindLink(element, item) {
|
|
var linkService = this.linkService;
|
|
element.href = linkService.getDestinationHash(item.dest);
|
|
element.onclick = function goToDestination(e) {
|
|
linkService.navigateTo(item.dest);
|
|
return false;
|
|
};
|
|
},
|
|
|
|
/**
|
|
* Prepend a button before an outline item which allows the user to toggle
|
|
* the visibility of all outline items at that level.
|
|
*
|
|
* @private
|
|
*/
|
|
_addToggleButton: function PDFOutlineView_addToggleButton(div) {
|
|
var toggler = document.createElement('div');
|
|
toggler.className = 'outlineItemToggler';
|
|
toggler.onclick = function(event) {
|
|
event.stopPropagation();
|
|
toggler.classList.toggle('outlineItemsHidden');
|
|
|
|
if (event.shiftKey) {
|
|
var shouldShowAll = !toggler.classList.contains('outlineItemsHidden');
|
|
this._toggleOutlineItem(div, shouldShowAll);
|
|
}
|
|
}.bind(this);
|
|
div.insertBefore(toggler, div.firstChild);
|
|
},
|
|
|
|
/**
|
|
* Toggle the visibility of the subtree of an outline item.
|
|
*
|
|
* @param {Element} root - the root of the outline (sub)tree.
|
|
* @param {boolean} state - whether to show the outline (sub)tree. If false,
|
|
* the outline subtree rooted at |root| will be collapsed.
|
|
*
|
|
* @private
|
|
*/
|
|
_toggleOutlineItem: function PDFOutlineView_toggleOutlineItem(root, show) {
|
|
this.lastToggleIsShow = show;
|
|
var togglers = root.querySelectorAll('.outlineItemToggler');
|
|
for (var i = 0, ii = togglers.length; i < ii; ++i) {
|
|
togglers[i].classList[show ? 'remove' : 'add']('outlineItemsHidden');
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Collapse or expand all subtrees of the outline.
|
|
*/
|
|
toggleOutlineTree: function PDFOutlineView_toggleOutlineTree() {
|
|
this._toggleOutlineItem(this.container, !this.lastToggleIsShow);
|
|
},
|
|
|
|
render: function PDFOutlineView_render() {
|
|
var outline = this.outline;
|
|
var outlineCount = 0;
|
|
|
|
this.reset();
|
|
|
|
if (!outline) {
|
|
this._dispatchEvent(outlineCount);
|
|
return;
|
|
}
|
|
|
|
var fragment = document.createDocumentFragment();
|
|
var queue = [{ parent: fragment, items: this.outline }];
|
|
var hasAnyNesting = false;
|
|
while (queue.length > 0) {
|
|
var levelData = queue.shift();
|
|
for (var i = 0, len = levelData.items.length; i < len; i++) {
|
|
var item = levelData.items[i];
|
|
var div = document.createElement('div');
|
|
div.className = 'outlineItem';
|
|
var element = document.createElement('a');
|
|
this._bindLink(element, item);
|
|
element.textContent = PDFJS.removeNullCharacters(item.title);
|
|
div.appendChild(element);
|
|
|
|
if (item.items.length > 0) {
|
|
hasAnyNesting = true;
|
|
this._addToggleButton(div);
|
|
|
|
var itemsDiv = document.createElement('div');
|
|
itemsDiv.className = 'outlineItems';
|
|
div.appendChild(itemsDiv);
|
|
queue.push({ parent: itemsDiv, items: item.items });
|
|
}
|
|
|
|
levelData.parent.appendChild(div);
|
|
outlineCount++;
|
|
}
|
|
}
|
|
if (hasAnyNesting) {
|
|
this.container.classList.add('outlineWithDeepNesting');
|
|
}
|
|
|
|
this.container.appendChild(fragment);
|
|
|
|
this._dispatchEvent(outlineCount);
|
|
}
|
|
};
|
|
|
|
return PDFOutlineView;
|
|
})();
|