CSS: - Remove duplicate li::before block in app-search.css - Fix typo: search-reuslt → search-result in app-search.css - Remove commented-out CSS rules in app-flash.css - Add descriptive header comment to all 27 CSS component files JS: - Complete WAI-ARIA Tabs pattern: generate IDs, add aria-controls on tab buttons and aria-labelledby on tab panels (app-tabs.js) - Add JSDoc header comments to ~33 JS files (core + components) - Add explanatory block comment to app-boot.js (why classic IIFE) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
61 lines
1.5 KiB
JavaScript
61 lines
1.5 KiB
JavaScript
/**
|
|
* Triggers FSLightbox refresh after dynamic content changes.
|
|
*/
|
|
const refreshFsLightbox = () => {
|
|
if (typeof window.requestFsLightboxRefresh === 'function') {
|
|
return window.requestFsLightboxRefresh();
|
|
}
|
|
if (typeof window.refreshFsLightbox === 'function') {
|
|
window.refreshFsLightbox();
|
|
window.__fsLightboxRefreshPending = false;
|
|
return true;
|
|
}
|
|
window.__fsLightboxRefreshPending = true;
|
|
return false;
|
|
};
|
|
|
|
let refreshTimer = null;
|
|
const scheduleRefresh = () => {
|
|
if (refreshTimer) {return;}
|
|
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;}
|
|
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();
|
|
}
|
|
|
|
if (window.__fsLightboxRefreshPending && typeof window.refreshFsLightbox === 'function') {
|
|
refreshFsLightbox();
|
|
}
|