day 28 - pre-render cokies for lack of a better word

This commit is contained in:
Zoe
2022-10-20 21:55:22 -05:00
parent 59c755501b
commit b60a398627
38 changed files with 10289 additions and 0 deletions

26
day28/src/entry-client.ts Normal file
View File

@@ -0,0 +1,26 @@
// eslint-disable-next-line @typescript-eslint/no-unused-vars
import { appState, isSSR } from './main';
async function initClient() {
if (import.meta.env.SSR) return;
await import('./style.css');
const { renderPage } = await import('./lib/router/pageRenderer');
await renderPage();
window.onpopstate = async (e: PopStateEvent) => {
if (e.state === null) {
return;
}
await renderPage();
};
}
// async function initSSR() {
// const { hydratePage } = await import('./lib/router/hydrationManager');
// await hydratePage();
// }
if (!import.meta.env.SSR) {
if (!isSSR()) initClient();
}