mirror of
https://github.com/mozilla/pdf.js.git
synced 2026-05-31 07:11:00 +02:00
Currently the viewer uses semi-private `EventBus.prototype.{_on, _off}` methods, to try and ensure that all internal viewer state is updated *before* any "external" listeners are invoked.
For all use-cases outside of the viewer, e.g in the integration-tests, the `EventBus.prototype.{on, off}` methods are supposed to be used instead.
Unfortunately this isn't currently enforced in any way, except (hopefully) during review, and generally speaking it's not really possible to prevent the semi-private methods being used (e.g. by third-party users).
Hence this patch adds a new `INTERNAL_EVT` property which is *not* exposed anywhere (neither in the API nor globally), and whose value is generated at build-time, that the viewer uses to mark its `EventBus` listeners are internal.
This allows us to remove the semi-private `EventBus` methods, which helps to simplify that class a little bit.
220 lines
6.3 KiB
JavaScript
220 lines
6.3 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.
|
|
*/
|
|
|
|
import { INTERNAL_EVT, internalOpt } from "./internal_evt.js";
|
|
|
|
const WaitOnType = {
|
|
EVENT: "event",
|
|
TIMEOUT: "timeout",
|
|
};
|
|
|
|
/**
|
|
* @typedef {Object} WaitOnEventOrTimeoutParameters
|
|
* @property {Object} target - The event target, can for example be:
|
|
* `window`, `document`, a DOM element, or an {EventBus} instance.
|
|
* @property {string} name - The name of the event.
|
|
* @property {number} delay - The delay, in milliseconds, after which the
|
|
* timeout occurs (if the event wasn't already dispatched).
|
|
*/
|
|
|
|
/**
|
|
* Allows waiting for an event or a timeout, whichever occurs first.
|
|
* Can be used to ensure that an action always occurs, even when an event
|
|
* arrives late or not at all.
|
|
*
|
|
* @param {WaitOnEventOrTimeoutParameters}
|
|
* @returns {Promise} A promise that is resolved with a {WaitOnType} value.
|
|
*/
|
|
async function waitOnEventOrTimeout({ target, name, delay = 0 }) {
|
|
if (
|
|
typeof target !== "object" ||
|
|
!(name && typeof name === "string") ||
|
|
!(Number.isInteger(delay) && delay >= 0)
|
|
) {
|
|
throw new Error("waitOnEventOrTimeout - invalid parameters.");
|
|
}
|
|
const { promise, resolve } = Promise.withResolvers();
|
|
const ac = new AbortController();
|
|
|
|
function handler(type) {
|
|
ac.abort(); // Remove event listener.
|
|
clearTimeout(timeout);
|
|
|
|
resolve(type);
|
|
}
|
|
|
|
const evtMethod = target instanceof EventBus ? "on" : "addEventListener";
|
|
const evtOpts =
|
|
target instanceof EventBus
|
|
? { signal: ac.signal, ...internalOpt }
|
|
: { signal: ac.signal };
|
|
target[evtMethod](name, handler.bind(null, WaitOnType.EVENT), evtOpts);
|
|
|
|
const timeout = setTimeout(handler.bind(null, WaitOnType.TIMEOUT), delay);
|
|
|
|
return promise;
|
|
}
|
|
|
|
/**
|
|
* Simple event bus for an application. Listeners are attached using the `on`
|
|
* and `off` methods. To raise an event, the `dispatch` method shall be used.
|
|
*/
|
|
class EventBus {
|
|
#listeners = Object.create(null);
|
|
|
|
constructor() {
|
|
if (typeof PDFJSDev === "undefined" || PDFJSDev.test("GENERIC")) {
|
|
// Prevent the class methods from being overridden by third-party users,
|
|
// to ensure that `INTERNAL_EVT` cannot be accessed from the outside.
|
|
Object.seal(this);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {string} eventName
|
|
* @param {function} listener
|
|
* @param {Object} [options]
|
|
*/
|
|
on(eventName, listener, options = null) {
|
|
let rmAbort = null;
|
|
if (options?.signal instanceof AbortSignal) {
|
|
const { signal } = options;
|
|
if (signal.aborted) {
|
|
console.error("Cannot use an `aborted` signal.");
|
|
return;
|
|
}
|
|
const onAbort = () => this.off(eventName, listener);
|
|
rmAbort = () => signal.removeEventListener("abort", onAbort);
|
|
|
|
signal.addEventListener("abort", onAbort);
|
|
}
|
|
|
|
const eventListeners = (this.#listeners[eventName] ??= []);
|
|
eventListeners.push({
|
|
listener,
|
|
internal: options?.internal === INTERNAL_EVT,
|
|
once: options?.once === true,
|
|
rmAbort,
|
|
});
|
|
}
|
|
|
|
/**
|
|
* @param {string} eventName
|
|
* @param {function} listener
|
|
* @param {Object} [options]
|
|
*/
|
|
off(eventName, listener, options = null) {
|
|
const eventListeners = this.#listeners[eventName];
|
|
if (!eventListeners) {
|
|
return;
|
|
}
|
|
for (let i = 0, ii = eventListeners.length; i < ii; i++) {
|
|
const evt = eventListeners[i];
|
|
if (evt.listener === listener) {
|
|
evt.rmAbort?.(); // Ensure that the `AbortSignal` listener is removed.
|
|
eventListeners.splice(i, 1);
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {string} eventName
|
|
* @param {Object} data
|
|
*/
|
|
dispatch(eventName, data) {
|
|
const eventListeners = this.#listeners[eventName];
|
|
if (!eventListeners?.length) {
|
|
return;
|
|
}
|
|
let extListeners;
|
|
// Making copy of the listeners array in case if it will be modified
|
|
// during dispatch.
|
|
for (const { listener, internal, once } of eventListeners.slice(0)) {
|
|
if (once) {
|
|
this.off(eventName, listener);
|
|
}
|
|
if (!internal) {
|
|
(extListeners ??= []).push(listener);
|
|
continue;
|
|
}
|
|
listener(data);
|
|
}
|
|
// Dispatch any "external" listeners *after* the internal ones, to give the
|
|
// viewer components time to handle events and update their state first.
|
|
if (extListeners) {
|
|
for (const listener of extListeners) {
|
|
listener(data);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* NOTE: Only used in the Firefox built-in pdf viewer.
|
|
*/
|
|
class FirefoxEventBus extends EventBus {
|
|
#externalServices;
|
|
|
|
#globalEventNames;
|
|
|
|
#isInAutomation;
|
|
|
|
constructor(globalEventNames, externalServices, isInAutomation) {
|
|
super();
|
|
this.#globalEventNames = globalEventNames;
|
|
this.#externalServices = externalServices;
|
|
this.#isInAutomation = isInAutomation;
|
|
}
|
|
|
|
dispatch(eventName, data) {
|
|
if (typeof PDFJSDev !== "undefined" && !PDFJSDev.test("MOZCENTRAL")) {
|
|
throw new Error("Not implemented: FirefoxEventBus.dispatch");
|
|
}
|
|
super.dispatch(eventName, data);
|
|
|
|
if (this.#isInAutomation) {
|
|
const detail = Object.create(null);
|
|
if (data) {
|
|
for (const key in data) {
|
|
const value = data[key];
|
|
if (key === "source") {
|
|
if (value === window || value === document) {
|
|
return; // No need to re-dispatch (already) global events.
|
|
}
|
|
continue; // Ignore the `source` property.
|
|
}
|
|
detail[key] = value;
|
|
}
|
|
}
|
|
const event = new CustomEvent(eventName, {
|
|
bubbles: true,
|
|
cancelable: true,
|
|
detail,
|
|
});
|
|
document.dispatchEvent(event);
|
|
}
|
|
|
|
if (this.#globalEventNames?.has(eventName)) {
|
|
this.#externalServices.dispatchGlobalEvent({
|
|
eventName,
|
|
detail: data,
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
export { EventBus, FirefoxEventBus, waitOnEventOrTimeout, WaitOnType };
|