This commit is contained in:
Rizky 2024-07-24 21:01:11 +07:00
parent e97b8d93a4
commit 3075e127a3
2 changed files with 39 additions and 27 deletions

File diff suppressed because one or more lines are too long

View File

@ -76,6 +76,12 @@ export const initDevLiveReload = () => {
await scanComponent(root.childs, true); await scanComponent(root.childs, true);
rebuildMeta(p.meta, root); rebuildMeta(p.meta, root);
base.page.cache[p.id] = p; base.page.cache[p.id] = p;
console.log(
`${format(Date.now(), "HH:mm:ss")} 🚧 Page [${
msg.data.map.root.name
}] updated `
);
w.prasiContext.render(); w.prasiContext.render();
} else if (msg.event === "comp_changed") { } else if (msg.event === "comp_changed") {
const id = msg.data.map.id; const id = msg.data.map.id;
@ -83,6 +89,12 @@ export const initDevLiveReload = () => {
const p = base.page.cache[base.page.id]; const p = base.page.cache[base.page.id];
await scanComponent([base.comp.list[id]]); await scanComponent([base.comp.list[id]]);
rebuildMeta(p.meta, p.root); rebuildMeta(p.meta, p.root);
console.log(
`${format(Date.now(), "HH:mm:ss")} 🚧 Component [${
msg.data.map.root.name
}] updated `
);
w.prasiContext.render(); w.prasiContext.render();
} else if (msg.event === "code_changes") { } else if (msg.event === "code_changes") {
const { mode, ts, status } = msg.data; const { mode, ts, status } = msg.data;