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

82 lines
2.7 KiB
TypeScript
Raw Normal View History

2023-06-13 05:41:42 +00:00
import { JSResourceToScriptElement, 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-12 06:46:38 +00:00
import HeaderConstructor from "../../components/Header"
2023-06-08 05:27:32 +00:00
import { QuartzComponentProps } from "../../components/types"
2023-06-12 06:46:38 +00:00
import BodyConstructor 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 const ContentPage: QuartzEmitterPlugin<Options> = (opts) => {
if (!opts) {
throw new Error("ContentPage must be initialized with options specifiying the components to use")
2023-06-03 19:07:19 +00:00
}
2023-06-12 06:46:38 +00:00
const { head: Head, header, body } = opts
const Header = HeaderConstructor()
const Body = BodyConstructor()
return {
name: "ContentPage",
getQuartzComponents() {
return [opts.head, Header, ...opts.header, ...opts.body]
},
async emit(cfg: GlobalConfiguration, content: ProcessedContent[], resources: StaticResources, emit: EmitCallback): Promise<string[]> {
const fps: string[] = []
2023-06-01 21:35:31 +00:00
for (const [tree, file] of content) {
const baseDir = resolveToRoot(file.data.slug!)
const pageResources: StaticResources = {
css: [baseDir + "/index.css", ...resources.css],
js: [
2023-06-13 05:41:42 +00:00
{ src: baseDir + "/prescript.js", loadTime: "beforeDOMReady", contentType: "external" },
...resources.js,
2023-06-13 05:41:42 +00:00
{ src: baseDir + "/postscript.js", loadTime: "afterDOMReady", moduleType: 'module', contentType: "external" }
]
}
2023-06-03 19:07:19 +00:00
const componentData: QuartzComponentProps = {
fileData: file.data,
externalResources: pageResources,
cfg,
children: [],
tree
}
2023-06-08 05:27:32 +00:00
const doc = <html>
<Head {...componentData} />
<body>
<div id="quartz-root" class="page">
<Header {...componentData} >
{header.map(HeaderComponent => <HeaderComponent {...componentData} />)}
</Header>
<Body {...componentData}>
{body.map(BodyComponent => <BodyComponent {...componentData} />)}
</Body>
</div>
</body>
2023-06-13 05:41:42 +00:00
{pageResources.js.filter(resource => resource.loadTime === "afterDOMReady").map(res => JSResourceToScriptElement(res))}
</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
}
}
}