mirror of
https://github.com/jaandrle/deka-dom-el
synced 2025-04-03 04:25:53 +02:00
14 lines
472 B
JavaScript
14 lines
472 B
JavaScript
// not all browsers support importmaps
|
|
// import { el } from "deka-dom-el";
|
|
import { el } from "./irelands/esm-with-signals.js";
|
|
export function loadIrelands(store) {
|
|
document.body.querySelectorAll("[data-dde-mark]").forEach(ireland => {
|
|
const { ddeMark }= ireland.dataset;
|
|
if(!store.has(ddeMark)) return;
|
|
const { path, exportName, props }= store.get(ddeMark);
|
|
import("./"+path).then(module => {
|
|
ireland.replaceWith(el(module[exportName], props));
|
|
})
|
|
});
|
|
}
|