Difference between revisions of "MediaWiki:Timeless.js"
From Medivia Online Wiki
(Created page with "→All JavaScript here will be loaded for users of the Timeless skin: (function () { function normalizeToFileTitle(val) { if (!val) return ""; val = val.trim(); if (!val) return ""; // Allow "File:Something.png" or just "Something.png" if (!/^File:/i.test(val)) val = "File:" + val; return val; } function fileTitleToThumbUrl(fileTitle) { // MediaWiki thumb URL via Special:Redirect (works without knowing upload path) // Example: /w...") |
|||
| Line 1: | Line 1: | ||
/* All JavaScript here will be loaded for users of the Timeless skin */ | /* All JavaScript here will be loaded for users of the Timeless skin */ | ||
console.log("Timeless.js loaded") | |||
(function () { | (function () { | ||
function normalizeToFileTitle(val) { | function normalizeToFileTitle(val) { | ||
Revision as of 20:13, 17 January 2026
/* All JavaScript here will be loaded for users of the Timeless skin */
console.log("Timeless.js loaded")
(function () {
function normalizeToFileTitle(val) {
if (!val) return "";
val = val.trim();
if (!val) return "";
// Allow "File:Something.png" or just "Something.png"
if (!/^File:/i.test(val)) val = "File:" + val;
return val;
}
function fileTitleToThumbUrl(fileTitle) {
// MediaWiki thumb URL via Special:Redirect (works without knowing upload path)
// Example: /wiki/Special:Redirect/file/Some.png?width=64
var name = fileTitle.replace(/^File:/i, "");
return mw.util.getUrl("Special:Redirect/file/" + name) + "?width=64";
}
function hookPageFormsImagePreview() {
// Page Forms inputs usually end up as <input name="...">
var input =
document.querySelector('input[name="image"]') ||
document.querySelector('input[name="Item[image]"]') ||
document.querySelector('input[name$="[image]"]');
var img = document.getElementById("pf-image-preview");
var txt = document.getElementById("pf-image-preview-text");
if (!input || !img || !txt) return;
function update() {
var fileTitle = normalizeToFileTitle(input.value);
if (!fileTitle) {
img.style.display = "none";
txt.style.display = "";
txt.innerHTML = "<i>No image selected.</i>";
img.removeAttribute("src");
return;
}
var url = fileTitleToThumbUrl(fileTitle);
img.onload = function () {
img.style.display = "";
txt.style.display = "none";
};
img.onerror = function () {
img.style.display = "none";
txt.style.display = "";
txt.innerHTML = "<i>Image not found.</i>";
};
img.src = url;
}
// Update while typing + when autocomplete fills
input.addEventListener("input", update);
input.addEventListener("change", update);
// Initial
update();
}
mw.hook("wikipage.content").add(function () {
// Run on formedit pages
hookPageFormsImagePreview();
});
})();