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

81 lines
2.5 KiB
TypeScript
Raw Normal View History

import { StaticResources } from "../../resources"
import { EmitCallback, QuartzEmitterPlugin } from "../types"
import { ProcessedContent } from "../vfile"
import { render } from "preact-render-to-string"
2023-06-01 21:35:31 +00:00
import { GlobalConfiguration } from "../../cfg"
2023-06-03 19:07:19 +00:00
import { QuartzComponent } from "../../components/types"
import { resolveToRoot } from "../../path"
2023-06-08 05:27:32 +00:00
import Header from "../../components/Header"
import { QuartzComponentProps } from "../../components/types"
2023-06-10 06:06:02 +00:00
import Body from "../../components/Body"
2023-06-01 21:35:31 +00:00
interface Options {
2023-06-08 05:27:32 +00:00
head: QuartzComponent
header: QuartzComponent[],
2023-06-10 06:06:02 +00:00
body: QuartzComponent[]
}
export class ContentPage extends QuartzEmitterPlugin {
name = "ContentPage"
opts: Options
constructor(opts: Options) {
super()
this.opts = opts
}
2023-06-08 05:27:32 +00:00
getQuartzComponents(): QuartzComponent[] {
2023-06-10 06:06:02 +00:00
return [this.opts.head, Header, ...this.opts.header, ...this.opts.body]
2023-06-03 19:07:19 +00:00
}
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-10 06:06:02 +00:00
const { head: Head, header, body } = this.opts
for (const [tree, file] of content) {
2023-06-03 19:07:19 +00:00
const baseDir = resolveToRoot(file.data.slug!)
const pageResources: StaticResources = {
2023-06-08 05:27:32 +00:00
css: [baseDir + "/index.css", ...resources.css],
2023-06-03 19:07:19 +00:00
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-08 05:27:32 +00:00
const componentData: QuartzComponentProps = {
fileData: file.data,
externalResources: pageResources,
cfg,
2023-06-10 06:06:02 +00:00
children: [],
tree
2023-06-08 05:27:32 +00:00
}
const doc = <html>
2023-06-08 05:27:32 +00:00
<Head {...componentData} />
<body>
2023-06-01 21:35:31 +00:00
<div id="quartz-root" class="page">
2023-06-08 05:27:32 +00:00
<Header {...componentData} >
2023-06-10 06:06:02 +00:00
{header.map(HeaderComponent => <HeaderComponent {...componentData} position="header" />)}
2023-06-08 05:27:32 +00:00
</Header>
<Body {...componentData}>
2023-06-10 06:06:02 +00:00
{body.map(BodyComponent => <BodyComponent {...componentData } position="body" />)}
2023-06-08 05:27:32 +00:00
</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
}
}