2023-05-31 21:01:23 +00:00
|
|
|
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"
|
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-01 21:35:31 +00:00
|
|
|
|
2023-05-31 21:01:23 +00:00
|
|
|
interface Options {
|
2023-06-08 05:27:32 +00:00
|
|
|
head: QuartzComponent
|
|
|
|
header: QuartzComponent[],
|
|
|
|
body: QuartzComponent
|
2023-05-31 21:01:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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[] {
|
|
|
|
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[]> {
|
2023-05-31 21:01:23 +00:00
|
|
|
const fps: string[] = []
|
2023-06-01 21:35:31 +00:00
|
|
|
|
2023-06-08 05:27:32 +00:00
|
|
|
const { head: Head, header, body: Body } = this.opts
|
2023-05-31 21:01:23 +00:00
|
|
|
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 = {
|
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,
|
|
|
|
children: [content]
|
|
|
|
}
|
|
|
|
|
2023-05-31 21:01:23 +00:00
|
|
|
const doc = <html>
|
2023-06-08 05:27:32 +00:00
|
|
|
<Head {...componentData} />
|
2023-05-31 21:01:23 +00:00
|
|
|
<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} >
|
|
|
|
{header.map(HeaderComponent => <HeaderComponent {...componentData}/>)}
|
|
|
|
</Header>
|
|
|
|
<Body {...componentData}>
|
|
|
|
{content}
|
|
|
|
</Body>
|
2023-05-31 21:01:23 +00:00
|
|
|
</div>
|
|
|
|
</body>
|
2023-06-03 19:07:19 +00:00
|
|
|
{pageResources.js.filter(resource => resource.loadTime === "afterDOMReady").map(resource => <script key={resource.src} {...resource} />)}
|
2023-05-31 21:01:23 +00:00
|
|
|
</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
|
|
|
|
}
|
|
|
|
}
|