Files
breadcrumb-the-shire/web/js/components/app-fslightbox-refresh.js

58 lines
1.5 KiB
JavaScript
Raw Normal View History

2026-02-04 23:31:53 +01:00
const refreshFsLightbox = () => {
2026-02-11 19:28:12 +01:00
if (typeof window.requestFsLightboxRefresh === 'function') {
return window.requestFsLightboxRefresh();
}
2026-02-04 23:31:53 +01:00
if (typeof window.refreshFsLightbox === 'function') {
window.refreshFsLightbox();
2026-02-11 19:28:12 +01:00
window.__fsLightboxRefreshPending = false;
2026-02-04 23:31:53 +01:00
return true;
}
2026-02-11 19:28:12 +01:00
window.__fsLightboxRefreshPending = true;
2026-02-04 23:31:53 +01:00
return false;
};
let refreshTimer = null;
const scheduleRefresh = () => {
if (refreshTimer) {return;}
2026-02-04 23:31:53 +01:00
refreshTimer = window.setTimeout(() => {
refreshTimer = null;
refreshFsLightbox();
}, 30);
};
const initObserver = () => {
if (!document.body || typeof MutationObserver === 'undefined') {
return;
}
const observer = new MutationObserver((mutations) => {
for (const mutation of mutations) {
for (const node of mutation.addedNodes) {
if (!(node instanceof HTMLElement)) {continue;}
2026-02-04 23:31:53 +01:00
if (node.matches?.('[data-fslightbox]') || node.querySelector?.('[data-fslightbox]')) {
scheduleRefresh();
return;
}
}
}
});
observer.observe(document.body, { childList: true, subtree: true });
};
if (!refreshFsLightbox()) {
scheduleRefresh();
}
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', () => {
refreshFsLightbox();
initObserver();
});
} else {
refreshFsLightbox();
initObserver();
}
2026-02-11 19:28:12 +01:00
if (window.__fsLightboxRefreshPending && typeof window.refreshFsLightbox === 'function') {
refreshFsLightbox();
}