quartz-research-note/quartz/components/renderPage.tsx

77 lines
2.8 KiB
TypeScript
Raw Normal View History

2023-07-01 07:03:01 +00:00
import { render } from "preact-render-to-string";
import { QuartzComponent, QuartzComponentProps } from "./types";
import HeaderConstructor from "./Header"
import BodyConstructor from "./Body"
import { JSResourceToScriptElement, StaticResources } from "../resources";
2023-07-13 07:19:35 +00:00
import { CanonicalSlug, pathToRoot } from "../path";
2023-07-01 07:03:01 +00:00
interface RenderComponents {
head: QuartzComponent
header: QuartzComponent[],
beforeBody: QuartzComponent[],
pageBody: QuartzComponent,
left: QuartzComponent[],
right: QuartzComponent[],
footer: QuartzComponent,
}
2023-07-13 07:19:35 +00:00
export function pageResources(slug: CanonicalSlug, staticResources: StaticResources): StaticResources {
const baseDir = pathToRoot(slug)
2023-07-02 20:08:29 +00:00
const contentIndexPath = baseDir + "/static/contentIndex.json"
const contentIndexScript = `const fetchData = fetch(\`${contentIndexPath}\`).then(data => data.json())`
2023-07-01 07:03:01 +00:00
return {
css: [baseDir + "/index.css", ...staticResources.css],
js: [
{ src: baseDir + "/prescript.js", loadTime: "beforeDOMReady", contentType: "external" },
{ loadTime: "beforeDOMReady", contentType: "inline", spaPreserve: true, script: contentIndexScript },
2023-07-01 07:03:01 +00:00
...staticResources.js,
{ src: baseDir + "/postscript.js", loadTime: "afterDOMReady", moduleType: 'module', contentType: "external" }
]
}
}
2023-07-13 07:19:35 +00:00
export function renderPage(slug: CanonicalSlug, componentData: QuartzComponentProps, components: RenderComponents, pageResources: StaticResources): string {
2023-07-01 07:03:01 +00:00
const { head: Head, header, beforeBody, pageBody: Content, left, right, footer: Footer } = components
const Header = HeaderConstructor()
const Body = BodyConstructor()
2023-07-02 20:08:29 +00:00
const LeftComponent =
2023-07-05 00:14:15 +00:00
<div class="left sidebar">
{left.map(BodyComponent => <BodyComponent {...componentData} />)}
2023-07-02 20:08:29 +00:00
</div>
const RightComponent =
2023-07-05 00:14:15 +00:00
<div class="right sidebar">
{right.map(BodyComponent => <BodyComponent {...componentData} />)}
2023-07-02 20:08:29 +00:00
</div>
2023-07-01 07:03:01 +00:00
const doc = <html>
<Head {...componentData} />
<body data-slug={slug}>
<div id="quartz-root" class="page">
<Body {...componentData}>
2023-07-02 20:08:29 +00:00
{LeftComponent}
<div class="center">
<div class="page-header">
<Header {...componentData} >
{header.map(HeaderComponent => <HeaderComponent {...componentData} />)}
</Header>
<div class="popover-hint">
{beforeBody.map(BodyComponent => <BodyComponent {...componentData} />)}
</div>
</div>
2023-07-01 07:03:01 +00:00
<Content {...componentData} />
</div>
2023-07-02 20:08:29 +00:00
{RightComponent}
2023-07-01 07:03:01 +00:00
</Body>
<Footer {...componentData} />
2023-07-01 07:03:01 +00:00
</div>
</body>
{pageResources.js.filter(resource => resource.loadTime === "afterDOMReady").map(res => JSResourceToScriptElement(res))}
</html>
return "<!DOCTYPE html>\n" + render(doc)
}