2023-06-17 05:41:59 +03:00
|
|
|
import { QuartzEmitterPlugin } from "../types"
|
2023-06-08 08:27:32 +03:00
|
|
|
import { QuartzComponentProps } from "../../components/types"
|
2023-07-01 10:03:01 +03:00
|
|
|
import HeaderConstructor from "../../components/Header"
|
2023-06-12 09:46:38 +03:00
|
|
|
import BodyConstructor from "../../components/Body"
|
2023-07-01 10:03:01 +03:00
|
|
|
import { pageResources, renderPage } from "../../components/renderPage"
|
|
|
|
import { FullPageLayout } from "../../cfg"
|
2023-08-17 08:04:15 +03:00
|
|
|
import { FilePath, canonicalizeServer } from "../../util/path"
|
2023-07-26 09:37:24 +03:00
|
|
|
import { defaultContentPageLayout, sharedPageComponents } from "../../../quartz.layout"
|
|
|
|
import { Content } from "../../components"
|
2023-06-02 00:35:31 +03:00
|
|
|
|
2023-07-26 09:37:24 +03:00
|
|
|
export const ContentPage: QuartzEmitterPlugin<Partial<FullPageLayout>> = (userOpts) => {
|
|
|
|
const opts: FullPageLayout = {
|
|
|
|
...sharedPageComponents,
|
|
|
|
...defaultContentPageLayout,
|
|
|
|
pageBody: Content(),
|
|
|
|
...userOpts,
|
2023-06-03 22:07:19 +03:00
|
|
|
}
|
|
|
|
|
2023-07-26 09:37:24 +03:00
|
|
|
const { head: Head, header, beforeBody, pageBody, left, right, footer: Footer } = opts
|
2023-06-12 09:46:38 +03:00
|
|
|
const Header = HeaderConstructor()
|
|
|
|
const Body = BodyConstructor()
|
|
|
|
|
2023-06-12 09:26:43 +03:00
|
|
|
return {
|
|
|
|
name: "ContentPage",
|
|
|
|
getQuartzComponents() {
|
2023-07-26 09:37:24 +03:00
|
|
|
return [Head, Header, Body, ...header, ...beforeBody, pageBody, ...left, ...right, Footer]
|
2023-06-12 09:26:43 +03:00
|
|
|
},
|
2023-07-24 03:07:19 +03:00
|
|
|
async emit(ctx, content, resources, emit): Promise<FilePath[]> {
|
|
|
|
const cfg = ctx.cfg.configuration
|
2023-07-13 10:19:35 +03:00
|
|
|
const fps: FilePath[] = []
|
2023-07-23 03:27:41 +03:00
|
|
|
const allFiles = content.map((c) => c[1].data)
|
2023-06-12 09:26:43 +03:00
|
|
|
for (const [tree, file] of content) {
|
2023-07-16 09:02:12 +03:00
|
|
|
const slug = canonicalizeServer(file.data.slug!)
|
2023-07-01 10:03:01 +03:00
|
|
|
const externalResources = pageResources(slug, resources)
|
2023-06-12 09:26:43 +03:00
|
|
|
const componentData: QuartzComponentProps = {
|
|
|
|
fileData: file.data,
|
2023-07-01 10:03:01 +03:00
|
|
|
externalResources,
|
2023-06-12 09:26:43 +03:00
|
|
|
cfg,
|
|
|
|
children: [],
|
2023-06-20 06:37:45 +03:00
|
|
|
tree,
|
2023-07-23 03:27:41 +03:00
|
|
|
allFiles,
|
2023-06-12 09:26:43 +03:00
|
|
|
}
|
2023-06-08 08:27:32 +03:00
|
|
|
|
2023-07-23 03:27:41 +03:00
|
|
|
const content = renderPage(slug, componentData, opts, externalResources)
|
2023-08-11 07:16:07 +03:00
|
|
|
const fp = await emit({
|
2023-07-01 10:03:01 +03:00
|
|
|
content,
|
2023-06-12 09:26:43 +03:00
|
|
|
slug: file.data.slug!,
|
|
|
|
ext: ".html",
|
|
|
|
})
|
2023-06-01 00:01:23 +03:00
|
|
|
|
2023-06-12 09:26:43 +03:00
|
|
|
fps.push(fp)
|
|
|
|
}
|
|
|
|
return fps
|
2023-07-23 03:27:41 +03:00
|
|
|
},
|
2023-06-01 00:01:23 +03:00
|
|
|
}
|
|
|
|
}
|