46 lines
1.3 KiB
JavaScript
46 lines
1.3 KiB
JavaScript
const CSS_LOADED_EVENT = 'CSSLoaded';
|
|
const STARTUP_LINK_LOADED_EVENT = 'CSSStartupLinkLoaded';
|
|
|
|
const getAllStartupLinks = (() => {
|
|
let links = null;
|
|
return () => {
|
|
if (!links) {
|
|
links = Array.from(document.querySelectorAll('link[data-startupcss]'));
|
|
}
|
|
return links;
|
|
};
|
|
})();
|
|
const isStartupLinkLoaded = ({ dataset }) => dataset.startupcss === 'loaded';
|
|
const allLinksLoaded = () => getAllStartupLinks().every(isStartupLinkLoaded);
|
|
|
|
const handleStartupEvents = () => {
|
|
if (allLinksLoaded()) {
|
|
document.dispatchEvent(new CustomEvent(CSS_LOADED_EVENT));
|
|
document.removeEventListener(STARTUP_LINK_LOADED_EVENT, handleStartupEvents);
|
|
}
|
|
};
|
|
|
|
/* Wait for.... The methods can be used:
|
|
- with a callback (preferred),
|
|
waitFor(action)
|
|
|
|
- with then (discouraged),
|
|
await waitFor().then(action);
|
|
|
|
- with await,
|
|
await waitFor;
|
|
action();
|
|
-*/
|
|
export const waitForCSSLoaded = (action = () => {}) => {
|
|
if (!gon.features.startupCss || allLinksLoaded()) {
|
|
return new Promise(resolve => {
|
|
action();
|
|
resolve();
|
|
});
|
|
}
|
|
|
|
return new Promise(resolve => {
|
|
document.addEventListener(CSS_LOADED_EVENT, resolve, { once: true });
|
|
document.addEventListener(STARTUP_LINK_LOADED_EVENT, handleStartupEvents);
|
|
}).then(action);
|
|
};
|