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

89 lines
2.9 KiB
TypeScript
Raw Normal View History

2023-07-01 07:03:01 +00:00
import { QuartzEmitterPlugin } from "../types"
import { QuartzComponentProps } from "../../components/types"
import HeaderConstructor from "../../components/Header"
import BodyConstructor from "../../components/Body"
import { pageResources, renderPage } from "../../components/renderPage"
import { ProcessedContent, defaultProcessedContent } from "../vfile"
import { FullPageLayout } from "../../cfg"
import path from "path"
import { CanonicalSlug, FilePath, ServerSlug, canonicalizeServer, joinSegments } from "../../path"
2023-07-26 06:37:24 +00:00
import { defaultListPageLayout, sharedPageComponents } from "../../../quartz.layout"
import { FolderContent } from "../../components"
2023-07-01 07:03:01 +00:00
2023-07-26 06:37:24 +00:00
export const FolderPage: QuartzEmitterPlugin<FullPageLayout> = (userOpts) => {
const opts: FullPageLayout = {
...sharedPageComponents,
...defaultListPageLayout,
pageBody: FolderContent(),
...userOpts,
2023-07-01 07:03:01 +00:00
}
2023-07-26 06:37:24 +00:00
const { head: Head, header, beforeBody, pageBody, left, right, footer: Footer } = opts
2023-07-01 07:03:01 +00:00
const Header = HeaderConstructor()
const Body = BodyConstructor()
return {
name: "FolderPage",
getQuartzComponents() {
2023-07-26 06:37:24 +00:00
return [Head, Header, Body, ...header, ...beforeBody, pageBody, ...left, ...right, Footer]
2023-07-01 07:03:01 +00:00
},
async emit(ctx, content, resources, emit): Promise<FilePath[]> {
const fps: FilePath[] = []
2023-07-23 00:27:41 +00:00
const allFiles = content.map((c) => c[1].data)
const cfg = ctx.cfg.configuration
2023-07-01 07:03:01 +00:00
2023-07-23 00:27:41 +00:00
const folders: Set<CanonicalSlug> = new Set(
allFiles.flatMap((data) => {
const slug = data.slug
const folderName = path.dirname(slug ?? "") as CanonicalSlug
if (slug && folderName !== "." && folderName !== "tags") {
return [folderName]
}
return []
}),
)
2023-07-01 07:03:01 +00:00
2023-07-23 00:27:41 +00:00
const folderDescriptions: Record<string, ProcessedContent> = Object.fromEntries(
[...folders].map((folder) => [
folder,
defaultProcessedContent({
slug: joinSegments(folder, "index") as ServerSlug,
frontmatter: { title: `Folder: ${folder}`, tags: [] },
}),
]),
)
2023-07-01 07:03:01 +00:00
for (const [tree, file] of content) {
const slug = canonicalizeServer(file.data.slug!)
2023-07-01 07:03:01 +00:00
if (folders.has(slug)) {
folderDescriptions[slug] = [tree, file]
}
}
for (const folder of folders) {
const slug = folder
2023-07-01 07:03:01 +00:00
const externalResources = pageResources(slug, resources)
const [tree, file] = folderDescriptions[folder]
const componentData: QuartzComponentProps = {
fileData: file.data,
externalResources,
cfg,
children: [],
tree,
2023-07-23 00:27:41 +00:00
allFiles,
2023-07-01 07:03:01 +00:00
}
2023-07-23 00:27:41 +00:00
const content = renderPage(slug, componentData, opts, externalResources)
2023-08-11 04:16:07 +00:00
const fp = await emit({
2023-07-01 07:03:01 +00:00
content,
slug: file.data.slug!,
ext: ".html",
})
fps.push(fp)
}
return fps
2023-07-23 00:27:41 +00:00
},
2023-07-01 07:03:01 +00:00
}
}