-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentry-browser.tsx
81 lines (71 loc) · 2.31 KB
/
entry-browser.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 "./style.css";
import {
type SerializeResult,
type VNode,
deserialize,
hydrateRoot,
useEffect,
useState,
} from "@hiogawa/tiny-react";
import { tinyassert } from "@hiogawa/utils";
import { createReferenceMap } from "./integration/client-reference/runtime";
import { jsonUnescapeSymbol } from "./integration/serialization";
async function main() {
if (window.location.href.includes("__nojs")) {
return;
}
function Root(props: { data: VNode }) {
const [data, setData] = useState(props.data);
// replace root on client side navigation
useEffect(() => {
return listenHistory(async () => {
const url = new URL(window.location.href);
url.searchParams.set("__serialize", "");
const res = await fetch(url);
tinyassert(res.ok);
const result: SerializeResult = jsonUnescapeSymbol(await res.text());
const newVnode = deserialize<VNode>(
result.data,
await createReferenceMap(result.referenceIds)
);
setData(newVnode);
});
}, []);
return data;
}
// hydrate with initial SNode
const initResult: SerializeResult = jsonUnescapeSymbol(
(globalThis as any).__serialized
);
const vnode = deserialize<VNode>(
initResult.data,
await createReferenceMap(initResult.referenceIds)
);
const el = document.getElementById("root");
tinyassert(el);
hydrateRoot(el, <Root data={vnode} />);
}
// cf. https://github.com/TanStack/router/blob/7095f9e5af79ff98d5a1cad126c2d7d9eacfa253/packages/history/src/index.ts#L301-L314
function listenHistory(onNavigation: () => void) {
window.addEventListener("pushstate", onNavigation);
window.addEventListener("popstate", onNavigation);
const oldPushState = window.history.pushState;
window.history.pushState = function (...args) {
const res = oldPushState.apply(this, args);
onNavigation();
return res;
};
const oldReplaceState = window.history.replaceState;
window.history.replaceState = function (...args) {
const res = oldReplaceState.apply(this, args);
onNavigation();
return res;
};
return () => {
window.removeEventListener("pushstate", onNavigation);
window.removeEventListener("popstate", onNavigation);
window.history.pushState = oldPushState;
window.history.replaceState = oldReplaceState;
};
}
main();