ES Lint issues

This commit is contained in:
Jaifroid 2023-07-14 13:23:39 +01:00
parent 98e7409d95
commit e96c4fc3d8
3 changed files with 91 additions and 84 deletions

View File

@ -5855,8 +5855,10 @@ params.preloadAllImages = function () {
}
}, 1000);
params.preloadingAllImages = true;
if (params.imageDisplay) params.contentInjectionMode === 'jquery'
if (params.imageDisplay) {
params.contentInjectionMode === 'jquery'
? images.prepareImagesJQuery(articleWindow, true) : images.prepareImagesServiceWorker(articleWindow, true);
}
return;
}
// All images should now be loaded, or else user did not request loading images

View File

@ -40,6 +40,9 @@
* You should have received a copy of the GNU General Public License
* along with Kiwix (file LICENSE-GPLv3.txt). If not, see <http://www.gnu.org/licenses/>
*/
/* global params, appstate, Windows, articleContainer */
'use strict';
import uiUtil from './uiUtil.js';
@ -63,7 +66,7 @@ var abandon = false;
* A regular expression to find or transform image URLs in an article
* DEV: make sure list of file types here is the same as the list in Service Worker code
*/
var imageURLRegexp = /(^|\/).+\.(jpe?g|png|svg|gif|webp)($|[?#])/i;
var imageURLRegexp = /(^|\/).+\.(jpe?g|png|svg|gif|webp)($|[?#])/i;
/**
* A regular expression to find MathTex in an image
@ -77,7 +80,7 @@ var transformMathTextRegexp = /<img\s+(?=[^>]+?math-fallback-image)[^>]*?alt\s*=
* @param {Object} images An array or collection of DOM image nodes
* @param {Function} callback An optional function to call when all requested images have been loaded
*/
function extractImages(images, callback) {
function extractImages (images, callback) {
var remaining = images.length;
if (!remaining && callback) callback();
var checkBatch = function () {
@ -147,13 +150,13 @@ function extractImages(images, callback) {
* extraction when user taps the indicated area
*
*/
function prepareManualExtraction(win) {
function prepareManualExtraction (win) {
container = win;
var doc = container.document;
var documentImages = doc.querySelectorAll('img');
for (var i = 0, l = documentImages.length; i < l; i++) {
var originalHeight = documentImages[i].getAttribute('height') || '';
//Ensure 36px clickable image height so user can request images by tapping
// Ensure 36px clickable image height so user can request images by tapping
documentImages[i].height = '36';
documentImages[i].style.background = 'lightblue';
documentImages[i].style.opacity = '1';
@ -173,7 +176,7 @@ function prepareManualExtraction(win) {
// image.style.opacity = '0';
// if (image.dataset.kiwixheight) image.height = image.dataset.kiwixheight;
// else image.removeAttribute('height');
//});
// });
thisImage.style.opacity = '0';
if (thisImage.dataset.kiwixheight) thisImage.height = thisImage.dataset.kiwixheight;
else thisImage.removeAttribute('height');
@ -196,12 +199,12 @@ var maxImageBatch = 1;
* @param {Function} callback Function to call when last image has been extracted (only called if <extract> is true)
* @returns {Object} An object with two arrays of images, visible and remaining
*/
function queueImages(docImgs, action, margin, callback) {
function queueImages (docImgs, action, margin, callback) {
if (abandon) {
for (var q = imageStore.length; q--;) {
imageStore[q].queued = false;
}
//console.log('User scrolled: abandoning image queue...')
// console.log('User scrolled: abandoning image queue...')
imageStore = [];
}
if (imageStore.length && !extractorBusy) {
@ -212,7 +215,7 @@ function queueImages(docImgs, action, margin, callback) {
var visible = [];
var remaining = [];
var batchCount = 0;
//console.log('Images requested...');
// console.log('Images requested...');
for (var i = 0, l = docImgs.length; i < l; i++) {
if (docImgs[i].queued || docImgs[i].tagName === 'IMG' && !docImgs[i].dataset.kiwixurl) continue;
if (uiUtil.isElementInView(container, docImgs[i], null, margin)) {
@ -238,7 +241,7 @@ function queueImages(docImgs, action, margin, callback) {
// have been returned before running callback code; NB if images have been scheduled for extraction, callback will be
// called above instead of here, but we still need this in case there are no immediately visible images
if (callback && !batchCount) setTimeout(callback);
return { 'visible': visible, 'remaining': remaining };
return { visible: visible, remaining: remaining };
}
/**
@ -252,12 +255,12 @@ function prepareImagesServiceWorker (win, forPrinting) {
var doc = container.document;
var documentImages = doc.querySelectorAll('img:not([src^="data:"])');
// Schedule loadMathJax here in case next line aborts this function
setTimeout(function() {
setTimeout(function () {
loadMathJax();
}, 1000);
if (!forPrinting && !documentImages.length) return;
var imageHtml;
var indexRoot = window.location.pathname.replace(/[^\/]+$/, '') + encodeURI(appstate.selectedArchive._file.name) + '/';
var indexRoot = window.location.pathname.replace(/[^/]+$/, '') + encodeURI(appstate.selectedArchive._file.name) + '/';
for (var i = 0, l = documentImages.length; i < l; i++) {
// Process Wikimedia MathML, but not if we'll be using the jQuery routine later
if (!(params.manipulateImages || params.allowHTMLExtraction)) {
@ -281,7 +284,7 @@ function prepareImagesServiceWorker (win, forPrinting) {
documentImages[i].style.opacity = '0';
}
if (params.manipulateImages || params.allowHTMLExtraction) {
documentImages[i].outerHTML = documentImages[i].outerHTML.replace(params.regexpTagsWithZimUrl, function(match, blockStart, equals, quote, relAssetUrl, blockEnd) {
documentImages[i].outerHTML = documentImages[i].outerHTML.replace(params.regexpTagsWithZimUrl, function (match, blockStart, equals, quote, relAssetUrl, blockEnd) {
var parameters = relAssetUrl.replace(/^[^?]+/, '');
var assetZIMUrlEnc;
if (params.zimType === 'zimit' && !relAssetUrl.indexOf(indexRoot)) {
@ -316,7 +319,7 @@ function prepareImagesServiceWorker (win, forPrinting) {
}, 0);
} else {
// We need to start detecting images after the hidden articleContent has been displayed (otherwise they are not detected)
setTimeout(function() {
setTimeout(function () {
lazyLoad(documentImages);
}, 400);
}
@ -334,12 +337,12 @@ function prepareImagesJQuery (win, forPrinting) {
container = win;
var doc = container.document;
var documentImages = doc.querySelectorAll('img[data-kiwixurl], video, audio');
var indexRoot = window.location.pathname.replace(/[^\/]+$/, '') + encodeURI(appstate.selectedArchive._file.name) + '/';
var indexRoot = window.location.pathname.replace(/[^/]+$/, '') + encodeURI(appstate.selectedArchive._file.name) + '/';
indexRoot = indexRoot.replace(/^\//, '');
// Zimit ZIMs work better if all images are extracted
if (params.zimType === 'zimit') forPrinting = true;
// In case there are no images in the doc, we need to schedule the loadMathJax function here
setTimeout(function() {
setTimeout(function () {
loadMathJax();
}, 1000);
if (!forPrinting && !documentImages.length) return;
@ -374,7 +377,7 @@ function prepareImagesJQuery (win, forPrinting) {
}, 0);
} else {
// We need to start detecting images after the hidden articleContent has been displayed (otherwise they are not detected)
setTimeout(function() {
setTimeout(function () {
lazyLoad(documentImages);
}, 400);
}
@ -388,7 +391,7 @@ function prepareImagesJQuery (win, forPrinting) {
* Extracts media blobs in jQuery mode and offers to download them
* @param {Node} medium A DOM node representing a medium
*/
function insertMediaBlobsJQuery(medium) {
function insertMediaBlobsJQuery (medium) {
var trackBlob;
var media = [medium];
// Ensure we have a source or sources
@ -406,9 +409,11 @@ function insertMediaBlobsJQuery(medium) {
// If the "controls" property is missing, we need to add it to ensure jQuery-only users can operate the video. See kiwix-js #760.
if (/audio|video/i.test(mediaElement.tagName) && !mediaElement.hasAttribute('controls')) mediaElement.setAttribute('controls', '');
// Create custom subtitle / cc load menu if it doesn't already exist
if (!container.document.getElementById('kiwixCCMenu')) buildCustomCCMenu(container.document, mediaElement, function (ccBlob) {
trackBlob = ccBlob;
});
if (!container.document.getElementById('kiwixCCMenu')) {
buildCustomCCMenu(container.document, mediaElement, function (ccBlob) {
trackBlob = ccBlob;
});
}
// Load media file
appstate.selectedArchive.getDirEntryByPath(decodeURIComponent(source)).then(function (dirEntry) {
return appstate.selectedArchive.readBinaryFile(dirEntry, function (fileDirEntry, mediaArray) {
@ -430,16 +435,16 @@ function insertMediaBlobsJQuery(medium) {
' <span id="alertMessage"></span>\n' +
'</div>\n';
var alertMessage = document.getElementById('alertMessage');
var filename = iframe.title + '_' + dirEntry.url.replace(/^.*\/([^\/]+)$/, '$1');
var filename = iframe.title + '_' + dirEntry.url.replace(/^.*\/([^/]+)$/, '$1');
// Make filename safe
filename = filename.replace(/[\/\\:*?"<>|]/g, '_');
filename = filename.replace(/[/\\:*?"<>|]/g, '_');
alertMessage.innerHTML = '<a href="#" class="alert-link" id="downloadMedia">Download this file</a> (and any selected subtitles) to play with another app';
document.getElementById('downloadMedia').addEventListener('click', function () {
var downloadFiles = [];
downloadFiles.push({
'blob': blob,
'filename': filename,
'src': mediaSource.src
blob: blob,
filename: filename,
src: mediaSource.src
});
// Add any selected subtitle file to the download package
var selTextTrack = iframe.getElementById('kiwixSelCC');
@ -447,9 +452,9 @@ function insertMediaBlobsJQuery(medium) {
var selTextExt = selTextTrack.dataset.kiwixurl.replace(/^.*\.([^.]+)$/, '$1');
// Subtitle files should have same name as video + .es.vtt (for example)
downloadFiles.push({
'blob': trackBlob,
'filename': filename.replace(/^(.*)\.[^.]+$/, '$1.' + selTextTrack.srclang + '.' + selTextExt),
'src': selTextTrack.src
blob: trackBlob,
filename: filename.replace(/^(.*)\.[^.]+$/, '$1.' + selTextTrack.srclang + '.' + selTextExt),
src: selTextTrack.src
});
}
for (var j = downloadFiles.length; j--;) {
@ -496,7 +501,7 @@ function insertMediaBlobsJQuery(medium) {
* @param {Element} mediaElement The media element (usually audio or video block) which contains the text tracks
* @param {Function} callback The function to call wtih the blob
*/
function buildCustomCCMenu(doc, mediaElement, callback) {
function buildCustomCCMenu (doc, mediaElement, callback) {
var optionList = [];
var langs = '';
var src = '';
@ -552,7 +557,7 @@ function buildCustomCCMenu(doc, mediaElement, callback) {
* @param {Object} documentImages An array or collection of DOM image nodes which will be processed for
* progressive image extraction
*/
function lazyLoad(documentImages) {
function lazyLoad (documentImages) {
// The amount by which to offset the second reading of the viewport
var offset = window.innerHeight * 2;
// Perform an immediate extraction of visible images so as not to disconcert the user
@ -571,12 +576,12 @@ function lazyLoad(documentImages) {
abandon = true;
clearTimeout(timeout);
var velo = container.pageYOffset - scrollPos;
timeout = setTimeout(function() {
timeout = setTimeout(function () {
// We have stopped scrolling
//console.log("Stopped scrolling; velo=" + velo);
// console.log("Stopped scrolling; velo=" + velo);
queueImages(documentImages);
abandon = false;
queueImages(documentImages, 'extract', 0, function() {
queueImages(documentImages, 'extract', 0, function () {
queueImages(documentImages, 'extract', velo >= 0 ? offset : -offset);
});
}, rate);
@ -590,7 +595,7 @@ function lazyLoad(documentImages) {
* @param {Object} win The window that contains the document to be processed
* @returns {Null} Returns null if the function was aborted
*/
function loadMathJax(win) {
function loadMathJax (win) {
if (!params.useMathJax) return;
container = container || win;
var doc = container.document;
@ -601,35 +606,35 @@ function loadMathJax(win) {
}
if (params.containsMathTexRaw || params.containsMathTex || params.containsMathSVG) {
var script1, script2, script3;
var link = doc.createElement("link");
link.rel = "stylesheet";
link.href = prefix + "js/katex/katex.min.css";
var link = doc.createElement('link');
link.rel = 'stylesheet';
link.href = prefix + 'js/katex/katex.min.css';
doc.head.appendChild(link);
script1 = doc.createElement("script");
script1.type = "text/javascript";
//script.src = "js/MathJax/MathJax.js?config=TeX-AMS_HTML-full";
script1.src = prefix + "js/katex/katex.min.js";
script1 = doc.createElement('script');
script1.type = 'text/javascript';
// script.src = "js/MathJax/MathJax.js?config=TeX-AMS_HTML-full";
script1.src = prefix + 'js/katex/katex.min.js';
if (params.containsMathTex) {
script2 = doc.createElement("script");
script2.type = "text/javascript";
script2.src = prefix + "js/katex/contrib/mathtex-script-type.min.js";
script2 = doc.createElement('script');
script2.type = 'text/javascript';
script2.src = prefix + 'js/katex/contrib/mathtex-script-type.min.js';
}
if (params.containsMathTex || params.containsMathTexRaw) {
script3 = doc.createElement("script");
script3.type = "text/javascript";
script3.src = prefix + "js/katex/contrib/auto-render.min.js";
script3.onload = function() {
script3 = doc.createElement('script');
script3.type = 'text/javascript';
script3.src = prefix + 'js/katex/contrib/auto-render.min.js';
script3.onload = function () {
container.renderMathInElement(doc.body, {
delimiters: [
{left: "$$", right: "$$", display: true},
{left: "$", right: "$", display: false},
{left: "\\(", right: "\\)", display: false},
{ left: '$$', right: '$$', display: true },
{ left: '$', right: '$', display: false },
{ left: '\\(', right: '\\)', display: false },
// {left: "\\begin{equation}", right: "\\end{equation}", display: true},
// {left: "\\begin{align}", right: "\\end{align}", display: true},
// {left: "\\begin{alignat}", right: "\\end{alignat}", display: true},
// {left: "\\begin{gather}", right: "\\end{gather}", display: true},
// {left: "\\begin{CD}", right: "\\end{CD}", display: true},
{left: "\\[", right: "\\]", display: true}
{ left: '\\[', right: '\\]', display: true }
],
globalGroup: true,
throwOnError: false
@ -643,7 +648,7 @@ function loadMathJax(win) {
doc.body.appendChild(script1);
// if (params.containsMathTex || params.containsMathTexRaw) script.innerHTML = 'MathJax.Hub.Queue(["Typeset", MathJax.Hub]); \
// console.log("Typesetting maths with MathJax");';
params.containsMathTexRaw = false; //Prevents doing a second Typeset run on the same document
params.containsMathTexRaw = false; // Prevents doing a second Typeset run on the same document
params.containsMathTex = false;
}
}

View File

@ -53,7 +53,7 @@ function feedNodeWithBlob (node, nodeAttribute, content, mimeType, makeDataURI,
content = util.dataURItoUint8Array(content);
}
// DEV: Note that webpMachine is single threaded and will reject an image if it is busy
// However, the loadImagesJQuery() function in app.js is sequential (it waits for a callback
// However, the prepareImagesJQuery() function in images.js is sequential (it waits for a callback
// before processing another image) so we do not need to queue WebP images here
webpMachine.decode(content).then(function (uri) {
// DEV: WebpMachine.decode() returns a data: URI