51 lines
2.1 KiB
JavaScript
51 lines
2.1 KiB
JavaScript
import _ from "lodash";
|
|
import { log } from "../../../utils/log";
|
|
import grabRootFilePath from "./grab-root-file-path";
|
|
import grabPageServerRes from "./grab-page-server-res";
|
|
import grabPageServerPath from "./grab-page-server-path";
|
|
import path from "path";
|
|
import grabDirNames from "../../../utils/grab-dir-names";
|
|
const { ROOT_DIR } = grabDirNames();
|
|
export default async function grabPageCombinedServerRes({ file_path, debug, url, query, routeParams, }) {
|
|
const now = Date.now();
|
|
const { root_file_path } = grabRootFilePath();
|
|
const { server_file_path: root_server_file_path } = root_file_path
|
|
? grabPageServerPath({ file_path: root_file_path })
|
|
: {};
|
|
const root_server_ctx_map = global.SSR_BUNDLER_CTX_MAP[root_server_file_path || ""];
|
|
const final_root_server_path = root_server_ctx_map?.local_path
|
|
? path.join(ROOT_DIR, root_server_ctx_map.path)
|
|
: root_server_file_path;
|
|
const root_server_module = final_root_server_path
|
|
? await import(`${final_root_server_path}?t=${now}`)
|
|
: undefined;
|
|
const root_server_fn = root_server_module?.default || root_server_module?.server;
|
|
const rootServerRes = await grabPageServerRes({
|
|
server_function: root_server_fn,
|
|
url,
|
|
query,
|
|
routeParams,
|
|
});
|
|
if (debug) {
|
|
log.info(`rootServerRes:`, rootServerRes);
|
|
}
|
|
const { server_file_path } = grabPageServerPath({ file_path });
|
|
const page_server_ctx = global.SSR_BUNDLER_CTX_MAP[server_file_path || ""];
|
|
const final_page_server_path = page_server_ctx?.local_path
|
|
? path.join(ROOT_DIR, page_server_ctx.path)
|
|
: server_file_path;
|
|
const server_module = final_page_server_path
|
|
? await import(`${final_page_server_path}?t=${now}`)
|
|
: undefined;
|
|
const server_fn = server_module?.default || server_module?.server;
|
|
const serverRes = await grabPageServerRes({
|
|
server_function: server_fn,
|
|
url,
|
|
query,
|
|
routeParams,
|
|
props: rootServerRes?.props || null,
|
|
});
|
|
const mergedServerRes = _.merge(rootServerRes || {}, serverRes || {});
|
|
return { serverRes: mergedServerRes };
|
|
}
|