2023-12-04 18:19:30 +01:00
|
|
|
/* PSEUDO-CODE!!! */
|
|
|
|
import { el } from "deka-dom-el";
|
2024-05-22 21:43:49 +02:00
|
|
|
import { S } from "deka-dom-el/signals";
|
2023-12-04 18:19:30 +01:00
|
|
|
function component(){
|
|
|
|
/* prepare changeable data */
|
2024-05-22 21:43:49 +02:00
|
|
|
const dataA= S("data");
|
|
|
|
const dataB= S("data");
|
2023-12-04 18:19:30 +01:00
|
|
|
/* define data flow (can be asynchronous) */
|
|
|
|
fetchAPI().then(data_new=> dataA(data_new));
|
|
|
|
setTimeout(()=> dataB("DATA"));
|
|
|
|
/* declarative UI */
|
|
|
|
return el().append(
|
|
|
|
el("h1", {
|
|
|
|
textContent: "Example",
|
|
|
|
/* declarative attribute(s) */
|
|
|
|
classList: { declarative: dataB }
|
|
|
|
}),
|
|
|
|
el("ul").append(
|
|
|
|
/* declarative element(s) */
|
2024-05-22 21:43:49 +02:00
|
|
|
S.el(dataA, data=> data.map(d=> el("li", d)))
|
2023-12-04 18:19:30 +01:00
|
|
|
),
|
|
|
|
el("ul").append(
|
|
|
|
/* declarative component(s) */
|
2024-05-22 21:43:49 +02:00
|
|
|
S.el(dataA, data=> data.map(d=> el(subcomponent, d)))
|
2023-12-04 18:19:30 +01:00
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
function subcomponent({ id }){
|
|
|
|
/* prepare changeable data */
|
2024-05-22 21:43:49 +02:00
|
|
|
const textContent= S("…");
|
2023-12-04 18:19:30 +01:00
|
|
|
/* define data flow (can be asynchronous) */
|
|
|
|
fetchAPI(id).then(text=> textContent(text));
|
|
|
|
/* declarative UI */
|
|
|
|
return el("li", { textContent, dataId: id });
|
|
|
|
}
|