quartz-research-note/quartz/plugins/emitters/contentPage.tsx

79 lines
2.6 KiB
TypeScript
Raw Normal View History

import { toJsxRuntime } from "hast-util-to-jsx-runtime"
import { StaticResources } from "../../resources"
import { EmitCallback, QuartzEmitterPlugin } from "../types"
import { ProcessedContent } from "../vfile"
import { Fragment, jsx, jsxs } from 'preact/jsx-runtime'
import { render } from "preact-render-to-string"
import { HeadProps } from "../../components/Head"
2023-06-01 21:35:31 +00:00
import { GlobalConfiguration } from "../../cfg"
2023-06-01 23:05:14 +00:00
import { HeaderProps } from "../../components/Header"
2023-06-03 19:07:19 +00:00
import { QuartzComponent } from "../../components/types"
import { resolveToRoot } from "../../path"
2023-06-07 04:19:00 +00:00
import { BodyProps } from "../../components/Body"
2023-06-01 21:35:31 +00:00
interface Options {
2023-06-03 19:07:19 +00:00
Head: QuartzComponent<HeadProps>
Header: QuartzComponent<HeaderProps>
2023-06-07 04:19:00 +00:00
Body: QuartzComponent<BodyProps>
}
export class ContentPage extends QuartzEmitterPlugin {
name = "ContentPage"
opts: Options
constructor(opts: Options) {
super()
this.opts = opts
}
2023-06-03 19:07:19 +00:00
getQuartzComponents(): QuartzComponent<any>[] {
return [...Object.values(this.opts)]
}
2023-06-01 21:35:31 +00:00
async emit(cfg: GlobalConfiguration, content: ProcessedContent[], resources: StaticResources, emit: EmitCallback): Promise<string[]> {
const fps: string[] = []
2023-06-01 21:35:31 +00:00
2023-06-07 04:19:00 +00:00
const { Head, Header, Body } = this.opts
for (const [tree, file] of content) {
// @ts-ignore (preact makes it angry)
const content = toJsxRuntime(tree, { Fragment, jsx, jsxs, elementAttributeNameCase: 'html' })
2023-06-03 19:07:19 +00:00
const baseDir = resolveToRoot(file.data.slug!)
const pageResources: StaticResources = {
css: [baseDir + "/index.css", ...resources.css,],
js: [
2023-06-07 03:58:26 +00:00
{ src: baseDir + "/prescript.js", loadTime: "beforeDOMReady" },
2023-06-03 19:07:19 +00:00
...resources.js,
2023-06-07 04:19:00 +00:00
{ src: baseDir + "/postscript.js", loadTime: "afterDOMReady", type: 'module' }
2023-06-03 19:07:19 +00:00
]
}
2023-06-01 23:05:14 +00:00
const title = file.data.frontmatter?.title
const doc = <html>
2023-06-07 02:48:37 +00:00
<Head
2023-06-01 23:05:14 +00:00
title={title ?? "Untitled"}
description={file.data.description ?? "No description provided"}
slug={file.data.slug!}
2023-06-03 19:07:19 +00:00
externalResources={pageResources} />
<body>
2023-06-01 21:35:31 +00:00
<div id="quartz-root" class="page">
2023-06-07 02:48:37 +00:00
<Header title={cfg.siteTitle} slug={file.data.slug!} />
2023-06-07 04:19:00 +00:00
<Body title={file.data.slug === "index" ? undefined : title}>{content}</Body>
</div>
</body>
2023-06-03 19:07:19 +00:00
{pageResources.js.filter(resource => resource.loadTime === "afterDOMReady").map(resource => <script key={resource.src} {...resource} />)}
</html>
const fp = file.data.slug + ".html"
await emit({
content: "<!DOCTYPE html>\n" + render(doc),
slug: file.data.slug!,
ext: ".html",
})
fps.push(fp)
}
return fps
}
}