]+>\s+This article is issued from)/i, '$1class="copyLeft" $2');
// Remove openInTab div (we can't do this using DOM methods because it aborts code spawned from onclick event)
innerDocument.body.innerHTML = innerDocument.body.innerHTML.replace(/
))+<\/div>\s*/, '');
// Add an @media print conditional stylesheet
var printOptions = innerDocument.getElementById('printOptions');
// If there is no printOptions style block in the iframe, create it
if (!printOptions) {
var printStyle = innerDocument.createElement('style');
printStyle.id = 'printOptions';
innerDocument.head.appendChild(printStyle);
printOptions = innerDocument.getElementById('printOptions');
}
var printStyleInnerHTML = '@media print { ';
printStyleInnerHTML += document.getElementById('printNavBoxCheck').checked ? '' : '.navbox, .vertical-navbox { display: none; } ';
printStyleInnerHTML += document.getElementById('printEndNoteCheck').checked ? '' : '.reflist, div[class*=references], .zimReferences, .zimSources { display: none; } ';
printStyleInnerHTML += document.getElementById('externalLinkCheck').checked ? '' : '.externalLinks, .furtherReading { display: none; } ';
printStyleInnerHTML += document.getElementById('seeAlsoLinkCheck').checked ? '' : '.seeAlso { display: none; } ';
printStyleInnerHTML += document.getElementById('printInfoboxCheck').checked ? '' : '.mw-stack, .infobox, .infobox_v2, .infobox_v3, .qbRight, .qbRightDiv, .wv-quickbar, .wikitable { display: none; } ';
// printStyleInnerHTML += document.getElementById("printImageCheck").checked ? "" : "img, .gallery { display: none; } ";
printStyleInnerHTML += '.copyLeft { display: none } ';
printStyleInnerHTML += '.map-pin { display: none } ';
printStyleInnerHTML += '.external { padding-right: 0 !important } ';
}
if (/gutenberg/i.test(appstate.selectedArchive.file.name)) {
// Remove any blocks with classnames zim_info, zim_epub and zim_up
var elementsToRemove = innerDocument.body.querySelectorAll('.zim_info, .zim_epub, .zim_up');
if (elementsToRemove) {
for (var i = 0; i < elementsToRemove.length; i++) {
elementsToRemove[i].parentNode.removeChild(elementsToRemove[i]);
}
params.printInterception = true;
}
}
// Using @media print on images doesn't get rid of them all, so use brute force
if (!document.getElementById('printImageCheck').checked) {
innerDocument.body.innerHTML = innerDocument.body.innerHTML.replace(/
![]()
]*>\s*/ig, '');
} else if (/id="breakoutLink"/.test(innerDocument.body.innerHTML)) {
// Remove any breakout link
innerDocument.body.innerHTML = innerDocument.body.innerHTML.replace(/
![]()
]+id="breakoutLink"[^>]*>\s*/, '');
}
var sliderVal = document.getElementById('documentZoomSlider').value;
sliderVal = ~~sliderVal;
sliderVal = Math.floor(sliderVal * (Math.max(window.screen.width, window.screen.height) / 1440));
if (appstate.wikimediaZimLoaded) {
printStyleInnerHTML += 'body { font-size: ' + sliderVal + '% !important; } ';
printStyleInnerHTML += '}';
printOptions.innerHTML = printStyleInnerHTML;
} else {
innerDocument.body.style.setProperty('font-size', sliderVal + '%', 'important');
}
}
function downloadBlobUWP (blob, filename, message) {
// Copy BLOB to downloads folder and launch from there in Edge
// First create an empty file in the folder
Windows.Storage.DownloadsFolder.createFileAsync(filename, Windows.Storage.CreationCollisionOption.generateUniqueName)
.then(function (file) {
// Open the returned dummy file in order to copy the data into it
file.openAsync(Windows.Storage.FileAccessMode.readWrite).then(function (output) {
// Get the InputStream stream from the blob object
var input = blob.msDetachStream();
// Copy the stream from the blob to the File stream
Windows.Storage.Streams.RandomAccessStream.copyAsync(input, output).then(function () {
output.flushAsync().done(function () {
input.close();
output.close();
// Finally, tell the system to open the file if it's not a subtitle file
if (!/\.(?:ttml|ssa|ass|srt|idx|sub|vtt)$/i.test(filename)) Windows.System.Launcher.launchFileAsync(file);
if (file.isAvailable) {
var fileLink = file.path.replace(/\\/g, '/');
fileLink = fileLink.replace(/^([^:]+:\/(?:[^/]+\/)*)(.*)/, function (p0, p1, p2) {
return 'file:///' + p1 + encodeURIComponent(p2);
});
if (message) {
message.innerHTML = '
Download: Your file was saved as
' + file.path + '';
}
// window.open(fileLink, null, "msHideView=no");
}
});
});
});
});
}
/**
* Derives the URL.pathname from a relative or semi-relative URL using the given base ZIM URL
*
* @param {String} url The (URI-encoded) URL to convert (e.g. "Einstein", "../Einstein",
* "../../I/im%C3%A1gen.png", "-/s/style.css", "/A/Einstein.html", "../static/bootstrap/css/bootstrap.min.css")
* @param {String} base The base ZIM URL of the currently loaded article (e.g. "A/", "A/subdir1/subdir2/", "C/Singapore/")
* @returns {String} The derived ZIM URL in decoded form (e.g. "A/Einstein", "I/imágen.png", "C/")
*/
function deriveZimUrlFromRelativeUrl (url, base) {
// We use a dummy domain because URL API requires a valid URI
var dummy = 'http://d/';
var deriveZimUrl = function (url, base) {
if (typeof URL === 'function') return new URL(url, base);
// IE11 lacks URL API: workaround adapted from https://stackoverflow.com/a/28183162/9727685
var d = document.implementation.createHTMLDocument('t');
// innerHTML required as string contains HTML tags
d.head.innerHTML = '
';
var a = d.createElement('a');
a.href = url;
return { pathname: a.href.replace(dummy, '') };
};
var zimUrl = deriveZimUrl(url, dummy + base);
return decodeURIComponent(zimUrl.pathname.replace(/^\//, ''));
}
/**
* Inserts a new link element into the document header
* @param {Element} doc The document to which to attach the new element
* @param {String} cssContent The content to insert as an inline stylesheet
* @param {String} id An optional id to add to the style element
*/
function insertLinkElement (doc, cssContent, id) {
var cssElement = document.createElement('style');
if (id) {
cssElement.id = id;
}
if (cssElement.styleSheet) {
cssElement.styleSheet.cssText = cssContent;
} else {
cssElement.appendChild(document.createTextNode(cssContent));
}
doc.head.appendChild(cssElement);
}
/**
* Walk up the DOM tree to find the closest element where the tagname matches the supplied regular expression
*
* @param {Element} el The starting DOM element
* @param {RegExp} rgx A regular expression to match the element's tagname
* @returns {Element|null} The matching element or null if no match was found
*/
function getClosestMatchForTagname (el, rgx) {
do {
if (rgx.test(el.tagName)) return el;
el = el.parentElement || el.parentNode;
} while (el !== null && el.nodeType === 1);
return null;
}
/**
* Displays a Bootstrap warning alert with information about how to access content in a ZIM with unsupported active UI
* @param {String} type The ZIM archive type ('open', 'zimit', or 'legacy')
*/
function displayActiveContentWarning (type) {
// We have to add the alert box in code, because Bootstrap removes it completely from the DOM when the user dismisses it
var alertHTML = '';
if (params.contentInjectionMode === 'jquery' && type === 'open') {
alertHTML = '
' +
'
×' +
'
Unable to display active content: To use
Archive Index type a
space, or for
URL Index type ' +
'
space / , or else
switch to Service Worker mode ' +
'if your platform supports it. [
Permanently hide]' +
'
';
} else if (params.contentInjectionMode === 'serviceworker' && type === 'legacy') {
alertHTML = '
' +
'
×' +
'
Legacy ZIM type! To display content correctly from this historical ZIM, ' +
'please
switch to the legacy Restricted mode. ' +
'You may need to increase font size with zoom buttons at bottom of screen. [
Permanently hide]' +
'
';
} else if (type === 'zimit') {
alertHTML =
'
' +
'
×' +
// '
' + (params.contentInjectionMode === 'jquery' ? 'Limited Zimit' : 'Experimental') + ' support: ' +
(params.contentInjectionMode === 'jquery' ? '
Limited Zimit support! Please
switch to Service Worker mode if your platform supports it.
'
: 'Legacy support for
Zimit classic archives. Audio/video and some dynamic content may fail.
') +
'Start search with
.* to match part of a title, type
space for the ZIM Archive Index, or ' +
'
space / for the URL Index. [
Permanently hide]' +
'
';
} else if (params.contentInjectionMode === 'serviceworker' && (params.manipulateImages || (params.displayHiddenBlockElements === true) || params.allowHTMLExtraction)) {
alertHTML =
'
' +
'
×' +
'
Active content may not work correctly: Please ' + (params.displayHiddenBlockElements
? '
disable Display hidden block elements '
: params.manipulateImages ? '
disable Image manipulation ' : '') +
(params.allowHTMLExtraction ? (params.displayHiddenBlockElements || params.manipulateImages ? 'and ' : '') +
'disable Breakout icon ' : '') + 'for this content to work properly. To use Archive Index type a
space ' +
'in the box above, or
space / for URL Index. [
Permanently hide]' +
'
';
} else {
// There is nothing to display
return;
}
const alertBoxHeader = document.getElementById('alertBoxHeader');
alertBoxHeader.innerHTML = alertHTML;
alertBoxHeader.style.display = 'block';
document.getElementById('activeContentClose').addEventListener('click', function () {
hideActiveContentWarning();
});
['swModeLink', 'jqModeLink', 'imModeLink', 'hbeModeLink', 'stop'].forEach(function (id) {
// Define event listeners for both hyperlinks in alert box: these take the user to the Config tab and highlight
// the options that the user needs to select
var modeLink = document.getElementById(id);
if (modeLink) {
modeLink.addEventListener('click', function () {
var elementID = id === 'stop' ? 'hideActiveContentWarningCheck'
: id === 'swModeLink' ? 'serviceworkerModeRadio'
: id === 'jqModeLink' ? 'jQueryModeRadio'
: id === 'imModeLink' ? 'manipulateImagesCheck' : 'displayHiddenBlockElementsCheck';
var thisLabel = document.getElementById(elementID).parentNode;
thisLabel.style.borderColor = 'red';
thisLabel.style.borderStyle = 'solid';
// Make sure the container is visible
var container = thisLabel.parentNode;
if (!/panel-body/.test(container.className)) {
container = container.parentNode;
}
container.style.display = 'block';
container.previousElementSibling.innerHTML = container.previousElementSibling.innerHTML.replace(/▶/, '▼');
var btnHome = document.getElementById('btnHome');
[thisLabel, btnHome].forEach(function (ele) {
// Define event listeners to cancel the highlighting both on the highlighted element and on the Home tab
ele.addEventListener('mousedown', function () {
thisLabel.style.borderColor = '';
thisLabel.style.borderStyle = '';
});
});
alertBoxHeader.style.display = 'none';
document.getElementById('btnConfigure').click();
});
}
});
}
/**
* Hides the active content warning alert box with a fade-out effect
*/
function hideActiveContentWarning () {
const alertBoxHeader = document.getElementById('alertBoxHeader');
if (alertBoxHeader.style.display === 'none') return;
alertBoxHeader.style.opacity = 0;
alertBoxHeader.style.maxHeight = 0;
setTimeout(function () {
alertBoxHeader.style.display = 'none';
alertBoxHeader.style.opacity = 1;
alertBoxHeader.style.maxHeight = '';
}, 500);
}
/**
* Displays a Bootstrap alert box at the foot of the page to enable saving the content of the given title to the device's filesystem
* and initiates download/save process if this is supported by the OS or Browser
*
* @param {String} title The path and filename to the file to be extracted
* @param {Boolean|String} download A Bolean value that will trigger download of title, or the filename that should
* be used to save the file in local FS
* @param {String} contentType The mimetype of the downloadable file, if known
* @param {Uint8Array} content The binary-format content of the downloadable file
* @param {Boolean} autoDismiss If true, dismiss the alert programmatically
*/
function displayFileDownloadAlert (title, download, contentType, content, autoDismiss) {
// We have to create the alert box in code, because Bootstrap removes it completely from the DOM when the user dismisses it
document.getElementById('alertBoxFooter').innerHTML =
'
';
// Download code adapted from https://stackoverflow.com/a/19230668/9727685
if (!contentType || /application.download/i.test(contentType)) {
// DEV: Add more contentTypes here for downloadable files
contentType =
/\.epub([?#]|$)/i.test(title) ? 'application/epub+zip'
: /\.pdf([?#]|$)/i.test(title) ? 'application/pdf'
: /\.zip([?#]|$)/i.test(title) ? 'application/zip'
: /\.png([?#]|$)/i.test(title) ? 'image/png'
: /\.jpe?g([?#]|$)/i.test(title) ? 'image/jpeg'
: /\.webp([?#]|$)/i.test(title) ? 'image/webp'
: /\.svg([?#]|$)/i.test(title) ? 'image/svg+xml'
: /\.gif([?#]|$)/i.test(title) ? 'image/gif'
: /\.tiff([?#]|$)/i.test(title) ? 'image/tiff'
: /\.mp4([?#]|$)/i.test(title) ? 'video/mp4'
: /\.(webm)([?#]|$)/i.test(title) ? 'video/webm'
: /\.mpeg([?#]|$)/i.test(title) ? 'video/mpeg'
: /\.mp3([?#]|$)/i.test(title) ? 'audio/mpeg'
// Default contentType if no match:
: 'application/octet-stream';
}
var a = document.createElement('a');
var blob = new Blob([content], { type: contentType });
// If the filename to use for saving has not been specified, construct it from title
var filename = (typeof download !== 'string') ? title.replace(/^.*\/([^\\/?#&]*).*$/, '$1') : download;
// If not match was possible from the title, give it a generic name
if (filename === title || !filename) filename = 'downloadfile';
// Make filename safe
filename = filename.replace(/[/\\:*?"<>|#&]/g, '_');
// If the file doesn't have an extension, add one for compatibility with older browsers
if (!/\.(epub|pdf|odt|zip|png|jpe?g|webp|svg|gif|tiff|mp4|webm|mpe?g|mp3)([?#]|$)/i.test(filename)) {
var extension =
/epub/i.test(contentType) ? '.epub'
: /pdf/i.test(contentType) ? '.pdf'
: /opendument/i.test(contentType) ? '.odt'
: /\/zip$/i.test(contentType) ? '.zip'
: /png/i.test(contentType) ? '.png'
: /jpeg/i.test(contentType) ? '.jpeg'
: /webp/i.test(contentType) ? '.webp'
: /svg/i.test(contentType) ? '.svg'
: /gif/i.test(contentType) ? '.gif'
: /tiff/i.test(contentType) ? '.tiff'
: /mp4/i.test(contentType) ? '.mp4'
: /webm/i.test(contentType) ? '.webm'
: /mpeg/i.test(contentType) ? '.mpeg'
: /mp3/i.test(contentType) ? '.mp3' : '';
filename = filename.replace(/^(.*?)([#?]|$)/, '$1' + extension);
}
a.href = window.URL.createObjectURL(blob);
a.target = '_blank';
a.type = contentType;
a.download = filename;
a.classList.add('alert-link');
a.innerHTML = filename;
var alertMessage = document.getElementById('alertMessage');
alertMessage.innerHTML = download !== false ? '
Download If the download does not start, please tap the following link: '
: '
Download To download the contents, please tap the following link: ';
// We have to add the anchor to a UI element for Firefox to be able to click it programmatically: see https://stackoverflow.com/a/27280611/9727685
alertMessage.appendChild(a);
var downloadAlert = document.getElementById('downloadAlert');
// For IE11 we need to force use of the saveBlob method with the onclick event
if (window.navigator && window.navigator.msSaveBlob) {
a.addEventListener('click', function (e) {
window.navigator.msSaveBlob(blob, filename);
e.preventDefault();
});
}
document.getElementById('downloaAlertClose').addEventListener('click', function () {
downloadAlert.style.display = 'none';
});
if (download !== false) {
try {
a.click();
// Following line should run only if there was no error, leaving the alert showing in case of error
if (autoDismiss && downloadAlert) downloadAlert.style.display = 'none';
return;
} catch (err) {
// Edge will error out unless there is a download added but Chrome works better without the attribute
a.download = filename;
}
try {
a.click();
// Following line should run only if there was no error, leaving the alert showing in case of error
if (autoDismiss && downloadAlert) downloadAlert.style.display = 'none';
} catch (err) {
// And try to launch through UWP download
if (typeof Windows !== 'undefined' && Windows.Storage) {
downloadBlobUWP(blob, filename, alertMessage);
if (autoDismiss && downloadAlert) downloadAlert.style.display = 'none';
} else {
// Last gasp attempt to open automatically
window.open(a.href);
}
}
}
}
/**
* Initiates XMLHttpRequest
* Can be used for loading local files; CSP may restrict access to remote files due to CORS
*
* @param {URL} url The Uniform Resource Locator to be read
* @param {String} responseType The response type to return (arraybuffer|blob|document|json|text);
* (passing an empty or null string defaults to text)
* @param {Function} callback The function to call with the result: data, mimetype, and status or error code
*/
function XHR (url, responseType, callback) {
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function (e) {
if (this.readyState === 4) {
callback(this.response, this.response.type, this.status);
}
};
var err = false;
try {
xhr.open('GET', url, true);
if (responseType) xhr.responseType = responseType;
} catch (e) {
console.log('Exception during GET request: ' + e);
err = true;
}
if (!err) {
xhr.send();
} else {
callback('Error', null, 500);
}
}
/**
* Inserts a link to break the article out to a new browser tab
*
* @param {String} mode The app mode to use for the breakoutLink icon (light|dark)
*/
function insertBreakoutLink (mode) {
var desc = 'Open article in new tab or window';
var iframe = document.getElementById('articleContent').contentDocument;
// This code provides an absolute link, removing the file and any query string from href (we need this because of SW mode)
var prefix = (window.location.protocol + '//' + window.location.host + window.location.pathname).replace(/\/[^/]*$/, '');
var div = document.createElement('div');
div.style.cssText = 'top: 10px; right: 25px; position: relative; z-index: 2; float: right;';
div.id = 'openInTab';
div.innerHTML = '
 + ')
';
iframe.body.insertBefore(div, iframe.body.firstChild);
var openInTab = iframe.getElementById('openInTab');
openInTab.addEventListener('click', function (e) {
e.preventDefault();
itemsCount = false;
params.preloadingAllImages = false;
extractHTML();
});
}
/**
* Extracts self-contained HTML from the iframe DOM, transforming BLOB references to dataURIs
*/
function extractHTML () {
if (params.preloadingAllImages !== true) {
params.preloadAllImages();
return;
}
var iframe = document.getElementById('articleContent').contentDocument;
// Store the html for the head section, to restore later (in SW mode, stylesheets will be transformed to dataURI links,
// which only work from file:/// URL, due to CORS, so they have to be restored)
var headHtml = iframe.head.innerHTML;
var title = iframe.title;
if (itemsCount === false) {
// Establish the source items that need to be extracted to self-contained URIs
// DEV: Add any further sources to the querySelector below
var items = iframe.querySelectorAll('img[src],link[href][rel="stylesheet"]');
itemsCount = items.length;
Array.prototype.slice.call(items).forEach(function (item) {
// Extract the BLOB itself from the URL (even if it's a blob: URL)
var itemUrl = item.href || item.src;
XHR(itemUrl, 'blob', function (response, mimetype, status) {
if (status === 500) {
itemsCount--;
return;
}
// Pure SVG images may be missing the mimetype
if (!mimetype) mimetype = /\.svg$/i.test(itemUrl) ? 'image/svg+xml' : '';
// Now read the data from the extracted blob
var myReader = new FileReader();
myReader.addEventListener('loadend', function () {
if (myReader.result) {
var dataURL = myReader.result.replace(/data:;/, 'data:' + mimetype + ';');
if (item.href) {
try { item.href = dataURL; } catch (err) { null; }
}
if (item.src) {
try { item.src = dataURL; } catch (err) { null; }
}
}
itemsCount--;
if (itemsCount === 0) extractHTML();
});
// Start the reading process.
myReader.readAsDataURL(response);
});
});
}
if (itemsCount > 0) return; // Ensures function stops if we are still extracting images or css
// Construct filename (forbidden characters will be removed in the download function)
var filename = title.replace(/(\.html?)*$/i, '.html');
var html = iframe.documentElement.outerHTML;
// Remove openInTab div (we can't do this using DOM methods because it aborts code spawned from onclick event)
html = html.replace(/
))+<\/div>\s*/, '');
var blob = new Blob([html], { type: 'text/html' });
// We can't use window.open() because pop-up blockers block it, so use explicit BLOB download
displayFileDownloadAlert(title, filename, 'text/html', blob, true);
// Restore original head section (to restore any transformed stylesheets)
iframe.head.innerHTML = headHtml;
itemsCount = false;
params.preloadingAllImages = false;
clearSpinner();
}
/**
* Displays a Bootstrap alert or confirm dialog box depending on the options provided
*
* @param {String} message The alert message(can be formatted using HTML) to display in the body of the modal.
* @param {String} label The modal's label or title which appears in the header (optional, Default = "Confirmation" or "Message")
* @param {Boolean} isConfirm If true, the modal will be a confirm dialog box, otherwise it will be a simple alert message
* @param {String} declineConfirmLabel The text to display on the decline confirmation button (optional, Default = "Cancel")
* @param {String} approveConfirmLabel The text to display on the approve confirmation button (optional, Default = "Confirm")
* @param {String} closeMessageLabel The text to display on the close alert message button (optional, Default = "Okay")
* @param {String} alertModal The modal to display (optional)
* @returns {Promise
} A promise which resolves to true if the user clicked Confirm, false if the user clicked Cancel/Okay, backdrop or the cross(x) button
*/
function systemAlert (message, label, isConfirm, declineConfirmLabel, approveConfirmLabel, closeMessageLabel, alertModal) {
alertModal = alertModal || 'alertModal';
var prfx = alertModal === 'myModal' ? 'my' : alertModal === 'printModal' ? 'print' : '';
declineConfirmLabel = declineConfirmLabel || 'Cancel';
approveConfirmLabel = approveConfirmLabel || 'Confirm';
closeMessageLabel = closeMessageLabel || 'Okay';
label = label || (isConfirm ? 'Confirmation' : 'Message');
return util.PromiseQueue.enqueue(function () {
return new Promise(function (resolve, reject) {
if (!message) reject(new Error('Missing body message'));
// Set the text to the modal and its buttons
document.getElementById('approveConfirm').textContent = approveConfirmLabel;
document.getElementById('declineConfirm').textContent = declineConfirmLabel;
document.getElementById('closeMessage').textContent = closeMessageLabel;
document.getElementById('modalLabel').textContent = label;
// Using innerHTML to set the message to allow HTML formatting
document.getElementById('modalText').innerHTML = message;
// Display buttons acc to the type of alert
document.getElementById('approveConfirm').style.display = isConfirm ? 'inline' : 'none';
document.getElementById('declineConfirm').style.display = isConfirm ? 'inline' : 'none';
document.getElementById('closeMessage').style.display = isConfirm ? 'none' : 'inline';
// Display the modal
const modal = document.getElementById(alertModal);
const backdrop = document.createElement('div');
backdrop.classList.add('modal-backdrop');
backdrop.style.opacity = '0.3';
document.body.appendChild(backdrop);
// Show the modal
document.body.classList.add('modal-open');
modal.classList.add('show');
modal.style.display = 'block';
backdrop.classList.add('show');
// Set the ARIA attributes for the modal
modal.setAttribute('aria-hidden', 'false');
modal.setAttribute('aria-modal', 'true');
modal.setAttribute('role', 'dialog');
// Get elements to which we will attach event listeners
var modalCloseBtn = document.getElementById(prfx + 'modalCloseBtn')
var declineConfirm = document.getElementById(prfx + 'declineConfirm');
var closeMessage = document.getElementById(prfx + 'closeMessage');
var approveConfirm = document.getElementById(prfx + 'approveConfirm');
// Hide modal handlers
var closeModalHandler = function () {
document.body.classList.remove('modal-open');
modal.classList.remove('show');
modal.style.display = 'none';
backdrop.classList.remove('show');
if (Array.from(document.body.children).indexOf(backdrop) >= 0) {
document.body.removeChild(backdrop);
}
// remove event listeners
if (modalCloseBtn) modalCloseBtn.removeEventListener('click', close);
if (declineConfirm) declineConfirm.removeEventListener('click', close);
if (closeMessage) closeMessage.removeEventListener('click', close);
if (approveConfirm) approveConfirm.removeEventListener('click', closeConfirm);
modal.removeEventListener('click', close);
document.getElementsByClassName('modal-dialog')[0].removeEventListener('click', stopOutsideModalClick);
modal.removeEventListener('keyup', keyHandler);
};
// function to call when modal is closed
var close = function (e) {
// If user clicked on the backdrop, close the modal
if (e.target.id === alertModal || /close|decline/i.test(e.target.id)) {
closeModalHandler();
resolve(false);
}
};
var closeConfirm = function () {
closeModalHandler();
resolve(true);
};
var stopOutsideModalClick = function (e) {
e.stopPropagation();
};
var keyHandler = function (e) {
if (/Enter/.test(e.key)) {
// We need to focus before clicking the button, because the handler above is based on document.activeElement
if (isConfirm) {
approveConfirm.focus();
approveConfirm.click();
} else {
closeMessage.focus();
closeMessage.click();
}
} else if (/Esc/.test(e.key)) {
modalCloseBtn.focus();
modalCloseBtn.click();
}
};
// When hide modal is called, resolve promise with true if hidden using approve button, false otherwise
if (modalCloseBtn) modalCloseBtn.addEventListener('click', close);
if (declineConfirm) declineConfirm.addEventListener('click', close);
if (closeMessage) closeMessage.addEventListener('click', close);
if (approveConfirm) approveConfirm.addEventListener('click', closeConfirm);
modal.addEventListener('click', close);
document.getElementsByClassName('modal-dialog')[0].addEventListener('click', stopOutsideModalClick);
modal.addEventListener('keyup', keyHandler);
// Set focus to the first focusable element inside the modal
modal.focus();
});
}).catch(function (err) {
console.warn(err);
});
}
/**
* Shows that an upgrade is ready to install
* @param {String} ver The version of the upgrade
* @param {String} type Either 'load', 'install', 'download' or 'progress' according to the type of upgrade
* @param {String} url An optional download URL
*/
function showUpgradeReady (ver, type, url) {
const alertBoxPersistent = document.getElementById('alertBoxPersistent');
alertBoxPersistent.innerHTML =
'\n';
var persistentMessage = document.getElementById('persistentMessage');
if (type === 'progress') {
persistentMessage.innerHTML = 'Download in progress: ' + ver + '%';
} else {
persistentMessage.innerHTML = 'Version ' + ver +
(url ? ' is available to ' + type + '! Go to ' + url + ''
: ' is ready to ' + type + '! (Re-launch app to ' + type + '.)');
document.getElementById('closeUpgradeAlert').addEventListener('click', function () {
alertBoxPersistent.style.display = 'none';
});
}
}
/**
* Checks if a server is accessible by attempting to load a test image from the server
*
* @param {String} imageSrc The full URI of the image
* @param {any} onSuccess A function to call if the image can be loaded
* @param {any} onError A function to call if the image cannot be loaded
*/
function checkServerIsAccessible (imageSrc, onSuccess, onError) {
var image = new Image();
image.onload = onSuccess;
image.onerror = onError;
image.src = imageSrc;
}
/**
* Checks whether an element is partially or fully inside the current viewport, and adds the rect.top value to element.top
*
* @param {Window} area The Window to check
* @param {Element} el The DOM element for which to check visibility
* @param {Boolean} fully If true, checks that the entire element is inside the viewport
* @param {Integer} offset An additional bottom (+) or top (-) margin to include in the search window
* @returns {Boolean} True if the element is fully or partially inside the current viewport
*/
function isElementInView (area, el, fully, offset) {
offset = offset || 0;
var rect = el.getBoundingClientRect();
el.top = rect.top;
// console.log(el.dataset.kiwixurl + ': ' + rect.top);
if (fully) { return rect.top > 0 + (offset < 0 ? offset : 0) && rect.bottom < area.innerHeight + (offset > 0 ? offset : 0) && rect.left > 0 && rect.right < area.innerWidth; } else { return rect.top < area.innerHeight + (offset > 0 ? offset : 0) && rect.bottom > 0 + (offset < 0 ? offset : 0) && rect.left < area.innerWidth && rect.right > 0; }
}
/**
* Initiates pointer touch events on the given element in order to set the zoom level
*
* @param {Element} element The element to which the pointer events should be attached
* @param {Node} container The node to which the pointer events should be applied, if different
*/
function initTouchZoom (element, container) {
container = container || element;
// Global vars to cache event state
appstate.evCache = [];
appstate.prevDiff = -1;
// Set initial element transforms
var contentWin = element.ownerDocument.defaultView || element.ownerDocument.parentWindow;
container.style.transformOrigin = 'left top'; // DEV: To support RTL languages, this should be 'right top'
appstate.windowScale = 1;
appstate.sessionScale = 1;
appstate.startVector = null;
// Install event handlers for the pointer target
element.onpointerdown = pointerdownHandler;
element.onpointermove = function (event) {
pointermoveHandler(event, container, contentWin);
};
// Use same handler for pointer{up,cancel,out,leave} events since
// the semantics for these events - in this app - are the same.
element.onpointerup = pointerupHandler;
element.onpointercancel = pointerupHandler;
element.onpointerout = pointerupHandler;
element.onpointerleave = pointerupHandler;
}
function pointerdownHandler (ev) {
// The pointerdown event signals the start of a touch interaction.
// This event is cached to support 2-finger gestures
appstate.evCache.push(ev);
// console.debug('pointerDown', ev);
}
function pointermoveHandler (ev, cont, win) {
// This function implements a 2-pointer horizontal pinch/zoom gesture.
// console.debug('pointerMove', ev);
// Find this event in the cache and update its record with this event
for (var i = 0; i < appstate.evCache.length; i++) {
if (ev.pointerId === appstate.evCache[i].pointerId) {
appstate.evCache[i] = ev;
break;
}
}
// If two pointers are down, check for pinch gestures
if (appstate.evCache.length === 2) {
ev.preventDefault();
// Calculate the distance between the two pointers
var x0 = appstate.evCache[0].clientX;
var y0 = appstate.evCache[0].clientY;
var x1 = appstate.evCache[1].clientX;
var y1 = appstate.evCache[1].clientY;
var curDiff = Math.abs(Math.sqrt(Math.pow(x1 - x0, 2) + Math.pow(y1 - y0, 2)));
// console.debug('Current difference: ' + curDiff);
if (appstate.prevDiff > 0) {
if (appstate.startVector === null) {
appstate.startVector = curDiff;
appstate.scrollXStart = win.scrollX / appstate.windowScale;
appstate.scrollYStart = win.scrollY / appstate.windowScale;
// console.debug('scrollXStart: ' + appstate.scrollXStart);
}
appstate.windowScale = appstate.sessionScale * curDiff / appstate.startVector;
// console.debug('winScrollY: ' + win.scrollY);
// console.debug('winScrollX: ' + win.scrollX);
// console.debug('x0x1 mean: ' + (x0 + x1)/2);
// console.debug('y0y1 mean: ' + (y0 + y1)/2);
cont.style.transform = 'scale(' + appstate.windowScale + ')';
win.scrollTo(appstate.scrollXStart * appstate.windowScale, appstate.scrollYStart * appstate.windowScale);
}
// Cache the distance for the next move event
appstate.prevDiff = curDiff;
}
}
function pointerupHandler (ev) {
// console.debug(ev.type, ev);
// Remove this pointer from the cache
removeEvent(ev);
// If the number of pointers down is less than two then reset diff tracker
if (appstate.evCache.length < 2) {
appstate.prevDiff = -1;
}
}
function removeEvent (ev) {
// Remove this event from the target's cache
for (var i = 0; i < appstate.evCache.length; i++) {
if (appstate.evCache[i].pointerId === ev.pointerId) {
appstate.evCache.splice(i, 1);
break;
}
}
appstate.startVector = null;
appstate.sessionScale = appstate.windowScale;
}
// Reports an error in loading one of the ASM or WASM machines to the UI API Status Panel
// This can't be done in app.js because the error occurs after the API panel is first displayed
function reportAssemblerErrorToAPIStatusPanel (decoderType, error, assemblerMachineType) {
console.error('Could not instantiate any ' + decoderType + ' decoder!', error);
params.decompressorAPI.assemblerMachineType = assemblerMachineType;
params.decompressorAPI.errorStatus = 'Error loading ' + decoderType + ' decompressor!';
var decompAPI = document.getElementById('decompressorAPIStatus');
decompAPI.textContent = 'Decompressor API: ' + params.decompressorAPI.errorStatus;
decompAPI.className = 'apiBroken';
document.getElementById('apiStatusDiv').className = 'panel panel-danger';
}
// Reports the search provider to the API Status Panel
function reportSearchProviderToAPIStatusPanel (provider) {
var providerAPI = document.getElementById('searchProviderStatus');
if (providerAPI) { // NB we need this so that tests don't fail
providerAPI.textContent = 'Search Provider: ' + (/^fulltext/.test(provider) ? 'Title + Xapian [' + provider + ']'
: /^title/.test(provider) ? 'Title only [' + provider + ']' : 'Not initialized');
providerAPI.className = /^fulltext/.test(provider) ? 'apiAvailable' : !/ERROR/.test(provider) ? 'apiUnavailable' : 'apiBroken';
}
}
/**
* Warn the user that they clicked on an external link, and open it in a new tab
*
* @param {Event} event The click event (on an anchor) to handle (optional, but if not provided, clickedAnchor must be provided)
* @param {Element} clickedAnchor The DOM anchor that has been clicked (optional, defaults to event.target)
* @param {String} message The message to display to the user (optional, defaults to a generic message)
*/
function warnAndOpenExternalLinkInNewTab (event, clickedAnchor, message) {
if (event) {
// We have to prevent any blank target from firing on the original event
event.target.removeAttribute('target');
event.preventDefault();
event.stopPropagation();
}
if (!clickedAnchor) clickedAnchor = event.target;
if (articleContainer.contentWindow && clickedAnchor.origin === articleContainer.contentWindow.location.origin) {
clickedAnchor.href = clickedAnchor.href.replace(clickedAnchor.origin, appstate.selectedArchive.source.replace(/\/$/, ''));
}
var href = clickedAnchor.protocol ? clickedAnchor.href : 'http://' + clickedAnchor.href;
clickedAnchor.type = clickedAnchor.type || (/https:\/\/www.openstreetmap.*?mlat/.test(href) ? 'map' : 'link');
message = message || 'Click the link to open this external ' + clickedAnchor.type + ' (in a new ' + params.windowOpener + ')';
var anchor = '' + clickedAnchor.href + '';
message += ':
' + anchor + '
You may change whether links open in a window or a new browser tab in Configuration.
';
var opener = function (ev) {
try {
window.open(href, params.windowOpener === 'tab' ? '_blank' : (ev ? ev.target.title : 'Download'),
params.windowOpener === 'window' ? 'toolbar=0,location=0,menubar=0,width=800,height=600,resizable=1,scrollbars=1' : null);
if (ev) ev.preventDefault();
} catch (e) {
if (!ev) systemAlert('We could not open this link programmatically! Please turn on "Warn before opening external links" in Configuration (under "Control of browsing data") and try again.');
else ev.target.target = '_blank';
}
};
if (params.openExternalLinksInNewTabs) {
systemAlert(message, 'Opening external ' + clickedAnchor.type, false, null, null, 'Close');
// Close dialog box if user clicks the link
document.getElementById('kiwixExternalLink').addEventListener('click', function (e) {
opener(e);
document.getElementById('closeMessage').click();
});
} else {
opener();
}
}
/**
* Set up toggles to make Configuration headings collapsible
*/
function setupConfigurationToggles () {
var configHeadings = document.querySelectorAll('.panel-heading');
Array.prototype.slice.call(configHeadings).forEach(function (panelHeading) {
var headingText = panelHeading.innerHTML;
var panelBody = panelHeading.nextElementSibling;
var panelParent = panelHeading.parentElement;
var panelPrevious = panelParent ? panelParent.previousElementSibling : null;
if (panelPrevious && !/panel\s/.test(panelPrevious.className)) panelPrevious = null;
var panelPreviousHeading = panelPrevious ? panelPrevious.querySelector('.panel-heading') : null;
var panelNext = panelParent ? panelParent.nextElementSibling : null;
if (panelNext && !/panel\s/.test(panelNext.className)) panelPrevious = null;
var panelNextHeading = panelNext ? panelNext.querySelector('.panel-heading') : null;
panelHeading.addEventListener('click', function () {
if (/▶/.test(panelHeading.innerHTML)) {
panelHeading.innerHTML = panelHeading.innerHTML.replace(/([▼▶]\s)?/, '▼ ');
panelBody.style.display = 'block';
// We're opening, so separate from previous and next
if (panelPrevious) panelPrevious.style.marginBottom = null;
if (panelParent) panelParent.style.marginBottom = panelNext ? null : 0;
// Close all other panels
Array.prototype.slice.call(configHeadings).forEach(function (head) {
var text = head.innerHTML;
if (/▶/.test(text)) return;
// Don't close panel for certain cases
if (panelHeading === head || /API\sStatus/.test(text + headingText) ||
!params.appCache && /Troubleshooting/.test(text)) return;
head.click();
});
} else {
panelHeading.innerHTML = panelHeading.innerHTML.replace(/([▼▶]\s)?/, '▶ ');
panelBody.style.display = 'none';
if (panelPrevious) panelPrevious.style.marginBottom = panelPreviousHeading && /▼/.test(panelPreviousHeading.innerHTML) ? null : 0;
if (panelNext) panelParent.style.marginBottom = panelNextHeading && /▼/.test(panelNextHeading.innerHTML) ? null : 0;
}
});
// Close each heading to begin with, except the first and specials
var exceptionTest = function (testStr) {
return /Display\ssize|API\sStatus/i.test(testStr) || /Troubleshooting/i.test(testStr) && !params.appCache;
}
if (panelNext) panelNextHeading.innerHTML = (exceptionTest(panelNextHeading.innerHTML) ? '▼ ' : '▶ ') + panelNextHeading.innerHTML;
var icon = exceptionTest(headingText) ? '▼ ' : '▶ ';
panelHeading.innerHTML = panelHeading.innerHTML.replace(/([▼▶]\s)?/, icon);
if (panelBody && !exceptionTest(headingText)) panelBody.style.display = 'none';
var marginBottom = 0;
marginBottom = /▼/.test(panelHeading.innerHTML) ? null : marginBottom;
if (panelNext) panelParent.style.marginBottom = /▼/.test(panelNextHeading.innerHTML) ? null : marginBottom;
else panelParent.style.marginBottom = 0;
});
// Programme the button to toggle all settings
document.getElementById('btnToggleSettings').addEventListener('mousedown', function (e) {
e.preventDefault();
var open = /Open/.test(e.target.innerHTML);
Array.prototype.slice.call(configHeadings).forEach(function (panelHeading) {
if (!open && /API\sStatus/.test(panelHeading.innerHTML)) return;
if (!open && /▼\sTroubleshooting/.test(panelHeading.innerHTML)) {
panelHeading.click();
return;
}
var panelBody = panelHeading.nextElementSibling;
panelHeading.innerHTML = open ? panelHeading.innerHTML.replace(/▶/, '▼') : panelHeading.innerHTML.replace(/▼/, '▶');
panelBody.style.display = open ? 'block' : 'none';
var panelParent = panelHeading.parentElement;
if (panelParent) panelParent.style.marginBottom = open ? null : 0;
});
if (open) e.target.innerHTML = e.target.innerHTML.replace(/▶\sOpen/, '▼ Close');
else e.target.innerHTML = e.target.innerHTML.replace(/▼\sClose/, '▶ Open');
});
}
/**
* A function to test whether the app is in full-screen mode
* @returns {Boolean} True if the app is in full-screen mode, false otherwise
*/
function appIsFullScreen () {
return !!(document.fullscreenElement || document.mozFullScreenElement || document.webkitFullscreenElement || document.msFullscreenElement);
}
/**
* Puts the requested element into full-screen mode, or cancels full-screen mode if no element is provided
* @param {Element} el The element to put into full-screen mode. If not provided, the function will cancel any full-screen mode
* @returns {Promise} A Promise that resolves to true if the element entered full-screen mode, false if full-screen mode cancelled
*/
function requestOrCancelFullScreen (el) {
// Don't do anything if already in full-screen mode, and user has not requested to exit full-screen mode
if (el && appIsFullScreen()) {
console.debug('Display is already full screen');
return Promise.resolve(true);
}
// Choose the correct method to request or cancel full-screen mode
var rq = function (sel) {
var fn = sel
// Request full-screen mode
? sel.requestFullscreen ? sel.requestFullscreen()
: sel.webkitRequestFullscreen ? sel.webkitRequestFullscreen()
: sel.mozRequestFullScreen ? sel.mozRequestFullScreen()
: sel.msRequestFullscreen ? sel.msRequestFullscreen() : Promise.reject(new Error('No full-screen mode API available'))
// Cancel full-screen mode
: document.exitFullscreen ? document.exitFullscreen()
: document.webkitExitFullscreen ? document.webkitExitFullscreen()
: document.mozCancelFullScreen ? document.mozCancelFullScreen()
: document.msExitFullscreen ? document.msExitFullscreen() : Promise.reject(new Error('No full-screen mode API available'));
return Promise.resolve(fn);
};
return rq(el).then(function () {
console.log(el ? 'Full-screen mode enabled' : 'Full-screen mode disabled');
return !!el;
}).catch(function (err) {
console.log('Error enabling full-screen mode', err);
throw err;
});
}
/**
* Attempts to put the app into full-screen mode and (if requested) lock the display orientation using the Screen Orientation Lock API
* @param {string} val A valid value in the API, e.g. '', 'natural', 'portrait', 'landscape'
* @returns {Promise} A Promise that resolves to a string informing the result (which may be '')
*/
function lockDisplayOrientation (val) {
if (val) {
// Request setting the app to full-screen mode
return requestOrCancelFullScreen(document.documentElement).then(function () {
// If the app is now in full-screen mode, lock the display orientation);
if (val !== 'fullscreen') {
if (screen && screen.orientation && screen.orientation.lock) {
if (val) {
return screen.orientation.lock(val).then(function () {
console.log('Display orientation locked to ' + val);
}).catch(function (error) {
console.warn('Error locking display orientation (but in some contexts, it may have worked anyway)', error);
throw error;
});
} else {
screen.orientation.unlock(); // NB This doesn't return a Promise
// return Promise.resolve();
}
} else {
console.warn('The screen.orientation.lock API is not supported on this device!');
var rtn = val ? 'unsupported' : '';
return rtn;
// return Promise.resolve(rtn);
}
} else {
if (!document.documentElement.requestFullscreen && (document.documentElement.webkitRequestFullscreen || document.documentElement.msRequestFullscreen)) {
// We are in a Safari browser or IE11, and a click is required to enter full-screen mode
return 'click';
}
}
}).catch(function (error) {
throw error;
});
} else {
// User wants to cancel full-screen mode and unlock the display orientation
if (screen && screen.orientation && screen.orientation.unlock) {
screen.orientation.unlock(); // NB This doesn't return a Promise
}
return requestOrCancelFullScreen();
}
}
/**
* Parses a linked article in a loaded document in order to extract the first main paragraph (the 'lede') and first
* main image (if any). This function currently only parses Wikimedia articles. It returns an HTML string, formatted
* for display in a popover
*
* @param {String} href The href of the article link from which to extract the lede
* @param {String} baseUrl The base URL of the currently loaded article
* @param {Document} articleDocument The DOM of the currently loaded article
* @returns {Promise} A Promise for the linked article's lede HTML including first main image URL if any
*/
function getArticleLede (href, baseUrl, articleDocument) {
var uriComponent = removeUrlParameters(href);
var zimURL = deriveZimUrlFromRelativeUrl(uriComponent, baseUrl);
console.debug('Previewing ' + zimURL);
return appstate.selectedArchive.getDirEntryByPath(zimURL).then(function (dirEntry) {
var readArticle = function (dirEntry) {
return new Promise((resolve, reject) => {
appstate.selectedArchive.readUtf8File(dirEntry, function (fileDirEntry, htmlArticle) {
const parser = new DOMParser();
const doc = parser.parseFromString(htmlArticle, 'text/html');
// const articleBody = doc.getElementById('mw-content-text');
const articleBody = doc.body;
if (articleBody) {
let balloonString = '';
// Remove all standalone style elements, because their content is shown by both innerText and textContent
const styleElements = Array.from(articleBody.querySelectorAll('style'));
styleElements.forEach(style => {
style.parentNode.removeChild(style);
});
const paragraphs = Array.from(articleBody.querySelectorAll('p'));
// Filter out empty paragraphs or those with less than 50 characters
const nonEmptyParagraphs = paragraphs.filter(para => {
const text = para.innerText.trim();
return !/^\s*$/.test(text) && text.length >= 50;
});
if (nonEmptyParagraphs.length > 0) {
var cumulativeCharCount = 0;
// Add enough paras to complete the word count
for (let i = 0; i < nonEmptyParagraphs.length; i++) {
// Get the character count: to fill the larger box we need ~850 characters (815 plus leeway)
var plainText = nonEmptyParagraphs[i].innerText;
cumulativeCharCount += plainText.length;
// In Restricted mode, we risk breaking the UI if user clicks on an embedded link, so only use innerText
var content = params.contentInjectionMode === 'jquery' ? plainText
: nonEmptyParagraphs[i].innerHTML;
balloonString += '' + content + '
';
// console.debug('Cumulatve character count: ' + cumulativeCharCount);
if (cumulativeCharCount >= 850) break;
}
}
const images = articleBody.querySelectorAll('img');
let firstImage = null;
if (images && params.contentInjectionMode === 'serviceworker') {
// Iterate over images until we find one with a width greater than 50 pixels
// (this filters out small icons)
const imageArray = Array.from(images);
for (let j = 0; j < imageArray.length; j++) {
if (imageArray[j] && imageArray[j].width > 50) {
firstImage = imageArray[j];
break;
}
}
}
if (firstImage) {
// Calculate absolute URL of image
var balloonBaseURL = encodeURI(fileDirEntry.namespace + '/' + fileDirEntry.url.replace(/[^/]+$/, ''));
var imageZimURL = encodeURI(deriveZimUrlFromRelativeUrl(firstImage.getAttribute('src'), balloonBaseURL));
var absolutePath = articleDocument.location.href.replace(/([^.]\.zim\w?\w?\/).+$/i, '$1');
firstImage.src = absolutePath + imageZimURL;
balloonString = firstImage.outerHTML + balloonString;
}
// console.debug(balloonString);
if (!balloonString) {
reject(new Error('No article lede or image'));
} else {
resolve(balloonString);
}
} else {
reject(new Error('No article body found'));
}
});
});
}
if (dirEntry.redirect) {
return new Promise((resolve, reject) => {
appstate.selectedArchive.resolveRedirect(dirEntry, function (reDirEntry) {
resolve(readArticle(reDirEntry));
});
}).catch(error => {
return Promise.reject(error);
});
} else {
return Promise.resolve(readArticle(dirEntry));
}
});
}
/**
* A function to attach the tooltip CSS for popovers (NB this does not attach the box itself, only the CSS)
* @param {Document} doc The document to which to attach the blloon.css styelesheet
* @param {Boolean} dark An optional parameter to adjust the background colour for dark themes
*/
function attachKiwixPopoverCss (doc, dark) {
const colour = dark ? '#darkgray' : '#black';
const backgroundColour = dark ? '#111' : '#ebf4fb';
insertLinkElement(doc, `
.kiwixtooltip {
position: absolute;
bottom: 1em;
/* prettify */
padding: 0 5px 5px;
color: ${colour};
background: ${backgroundColour};
border: 0.1em solid #b7ddf2;
/* round the corners */
border-radius: 0.5em;
/* handle overflow */
overflow: visible;
text-overflow: ellipsis;
/* handle text wrap */
overflow-wrap: break-word;
word-wrap: break-word;
/* add fade-in transition */
opacity: 0;
transition: opacity 0.3s;
}
.kiwixtooltip img {
float: right;
margin-left: 5px;
max-width: 40%;
height: auto;
}
#popcloseicon {
padding-top: 1px;
padding-right: 2px;
font-size: 20px;
font-family: sans-serif;
}
#popcloseicon:hover {
cursor: pointer;
}
#popbreakouticon {
height: 18px;
margin-right: 18px;
}
#popbreakouticon:hover {
cursor: pointer;
}`,
// The id of the style element for easy manipulation
'kiwixtooltipstylesheet'
);
}
/**
* Attaches a popover div for the given link to the given document's DOM
* @param {Event} ev The event which has fired this popover action
* @param {Element} link The link element that is being actioned
* @param {String} articleBaseUrl The base URL of the currently loaded document
* @param {Boolean} dark An optional value to switch colour theme to dark if true
*/
function attachKiwixPopoverDiv (ev, link, articleBaseUrl, dark) {
// Do not show popover if the user has initiated an article load
if (link.articleloading || link.popoverisloading) {
// console.debug('Cancelled display of popover because user is loading the underlying article');
return;
}
link.popoverisloading = true;
// Do not disply a popover if one is already showing for the current link
var kiwixPopover = ev.target.ownerDocument.querySelector('.kiwixtooltip');
var linkHref = link.getAttribute('href');
if (kiwixPopover && kiwixPopover.dataset.href === linkHref) return;
// console.debug('Attaching popover...');
var currentDocument = ev.target.ownerDocument;
var articleWindow = currentDocument.defaultView;
removeKiwixPopoverDivs(currentDocument);
setTimeout(function () {
// Check if the link is still being hovered over, and abort display of popover if not
if (!linkHref || !link.matches(':hover') && currentDocument.activeElement !== link) return;
var div = document.createElement('div');
div.popoverisloading = true; // console.debug('div.popoverisloading', div.popoverisloading);
var screenWidth = articleWindow.innerWidth - 40;
var screenHeight = document.documentElement.clientHeight;
var margin = 40;
var divWidth = 512;
if (screenWidth <= divWidth) {
divWidth = screenWidth;
margin = 10;
}
// Check if we have restricted screen height
var divHeight = screenHeight < 512 ? 160 : 256;
div.style.width = divWidth + 'px';
div.style.height = divHeight + 'px';
div.style.display = 'flex';
div.style.justifyContent = 'center';
div.style.alignItems = 'center';
div.className = 'kiwixtooltip';
div.innerHTML = 'Loading ...
';
div.dataset.href = linkHref;
currentDocument.body.appendChild(div);
// Calculate the position of the link that is being hovered
var linkRect = link.getBoundingClientRect();
// Initially position the div 20px above the link
var triangleDirection = 'top';
var divRectY = (linkRect.top - div.offsetHeight - 20);
var triangleY = divHeight + 6;
// If we're less than half margin from the top, move the div below the link
if (divRectY < margin / 2) {
triangleDirection = 'bottom';
divRectY = linkRect.bottom + 20;
triangleY = -16;
}
// Position it horizontally in relation to the pointer position
var divRectX, triangleX;
if (ev.type === 'touchstart') {
divRectX = ev.touches[0].clientX - divWidth / 2;
triangleX = ev.touches[0].clientX - divRectX - 20;
} else if (ev.type === 'focus') {
divRectX = linkRect.left + linkRect.width / 2 - divWidth / 2;
triangleX = linkRect.left + linkRect.width / 2 - divRectX - 20;
} else {
divRectX = ev.clientX - divWidth / 2;
triangleX = ev.clientX - divRectX - 20;
}
// If right edge of div is greater than margin from the right side of window, shift it to margin
if (divRectX + divWidth * params.relativeFontSize / 100 > screenWidth - margin) {
triangleX += divRectX;
divRectX = screenWidth - divWidth * params.relativeFontSize / 100 - margin;
triangleX -= divRectX;
}
// If we're less than margin to the left, shift it to margin px from left
if (divRectX * params.relativeFontSize / 100 < margin) {
triangleX += divRectX;
divRectX = margin;
triangleX -= divRectX;
}
// Adjust triangleX if necessary
if (triangleX < 10) triangleX = 10;
if (triangleX > divWidth - 10) triangleX = divWidth - 10;
// Adjust positions to take into account the font zoom factor
divRectX = divRectX * 100 / params.relativeFontSize;
triangleX = triangleX * 100 / params.relativeFontSize;
var adjustedScrollY = articleWindow.scrollY * 100 / params.relativeFontSize;
// Now set the calculated x and y positions, taking into account the zoom factor
div.style.top = divRectY + adjustedScrollY + 'px';
div.style.left = divRectX + 'px';
div.style.opacity = '1';
getArticleLede(linkHref, articleBaseUrl, currentDocument).then(function (html) {
link.articleloading = false;
div.style.justifyContent = '';
div.style.alignItems = '';
div.style.display = 'block';
var breakoutIconFile = window.location.pathname.replace(/\/[^/]*$/, '') + (dark ? '/img/icons/new_window_white.svg' : '/img/icons/new_window_black.svg');
var backgroundColour = dark ? '#222' : '#ebf4fb';
div.innerHTML = `
X
${html}
`;
// Now insert the arrow
var tooltipStyle = articleWindow.document.getElementById('kiwixtooltipstylesheet');
var triangleColour = '#b7ddf2'; // Same as border colour of div
if (tooltipStyle) {
var span = document.createElement('span');
span.style.cssText = `
width: 0;
height: 0;
border-${triangleDirection}: 16px solid ${triangleColour};
border-left: 8px solid transparent !important;
border-right: 8px solid transparent !important;
position: absolute;
top: ${triangleY}px;
left: ${triangleX}px;
`;
div.appendChild(span);
}
// Programme the icons
addEventListenersToPopoverIcons(link, div, currentDocument);
setTimeout(function () {
div.popoverisloading = false; // console.debug('div.popoverisloading', div.popoverisloading);
}, 1000);
}).catch(function (err) {
console.warn(err);
// Remove the div
div.style.opacity = '0';
div.parentElement.removeChild(div);
link.articleloading = false;
link.dataset.touchevoked = false;
link.popoverisloading = false;
});
}, 500);
}
/**
* Adds event listeners to the popover's control icons
*
* @param {Element} anchor The anchor which launched the popover
* @param {Element} popover The containing element of the popover (div)
* @param {Document} doc The doucment on which to operate
*/
function addEventListenersToPopoverIcons (anchor, popover, doc) {
var breakout = function (e) {
e.preventDefault();
e.stopPropagation();
anchor.newcontainer = true;
anchor.click();
closePopover(popover);
}
var closeIcon = doc.getElementById('popcloseicon');
var breakoutIcon = doc.getElementById('popbreakouticon');
// Register click event for full support
closeIcon.addEventListener('mousedown', function () {
closePopover(popover);
}, true);
breakoutIcon.addEventListener('mousedown', breakout, true);
// Register either pointerdown or touchstart if supported
var eventName = window.PointerEvent ? 'pointerdown' : 'touchstart';
closeIcon.addEventListener(eventName, function (e) {
e.preventDefault();
e.stopPropagation();
closePopover(popover);
}, true);
breakoutIcon.addEventListener(eventName, breakout, true);
}
/**
* Remove any preview popover DIVs
*
* @param {Document} doc The document from which to remove any popovers
*/
function removeKiwixPopoverDivs (doc) {
var divs = doc.getElementsByClassName('kiwixtooltip');
setTimeout(function () {
Array.prototype.slice.call(divs).forEach(function (div) {
if (div.popoverisloading) return;
var timeoutID;
var fadeOutDiv = function () {
clearTimeout(timeoutID);
if (!div.matches(':hover')) {
closePopover(div);
} else {
timeoutID = setTimeout(fadeOutDiv, 250);
}
};
timeoutID = setTimeout(fadeOutDiv, 250);
});
}, 300);
}
// Directly close any popovers
function closePopover (div) {
div.style.opacity = '0';
setTimeout(function () {
if (div && div.parentElement) {
div.parentElement.removeChild(div);
}
}, 200);
};
/**
* Finds the closest or enclosing tag of an element.
* Returns undefined if there isn't any.
*
* @param {Element} element The element to test
* @returns {Element} closest enclosing anchor tag (if any)
*/
function closestAnchorEnclosingElement (element) {
if (Element.prototype.closest) {
// Recent browsers support that natively. See https://developer.mozilla.org/en-US/docs/Web/API/Element/closest
return element.closest('a,area');
} else {
// For other browsers, notably IE, we do that by hand (we did not manage to make polyfills work on IE11)
var currentElement = element;
while (currentElement.tagName !== 'A' && currentElement.tagName !== 'AREA') {
// If there is no parent Element, we did not find any enclosing A tag
if (!currentElement.parentElement) {
return;
} else {
// Else we try the next parent Element
currentElement = currentElement.parentElement;
}
}
// If we reach this line, it means the currentElement is the enclosing Anchor we're looking for
return currentElement;
}
}
/**
* Functions and classes exposed by this module
*/
export default {
hideSlidingUIElements: hideSlidingUIElements,
showSlidingUIElements: showSlidingUIElements,
scroller: scroller,
systemAlert: systemAlert,
showUpgradeReady: showUpgradeReady,
feedNodeWithBlob: feedNodeWithBlob,
getDataUriFromUint8Array: getDataUriFromUint8Array,
deriveZimUrlFromRelativeUrl: deriveZimUrlFromRelativeUrl,
insertLinkElement: insertLinkElement,
getClosestMatchForTagname: getClosestMatchForTagname,
removeUrlParameters: removeUrlParameters,
ToC: TableOfContents,
isElementInView: isElementInView,
makeReturnLink: makeReturnLink,
pollOpsPanel: pollOpsPanel,
pollSpinner: pollSpinner,
clearSpinner: clearSpinner,
XHR: XHR,
printCustomElements: printCustomElements,
downloadBlobUWP: downloadBlobUWP,
displayActiveContentWarning: displayActiveContentWarning,
hideActiveContentWarning: hideActiveContentWarning,
displayFileDownloadAlert: displayFileDownloadAlert,
insertBreakoutLink: insertBreakoutLink,
extractHTML: extractHTML,
checkServerIsAccessible: checkServerIsAccessible,
initTouchZoom: initTouchZoom,
appIsFullScreen: appIsFullScreen,
lockDisplayOrientation: lockDisplayOrientation,
attachKiwixPopoverCss: attachKiwixPopoverCss,
attachKiwixPopoverDiv: attachKiwixPopoverDiv,
removeKiwixPopoverDivs: removeKiwixPopoverDivs,
reportAssemblerErrorToAPIStatusPanel: reportAssemblerErrorToAPIStatusPanel,
reportSearchProviderToAPIStatusPanel: reportSearchProviderToAPIStatusPanel,
warnAndOpenExternalLinkInNewTab: warnAndOpenExternalLinkInNewTab,
setupConfigurationToggles: setupConfigurationToggles,
closestAnchorEnclosingElement: closestAnchorEnclosingElement
};