prasi-bun/app/web/src/nova/prod/base/component.tsx

72 lines
1.8 KiB
TypeScript

import { get, set } from "idb-keyval";
import { IContent } from "../../../utils/types/general";
import { IItem } from "../../../utils/types/item";
import { ISection } from "../../../utils/types/section";
import { base } from "./base";
export const scanComponent = async (items: IContent[]) => {
const comp = base.comp;
for (const item of items) {
if (item && item.type !== "text") {
scanSingle(item);
}
}
if (comp.pending.size > 0) {
let all_found = true;
const founds: any = [];
if (all_found) {
for (const id of [...comp.pending]) {
comp.pending.delete(id);
}
await scanComponent(founds);
return;
}
}
if (comp.pending.size > 0) {
try {
const res = (await (
await fetch(base.url`_prasi/comp`, {
method: "POST",
body: JSON.stringify({ ids: [...comp.pending] }),
})
).json()) as Record<string, IItem>;
for (const [id, item] of Object.entries(res)) {
comp.pending.delete(id);
comp.list[id] = item;
await set(`comp-${id}`, item);
}
await scanComponent(Object.values(res));
} catch (e) {}
}
};
const scanSingle = (item: IItem | ISection) => {
const comp = base.comp;
if (item.type === "item") {
const comp_id = item.component?.id;
if (comp_id) {
if (!comp.list[comp_id] && !comp.pending.has(comp_id)) {
comp.pending.add(comp_id);
}
for (const prop of Object.values(item.component?.props || {})) {
if (prop.content && prop.meta?.type === "content-element") {
scanSingle(prop.content);
}
}
}
}
if (item.childs) {
for (const child of item.childs) {
if (child && child.type !== "text") {
scanSingle(child);
}
}
}
};