mirror of
https://github.com/zen-browser/pdf.js.git
synced 2025-07-09 01:35:43 +02:00
Add OpenAction destination support, off by default, to the viewer
Given that it's really not clear to me if this is actually desired functionality in the default viewer, and considering that it doesn't fit in *great* with the way that `PDFHistory` is initialized, this feature is currently off by default[1]. --- [1] It's controlled with the `disableOpenActionDestination` Preference/AppOption.
This commit is contained in:
parent
b05f053287
commit
a7e70a50f5
6 changed files with 42 additions and 10 deletions
17
web/app.js
17
web/app.js
|
@ -867,7 +867,9 @@ let PDFViewerApplication = {
|
|||
|
||||
// Since the `setInitialView` call below depends on this being resolved,
|
||||
// fetch it early to avoid delaying initial rendering of the PDF document.
|
||||
let pageModePromise = pdfDocument.getPageMode().catch(
|
||||
const pageModePromise = pdfDocument.getPageMode().catch(
|
||||
function() { /* Avoid breaking initial rendering; ignoring errors. */ });
|
||||
const openActionDestPromise = pdfDocument.getOpenActionDestination().catch(
|
||||
function() { /* Avoid breaking initial rendering; ignoring errors. */ });
|
||||
|
||||
this.toolbar.setPagesCount(pdfDocument.numPages, false);
|
||||
|
@ -923,8 +925,17 @@ let PDFViewerApplication = {
|
|||
}).catch(() => { /* Unable to read from storage; ignoring errors. */ });
|
||||
|
||||
Promise.all([
|
||||
storePromise, pageModePromise,
|
||||
]).then(async ([values = {}, pageMode]) => {
|
||||
storePromise, pageModePromise, openActionDestPromise,
|
||||
]).then(async ([values = {}, pageMode, openActionDest]) => {
|
||||
if (openActionDest && !this.initialBookmark &&
|
||||
!AppOptions.get('disableOpenActionDestination')) {
|
||||
// Always let the browser history/document hash take precedence.
|
||||
this.initialBookmark = JSON.stringify(openActionDest);
|
||||
// TODO: Re-factor the `PDFHistory` initialization to remove this hack
|
||||
// that's currently necessary to prevent weird initial history state.
|
||||
this.pdfHistory.push({ explicitDest: openActionDest,
|
||||
pageNumber: null, });
|
||||
}
|
||||
const initialBookmark = this.initialBookmark;
|
||||
// Initialize the default values, from user preferences.
|
||||
const zoom = AppOptions.get('defaultZoomValue');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue