File size: 534 Bytes
bc20498
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import TYPES from "./types.js";

const waitForIt = [];

for (const [TYPE] of TYPES) {
    const selectors = [`script[type="${TYPE}"]`, `${TYPE}-script`];
    for (const element of document.querySelectorAll(selectors.join(","))) {
        const { promise, resolve } = Promise.withResolvers();
        waitForIt.push(promise);
        element.addEventListener(`${TYPE}:done`, resolve, { once: true });
    }
}

// wait for all the things then cleanup
Promise.all(waitForIt).then(() => {
    dispatchEvent(new Event("py:all-done"));
});