Some test text!
Web / Guides / Loading events
This guide will go over the order of events that happen when WebViewer is instantiated and a document is loaded. The events in this guide are important and often used for certain behaviors while using WebViewer. For example, opening a notes panel after a document loads.
Here is a complete visualization of the order of events that occur. For a more detailed description, see the sections below.
The first step you take when implementing WebViewer is creating a new instance of WebViewer. This is done with the PDFTron.WebViewer
constructor, like so:
WebViewer({
path: '/path/lib',
initialDoc: 'https://myserver.com/myfile.pdf'
}, document.getElementById('viewer'));
WebViewer then creates/mounts an iframe in the DOM element that you provide and starts loading all the necessary resources in that iframe, including the UI and web workers.
The loading and mounting process is done asynchronously. When those resources are finished loading and WebViewer can be interacted with, the WebViewer promise resolves.
Once the WebViewer promise resolves, you can begin to interact with WebViewer. This is the best point in time to perform setup like UI customizations , loading documents , subscribing to other WebViewer events, and any other functionality you may want to use.
WebViewer({
initialDoc: 'https://myserver.com/myfile.pdf'
}, document.getElementById('viewer'))
.then(instance => {
// you can disable annotations
instance.UI.disableAnnotations();
// or customize the UI
instance.UI.setTheme({ primary: 'blue', secondary: 'white' });
// etc..
});
Once all the required WebViewer resources are loaded, documents can start loading. You can load a document either by passing a URL to the initialDoc
constructor option, or calling loadDocument
after the WebViewer promise resolves (as seen above).
The first step of loading a document is loading all, or part, of the document into memory. Once we have enough information about the document stored in memory, the first document lifecycle event is called, DocumentViewer.documentLoaded
.
This event is called when the document is loaded into memory and you can start interacting with the document. This includes page manipulation , loading annotations , initializing collaboration , and more!
You can bind to the event through the DocumentViewer like so:
WebViewer({
initialDoc: 'https://myserver.com/myfile.pdf'
}, document.getElementById('viewer'))
.then(instance => {
const { documentViewer, annotationManager } = instance.Core;
documentViewer.addEventListener('documentLoaded', () => {
// here you can get the document and perform actions on it,
// such as removing pages
documentViewer.getDocument().removePages([2]).then(() => { })
// or importing annotations from your server
getAnnotationsFromServer(DOCUMENT_ID).then(async xfdfString => {
const annotations = await annotationManager.importAnnotations(xfdfString);
annotationManager.drawAnnotationsFromList(annotations);
});
})
});
If you want the callback to only be fired once, you can unsubscribe from the event like so:
WebViewer(...)
.then(instance => {
const docViewer = instance.Core.documentViewer;
const callback = () => {
// unsubscribe immediatly after invoking
docViewer.removeEventListener('documentLoaded', callback);
}
docViewer.addEventListener('documentLoaded', callback);
// or
docViewer.addEventListener('documentLoaded', () => { }, { once: true });
})
On the other hand, if a document fails to load, a loaderror
event will be triggered on the iframe window. Although WebViewer can recover from most loading errors, you may want to show a custom error message, submit a log to an API, and/or load a new document.
WebViewer({
initialDoc: 'https://myserver.com/myfile.pdf'
}, document.getElementById('viewer'))
.then(function(instance) {
const UIEvents = instance.UI.Events;
instance.UI.addEventListener(UIEvents.LOAD_ERROR, function(err) {
// Do something with error. eg. instance.showErrorMessage('An error has occurred')
});
});
After the document is in memory, we are ready to start rendering to the screen. The document and its annotations are rendered in parallel, and there are two main events that are fired during this cycle: pageComplete
and annotationsLoaded
.
The pageComplete event is fired for each page that is rendered. We only render the pages that are visible on the screen, so this event won't get fired for every page in the document at once. This event will get called when the user scrolls up and down the document, or when a page is zoomed or rotated, or anything else that makes it rerender.
You can subscribe to this event similar to how you subscribe to the documentLoaded
event (as seen in the previous section).
WebViewer({
initialDoc: 'https://myserver.com/myfile.pdf'
}, document.getElementById('viewer'))
.then(instance => {
const { documentViewer } = instance.Core;
documentViewer.addEventListener('pageComplete', (pageNumber, canvas) => {
// here it's guaranteed that page {pageNumber} is fully rendered
// you can get or set pixels on the canvas, etc
})
});
Remember that this callback is fired for every page on every document that is loaded. You can unsubscribe using the same way mentioned above.
The annotationsLoaded event is fired when all the annotations have been loaded into memory. This is the ideal time that you can start interacting with the annotations, such as saving and loading , since all the annotations should be ready.
You can subscribe to the event on the AnnotationManager
like so:
WebViewer({
initialDoc: 'https://myserver.com/myfile.pdf'
}, document.getElementById('viewer'))
.then(instance => {
const { documentViewer, annotationManager } = instance.Core;
documentViewer.addEventListener('annotationsLoaded', async () => {
// here you can start interacting with annotations,
// like saving the original annotations to your server
const xfdfString = await annotationManager.exportAnnotations({ widgets: false });
saveAnnotsStringToServer(xfdfString);
})
});
Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales