"മീഡിയവിക്കി:Common.js" എന്ന താളിന്റെ പതിപ്പുകൾ തമ്മിലുള്ള വ്യത്യാസം
ദൃശ്യരൂപം
No edit summary |
No edit summary |
||
| വരി 6: | വരി 6: | ||
for (var i = 0; i < images.length; i++) { | for (var i = 0; i < images.length; i++) { | ||
var img = images[i]; | var img = images[i]; | ||
if (img.src && | if ( | ||
img.src.indexOf('https://tile.openstreetmap.org/v4/marker/') === 0) { | img.src && | ||
img.src.indexOf('https://tile.openstreetmap.org/v4/marker/') === 0 | |||
) { | |||
img.src = img.src.replace( | img.src = img.src.replace( | ||
'https://tile.openstreetmap.org/v4/marker/', | 'https://tile.openstreetmap.org/v4/marker/', | ||
| വരി 39: | വരി 41: | ||
sources.forEach(function (srcEl) { | sources.forEach(function (srcEl) { | ||
var filename = srcEl.dataset.file; | var filename = srcEl.dataset.file; | ||
var captionText = srcEl.dataset.caption || ''; | var captionText = srcEl.dataset.caption || ''; | ||
| വരി 61: | വരി 62: | ||
}) | }) | ||
.then(function (data) { | .then(function (data) { | ||
if (!data || !data.query || !data.query.pages) return; | if (!data || !data.query || !data.query.pages) return; | ||
var page = | var page = | ||
data.query.pages[Object.keys(data.query.pages)[0]]; | data.query.pages[Object.keys(data.query.pages)[0]]; | ||
if (!page || !page.imageinfo) return; | if (!page || !page.imageinfo) return; | ||
| വരി 96: | വരി 95: | ||
img.loading = 'lazy'; | img.loading = 'lazy'; | ||
img.style.width = '100%'; | img.style.width = '100%'; | ||
/* Lightbox data */ | /* Lightbox data (use responsive size, not original) */ | ||
img.dataset.fullsrc = | var lightboxSrc = info.url; | ||
if (info.responsiveUrls) { | |||
if (window.devicePixelRatio > 1 && info.responsiveUrls['2']) { | |||
lightboxSrc = info.responsiveUrls['2']; | |||
} else if (info.responsiveUrls['1.5']) { | |||
lightboxSrc = info.responsiveUrls['1.5']; | |||
} | |||
} | |||
img.dataset.fullsrc = lightboxSrc; | |||
img.dataset.caption = | img.dataset.caption = | ||
(captionText ? captionText + '<br>' : '') + | (captionText ? captionText + '<br>' : '') + | ||
| വരി 113: | വരി 120: | ||
figcaption.style.fontSize = '0.75em'; | figcaption.style.fontSize = '0.75em'; | ||
figcaption.style.textAlign = 'center'; | figcaption.style.textAlign = 'center'; | ||
figcaption.innerHTML = img.dataset.caption; | |||
figcaption.innerHTML = | |||
figure.appendChild(figcaption); | figure.appendChild(figcaption); | ||
| വരി 132: | വരി 132: | ||
); | ); | ||
}); | }); | ||
}); | }); | ||
/* Hide | /* Hide placeholder spans */ | ||
sources.forEach(function (el) { | sources.forEach(function (el) { | ||
el.style.display = 'none'; | el.style.display = 'none'; | ||
| വരി 141: | വരി 140: | ||
}); | }); | ||
}); | }); | ||
/* ============================================================ | /* ============================================================ | ||
| വരി 182: | വരി 180: | ||
document.addEventListener('keydown', function (e) { | document.addEventListener('keydown', function (e) { | ||
if (!overlay.classList.contains('active')) return; | if (!overlay.classList.contains('active')) return; | ||
if (e.key === 'Escape') closeLightbox(); | if (e.key === 'Escape') closeLightbox(); | ||
if (e.key === 'ArrowLeft') showPrev(); | if (e.key === 'ArrowLeft') showPrev(); | ||
| വരി 197: | വരി 194: | ||
showImage(currentIndex); | showImage(currentIndex); | ||
document.getElementById('commons-lightbox') | document.getElementById('commons-lightbox').classList.add('active'); | ||
document.body.style.overflow = 'hidden'; | document.body.style.overflow = 'hidden'; | ||
} | } | ||
| വരി 218: | വരി 214: | ||
function showPrev() { | function showPrev() { | ||
if (currentIndex > 0) | if (currentIndex > 0) showImage(currentIndex - 1); | ||
} | } | ||
| വരി 232: | വരി 226: | ||
var overlay = document.getElementById('commons-lightbox'); | var overlay = document.getElementById('commons-lightbox'); | ||
if (!overlay) return; | if (!overlay) return; | ||
overlay.classList.remove('active'); | overlay.classList.remove('active'); | ||
document.body.style.overflow = ''; | document.body.style.overflow = ''; | ||
} | } | ||
/* Event delegation | /* Event delegation (single, correct) */ | ||
document.addEventListener('click', function (e) { | document.addEventListener('click', function (e) { | ||
var img = e.target; | var img = e.target; | ||
if (img && img.matches('.commons-gallery-item img')) { | if (img && img.matches('.commons-gallery-item img')) { | ||
openLightbox(img); | openLightbox(img); | ||
} | } | ||
| വരി 260: | വരി 239: | ||
})(); | })(); | ||
06:16, 12 ജനുവരി 2026-നു നിലവിലുണ്ടായിരുന്ന രൂപം
/* ============================================================
OpenStreetMap marker URL fix
============================================================ */
mw.hook('wikipage.content').add(function () {
var images = document.querySelectorAll('img');
for (var i = 0; i < images.length; i++) {
var img = images[i];
if (
img.src &&
img.src.indexOf('https://tile.openstreetmap.org/v4/marker/') === 0
) {
img.src = img.src.replace(
'https://tile.openstreetmap.org/v4/marker/',
'https://maps.wikimedia.org/v4/marker/'
);
}
}
});
/* ============================================================
Wikimedia Commons Gallery Loader (Template-based, MULTILINE SAFE)
============================================================ */
mw.hook('wikipage.content').add(function ($content) {
$content.find('.commons-gallery').each(function () {
var container = this;
var sources = container.querySelectorAll('.commons-gallery-source');
if (!sources.length) return;
var width = 300;
var grid = document.createElement('div');
grid.className = 'commons-gallery-grid';
grid.style.display = 'grid';
grid.style.gridTemplateColumns =
'repeat(auto-fill, minmax(' + width + 'px, 1fr))';
grid.style.gap = '8px';
container.appendChild(grid);
sources.forEach(function (srcEl) {
var filename = srcEl.dataset.file;
var captionText = srcEl.dataset.caption || '';
if (!filename) return;
var apiUrl =
'https://commons.wikimedia.org/w/api.php' +
'?action=query' +
'&format=json' +
'&prop=imageinfo' +
'&iiprop=url|extmetadata' +
'&iiurlwidth=' + width +
'&titles=File:' + encodeURIComponent(filename) +
'&origin=*';
fetch(apiUrl)
.then(function (r) {
if (!r.ok) throw new Error('HTTP ' + r.status);
return r.json();
})
.then(function (data) {
if (!data || !data.query || !data.query.pages) return;
var page =
data.query.pages[Object.keys(data.query.pages)[0]];
if (!page || !page.imageinfo) return;
var info = page.imageinfo[0];
var imgUrl = info.thumburl || info.url;
var artist = 'Unknown';
var license = '';
var licenseUrl = '';
if (info.extmetadata) {
if (info.extmetadata.Artist) {
artist = info.extmetadata.Artist.value;
}
if (info.extmetadata.LicenseShortName) {
license = info.extmetadata.LicenseShortName.value;
}
if (info.extmetadata.LicenseUrl) {
licenseUrl = info.extmetadata.LicenseUrl.value;
}
}
var figure = document.createElement('figure');
figure.className = 'commons-gallery-item';
var img = document.createElement('img');
img.src = imgUrl;
img.alt = captionText || filename;
img.loading = 'lazy';
img.style.width = '100%';
/* Lightbox data (use responsive size, not original) */
var lightboxSrc = info.url;
if (info.responsiveUrls) {
if (window.devicePixelRatio > 1 && info.responsiveUrls['2']) {
lightboxSrc = info.responsiveUrls['2'];
} else if (info.responsiveUrls['1.5']) {
lightboxSrc = info.responsiveUrls['1.5'];
}
}
img.dataset.fullsrc = lightboxSrc;
img.dataset.caption =
(captionText ? captionText + '<br>' : '') +
'© ' + artist +
(licenseUrl
? ' – <a href="' + licenseUrl +
'" target="_blank">' + license + '</a>'
: '');
figure.appendChild(img);
var figcaption = document.createElement('figcaption');
figcaption.style.fontSize = '0.75em';
figcaption.style.textAlign = 'center';
figcaption.innerHTML = img.dataset.caption;
figure.appendChild(figcaption);
grid.appendChild(figure);
})
.catch(function (err) {
console.warn(
'Commons gallery image failed:',
filename,
err.message
);
});
});
/* Hide placeholder spans */
sources.forEach(function (el) {
el.style.display = 'none';
});
});
});
/* ============================================================
Commons Gallery Lightbox Viewer (with navigation)
============================================================ */
(function () {
var galleryImages = [];
var currentIndex = -1;
function collectGalleryImages() {
galleryImages = Array.prototype.slice.call(
document.querySelectorAll('.commons-gallery-item img')
);
}
function createLightbox() {
if (document.getElementById('commons-lightbox')) return;
var overlay = document.createElement('div');
overlay.id = 'commons-lightbox';
overlay.innerHTML =
'<div class="clb-backdrop"></div>' +
'<div class="clb-content">' +
'<button class="clb-prev" aria-label="Previous">‹</button>' +
'<button class="clb-next" aria-label="Next">›</button>' +
'<button class="clb-close" aria-label="Close">×</button>' +
'<img class="clb-image" alt="">' +
'<div class="clb-caption"></div>' +
'</div>';
document.body.appendChild(overlay);
overlay.querySelector('.clb-backdrop').onclick = closeLightbox;
overlay.querySelector('.clb-close').onclick = closeLightbox;
overlay.querySelector('.clb-prev').onclick = showPrev;
overlay.querySelector('.clb-next').onclick = showNext;
document.addEventListener('keydown', function (e) {
if (!overlay.classList.contains('active')) return;
if (e.key === 'Escape') closeLightbox();
if (e.key === 'ArrowLeft') showPrev();
if (e.key === 'ArrowRight') showNext();
});
}
function openLightbox(img) {
collectGalleryImages();
currentIndex = galleryImages.indexOf(img);
if (currentIndex === -1) return;
createLightbox();
showImage(currentIndex);
document.getElementById('commons-lightbox').classList.add('active');
document.body.style.overflow = 'hidden';
}
function showImage(index) {
var overlay = document.getElementById('commons-lightbox');
var lbImg = overlay.querySelector('.clb-image');
var caption = overlay.querySelector('.clb-caption');
var img = galleryImages[index];
if (!img) return;
lbImg.src = img.dataset.fullsrc || img.src;
lbImg.alt = img.alt || '';
caption.innerHTML = img.dataset.caption || '';
currentIndex = index;
}
function showPrev() {
if (currentIndex > 0) showImage(currentIndex - 1);
}
function showNext() {
if (currentIndex < galleryImages.length - 1) {
showImage(currentIndex + 1);
}
}
function closeLightbox() {
var overlay = document.getElementById('commons-lightbox');
if (!overlay) return;
overlay.classList.remove('active');
document.body.style.overflow = '';
}
/* Event delegation (single, correct) */
document.addEventListener('click', function (e) {
var img = e.target;
if (img && img.matches('.commons-gallery-item img')) {
openLightbox(img);
}
});
})();