-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentry-server.tsx
81 lines (74 loc) · 2.08 KB
/
entry-server.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import {
type VNode,
deserialize,
renderToString,
serialize,
} from "@hiogawa/tiny-react";
import type { ViteDevServer } from "vite";
import { createReferenceMap } from "./integration/client-reference/runtime";
import { jsonEscapeSymbol } from "./integration/serialization";
import Layout from "./routes/layout";
export async function handler(request: Request) {
// serialize server component
const url = new URL(request.url);
const serialized = await serialize(<Router url={url} />);
// to CSR
if (url.searchParams.has("__serialize")) {
return new Response(jsonEscapeSymbol(serialized), {
headers: {
"content-type": "application/json",
},
});
}
// to SSR
const vnode = deserialize<VNode>(
serialized.data,
await createReferenceMap(serialized.referenceIds)
);
const ssrHtml = renderToString(vnode);
let html = await importHtmlTemplate();
html = html.replace("<body>", () => `<body><div id="root">${ssrHtml}</div>`);
html = html.replace(
"<head>",
() =>
`<head><script>globalThis.__serialized = ${JSON.stringify(
jsonEscapeSymbol(serialized)
)}</script>`
);
// dev only FOUC fix
if (import.meta.env.DEV) {
html = html.replace(
"<head>",
`<head><link rel="stylesheet" href="/src/style.css?direct" />`
);
}
return new Response(html, {
headers: {
"content-type": "text/html",
},
});
}
async function Router({ url }: { url: URL }) {
const routes = {
"/": () => import("./routes/page"),
"/test": () => import("./routes/test/page"),
};
const route = routes[url.pathname as "/"];
let node = <div>Not Found</div>;
if (route) {
const Page = (await route()).default;
node = <Page />;
}
return <Layout>{node}</Layout>;
}
declare let __vite_server: ViteDevServer;
async function importHtmlTemplate() {
let html: string;
if (import.meta.env.DEV) {
html = (await import("/index.html?raw")).default;
html = await __vite_server.transformIndexHtml("/", html);
} else {
html = (await import("/dist/client/index.html?raw")).default;
}
return html;
}