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"
|
|
|
|
import { ComponentType } from "preact"
|
|
|
|
import { HeadProps } from "../../components/Head"
|
2023-06-01 21:35:31 +00:00
|
|
|
import { googleFontHref, templateThemeStyles } from "../../theme"
|
|
|
|
import { GlobalConfiguration } from "../../cfg"
|
2023-06-01 23:05:14 +00:00
|
|
|
import { HeaderProps } from "../../components/Header"
|
|
|
|
|
|
|
|
import styles from '../../styles/base.scss'
|
2023-06-01 21:35:31 +00:00
|
|
|
|
2023-05-31 21:01:23 +00:00
|
|
|
interface Options {
|
|
|
|
Head: ComponentType<HeadProps>
|
2023-06-01 23:05:14 +00:00
|
|
|
Header: ComponentType<HeaderProps>
|
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-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
|
|
|
|
|
|
|
// emit styles
|
|
|
|
emit({
|
|
|
|
slug: "index",
|
|
|
|
ext: ".css",
|
|
|
|
content: templateThemeStyles(cfg.theme, styles)
|
|
|
|
})
|
|
|
|
fps.push("index.css")
|
|
|
|
resources.css.push(googleFontHref(cfg.theme))
|
|
|
|
|
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-01 23:05:14 +00:00
|
|
|
const title = file.data.frontmatter?.title
|
|
|
|
const { Head, Header } = this.opts
|
2023-05-31 21:01:23 +00:00
|
|
|
const doc = <html>
|
|
|
|
<Head
|
2023-06-01 23:05:14 +00:00
|
|
|
title={title ?? "Untitled"}
|
2023-05-31 21:01:23 +00:00
|
|
|
description={file.data.description ?? "No description provided"}
|
|
|
|
slug={file.data.slug!}
|
|
|
|
externalResources={resources} />
|
|
|
|
<body>
|
2023-06-01 21:35:31 +00:00
|
|
|
<div id="quartz-root" class="page">
|
2023-06-01 23:05:14 +00:00
|
|
|
<Header title={cfg.siteTitle} slug={file.data.slug!} />
|
2023-05-31 21:01:23 +00:00
|
|
|
<article>
|
2023-06-01 23:05:14 +00:00
|
|
|
{file.data.slug !== "index" && <h1>{title}</h1>}
|
2023-05-31 21:01:23 +00:00
|
|
|
{content}
|
|
|
|
</article>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
{resources.js.filter(resource => resource.loadTime === "afterDOMReady").map(resource => <script key={resource.src} src={resource.src} />)}
|
|
|
|
</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
|
|
|
|
}
|
|
|
|
}
|