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

98 lines
3.4 KiB
TypeScript
Raw Normal View History

2023-06-13 05:41:42 +00:00
import { JSResourceToScriptElement, StaticResources } from "../../resources"
2023-06-17 02:41:59 +00:00
import { QuartzEmitterPlugin } from "../types"
import { render } from "preact-render-to-string"
2023-06-03 19:07:19 +00:00
import { QuartzComponent } from "../../components/types"
2023-06-18 17:47:07 +00:00
import { resolveToRoot, trimPathSuffix } 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-17 21:36:06 +00:00
beforeBody: QuartzComponent[],
2023-06-17 23:05:46 +00:00
content: QuartzComponent,
2023-06-17 02:41:59 +00:00
left: QuartzComponent[],
right: QuartzComponent[],
footer: 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-17 21:36:06 +00:00
const { head: Head, header, beforeBody, left, right, footer } = opts
2023-06-12 06:46:38 +00:00
const Header = HeaderConstructor()
const Body = BodyConstructor()
return {
name: "ContentPage",
getQuartzComponents() {
2023-06-17 23:05:46 +00:00
return [opts.head, Header, Body, ...opts.header, ...opts.beforeBody, opts.content, ...opts.left, ...opts.right, ...opts.footer]
},
2023-06-17 02:41:59 +00:00
async emit(_contentDir, cfg, content, resources, emit): Promise<string[]> {
const fps: string[] = []
2023-06-20 03:37:45 +00:00
const allFiles = content.map(c => c[1].data)
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: [],
2023-06-20 03:37:45 +00:00
tree,
allFiles
}
2023-06-08 05:27:32 +00:00
2023-06-17 23:05:46 +00:00
const Content = opts.content
const doc = <html>
<Head {...componentData} />
2023-06-20 03:37:45 +00:00
<body data-slug={file.data.slug ?? ""}>
<div id="quartz-root" class="page">
<Header {...componentData} >
{header.map(HeaderComponent => <HeaderComponent {...componentData} />)}
</Header>
2023-06-17 23:05:46 +00:00
<div class="popover-hint">
{beforeBody.map(BodyComponent => <BodyComponent {...componentData} />)}
</div>
<Body {...componentData}>
2023-06-17 21:36:06 +00:00
<div class="left">
{left.map(BodyComponent => <BodyComponent {...componentData} />)}
</div>
2023-06-17 23:05:46 +00:00
<div class="center popover-hint">
2023-06-17 21:36:06 +00:00
<Content {...componentData} />
</div>
<div class="right">
{right.map(BodyComponent => <BodyComponent {...componentData} />)}
</div>
</Body>
2023-06-17 21:36:06 +00:00
</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
}
}
}