35 lines
1.2 KiB
JavaScript
35 lines
1.2 KiB
JavaScript
import _ from "lodash";
|
|
import grabPageComponent from "./web-pages/grab-page-component";
|
|
export default async function serverPostBuildFn({ artifacts }) {
|
|
if (!global.IS_FIRST_BUNDLE_READY) {
|
|
global.IS_FIRST_BUNDLE_READY = true;
|
|
}
|
|
if (!global.HMR_CONTROLLERS?.[0]) {
|
|
return;
|
|
}
|
|
for (let i = 0; i < global.HMR_CONTROLLERS.length; i++) {
|
|
const controller = global.HMR_CONTROLLERS[i];
|
|
const target_artifact = artifacts.find((a) => controller.target_map?.local_path == a.local_path);
|
|
const mock_req = new Request(controller.page_url);
|
|
const { serverRes } = await grabPageComponent({
|
|
req: mock_req,
|
|
});
|
|
const final_artifact = {
|
|
..._.omit(controller, ["controller"]),
|
|
target_map: target_artifact,
|
|
};
|
|
if (!target_artifact) {
|
|
delete final_artifact.target_map;
|
|
}
|
|
if (serverRes) {
|
|
final_artifact.page_props = serverRes;
|
|
}
|
|
try {
|
|
controller.controller.enqueue(`event: update\ndata: ${JSON.stringify(final_artifact)}\n\n`);
|
|
}
|
|
catch {
|
|
global.HMR_CONTROLLERS.splice(i, 1);
|
|
}
|
|
}
|
|
}
|