| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- /*
- * Copyright 2010-2020 Gildas Lormeau
- * contact : gildas.lormeau <at> gmail.com
- *
- * This file is part of SingleFile.
- *
- * The code in this file is free software: you can redistribute it and/or
- * modify it under the terms of the GNU Affero General Public License
- * (GNU AGPL) as published by the Free Software Foundation, either version 3
- * of the License, or (at your option) any later version.
- *
- * The code in this file is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
- * General Public License for more details.
- *
- * As additional permission under GNU AGPL version 3 section 7, you may
- * distribute UNMODIFIED VERSIONS OF THIS file without the copy of the GNU
- * AGPL normally required by section 4, provided you include this license
- * notice and a URL through which recipients can access the Corresponding
- * Source.
- */
- /* global globalThis */
- import * as hooksFrames from "./../../hooks/content/content-hooks-frames";
- import {
- LAZY_SRC_ATTRIBUTE_NAME,
- SINGLE_FILE_UI_ELEMENT_CLASS
- } from "./../../../single-file-helper.js";
- const helper = {
- LAZY_SRC_ATTRIBUTE_NAME,
- SINGLE_FILE_UI_ELEMENT_CLASS
- };
- const ATTRIBUTES_MUTATION_TYPE = "attributes";
- const browser = globalThis.browser;
- const document = globalThis.document;
- const MutationObserver = globalThis.MutationObserver;
- const addEventListener = (type, listener, options) => globalThis.addEventListener(type, listener, options);
- const removeEventListener = (type, listener, options) => globalThis.removeEventListener(type, listener, options);
- const timeouts = new Map();
- if (browser && browser.runtime && browser.runtime.onMessage && browser.runtime.onMessage.addListener) {
- browser.runtime.onMessage.addListener(message => {
- if (message.method == "singlefile.lazyTimeout.onTimeout") {
- const timeoutData = timeouts.get(message.type);
- if (timeoutData) {
- timeouts.delete(message.type);
- timeoutData.callback();
- }
- }
- });
- }
- export {
- process,
- resetZoomLevel
- };
- async function process(options) {
- if (document.documentElement) {
- timeouts.clear();
- const maxScrollY = Math.max(document.documentElement.scrollHeight - (document.documentElement.clientHeight * 1.5), 0);
- const maxScrollX = Math.max(document.documentElement.scrollWidth - (document.documentElement.clientWidth * 1.5), 0);
- if (globalThis.scrollY <= maxScrollY && globalThis.scrollX <= maxScrollX) {
- return triggerLazyLoading(options);
- }
- }
- }
- function resetZoomLevel(options) {
- hooksFrames.loadDeferredImagesResetZoomLevel(options);
- }
- function triggerLazyLoading(options) {
- return new Promise(async resolve => { // eslint-disable-line no-async-promise-executor
- let loadingImages;
- const pendingImages = new Set();
- const observer = new MutationObserver(async mutations => {
- mutations = mutations.filter(mutation => mutation.type == ATTRIBUTES_MUTATION_TYPE);
- if (mutations.length) {
- const updated = mutations.filter(mutation => {
- if (mutation.attributeName == "src") {
- mutation.target.setAttribute(helper.LAZY_SRC_ATTRIBUTE_NAME, mutation.target.src);
- mutation.target.addEventListener("load", onResourceLoad);
- }
- if (mutation.attributeName == "src" || mutation.attributeName == "srcset" || mutation.target.tagName == "SOURCE") {
- return !mutation.target.classList || !mutation.target.classList.contains(helper.SINGLE_FILE_UI_ELEMENT_CLASS);
- }
- });
- if (updated.length) {
- loadingImages = true;
- await deferForceLazyLoadEnd(observer, options, cleanupAndResolve);
- if (!pendingImages.size) {
- await deferLazyLoadEnd(observer, options, cleanupAndResolve);
- }
- }
- }
- });
- await setAsyncTimeout("idleTimeout", () => {
- if (!loadingImages) {
- clearAsyncTimeout("loadTimeout");
- clearAsyncTimeout("maxTimeout");
- lazyLoadEnd(observer, options, cleanupAndResolve);
- }
- }, options.loadDeferredImagesMaxIdleTime * 2);
- await deferForceLazyLoadEnd(observer, options, cleanupAndResolve);
- observer.observe(document, { subtree: true, childList: true, attributes: true });
- addEventListener(hooksFrames.LOAD_IMAGE_EVENT, onImageLoadEvent);
- addEventListener(hooksFrames.IMAGE_LOADED_EVENT, onImageLoadedEvent);
- hooksFrames.loadDeferredImagesStart(options);
- function onResourceLoad(event) {
- const element = event.target;
- element.removeAttribute(helper.LAZY_SRC_ATTRIBUTE_NAME);
- element.removeEventListener("load", onResourceLoad);
- }
- async function onImageLoadEvent(event) {
- loadingImages = true;
- await deferForceLazyLoadEnd(observer, options, cleanupAndResolve);
- await deferLazyLoadEnd(observer, options, cleanupAndResolve);
- if (event.detail) {
- pendingImages.add(event.detail);
- }
- }
- async function onImageLoadedEvent(event) {
- await deferForceLazyLoadEnd(observer, options, cleanupAndResolve);
- await deferLazyLoadEnd(observer, options, cleanupAndResolve);
- pendingImages.delete(event.detail);
- if (!pendingImages.size) {
- await deferLazyLoadEnd(observer, options, cleanupAndResolve);
- }
- }
- function cleanupAndResolve(value) {
- observer.disconnect();
- removeEventListener(hooksFrames.LOAD_IMAGE_EVENT, onImageLoadEvent);
- removeEventListener(hooksFrames.IMAGE_LOADED_EVENT, onImageLoadedEvent);
- resolve(value);
- }
- });
- }
- async function deferLazyLoadEnd(observer, options, resolve) {
- await setAsyncTimeout("loadTimeout", () => lazyLoadEnd(observer, options, resolve), options.loadDeferredImagesMaxIdleTime);
- }
- async function deferForceLazyLoadEnd(observer, options, resolve) {
- await setAsyncTimeout("maxTimeout", async () => {
- await clearAsyncTimeout("loadTimeout");
- await lazyLoadEnd(observer, options, resolve);
- }, options.loadDeferredImagesMaxIdleTime * 10);
- }
- async function lazyLoadEnd(observer, options, resolve) {
- await clearAsyncTimeout("idleTimeout");
- hooksFrames.loadDeferredImagesEnd(options);
- await setAsyncTimeout("endTimeout", async () => {
- await clearAsyncTimeout("maxTimeout");
- resolve();
- }, options.loadDeferredImagesMaxIdleTime / 2);
- observer.disconnect();
- }
- async function setAsyncTimeout(type, callback, delay) {
- if (browser && browser.runtime && browser.runtime.sendMessage) {
- if (!timeouts.get(type) || !timeouts.get(type).pending) {
- const timeoutData = { callback, pending: true };
- timeouts.set(type, timeoutData);
- await browser.runtime.sendMessage({ method: "singlefile.lazyTimeout.setTimeout", type, delay });
- timeoutData.pending = false;
- }
- } else {
- const timeoutId = timeouts.get(type);
- if (timeoutId) {
- globalThis.clearTimeout(timeoutId);
- }
- timeouts.set(type, callback);
- globalThis.setTimeout(callback, delay);
- }
- }
- async function clearAsyncTimeout(type) {
- if (browser && browser.runtime && browser.runtime.sendMessage) {
- await browser.runtime.sendMessage({ method: "singlefile.lazyTimeout.clearTimeout", type });
- } else {
- const previousTimeoutId = timeouts.get(type);
- timeouts.delete(type);
- if (previousTimeoutId) {
- globalThis.clearTimeout(previousTimeoutId);
- }
- }
- }
|