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

103 lines
3.1 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 {
FilePath,
FullSlug,
SimpleSlug,
_stripSlashes,
joinSegments,
pathToRoot,
simplifySlug,
} from "../../util/path"
2023-07-26 06:37:24 +00:00
import { defaultListPageLayout, sharedPageComponents } from "../../../quartz.layout"
import { FolderContent } from "../../components"
2024-02-05 10:45:36 +00:00
import { write } from "./helpers"
import { i18n } from "../../i18n"
2023-07-01 07:03:01 +00:00
2024-02-05 10:45:36 +00:00
export const FolderPage: QuartzEmitterPlugin<Partial<FullPageLayout>> = (userOpts) => {
2023-07-26 06:37:24 +00:00
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
},
2024-02-05 10:45:36 +00:00
async emit(ctx, content, resources): 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
const folders: Set<SimpleSlug> = new Set(
2023-07-23 00:27:41 +00:00
allFiles.flatMap((data) => {
const slug = data.slug
const folderName = path.dirname(slug ?? "") as SimpleSlug
2023-07-23 00:27:41 +00:00
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 FullSlug,
2024-02-05 10:45:36 +00:00
frontmatter: {
title: `${i18n(cfg.locale).pages.folderContent.folder}: ${folder}`,
tags: [],
},
2023-07-23 00:27:41 +00:00
}),
]),
)
2023-07-01 07:03:01 +00:00
for (const [tree, file] of content) {
const slug = _stripSlashes(simplifySlug(file.data.slug!)) as SimpleSlug
2023-07-01 07:03:01 +00:00
if (folders.has(slug)) {
folderDescriptions[slug] = [tree, file]
}
}
for (const folder of folders) {
const slug = joinSegments(folder, "index") as FullSlug
const externalResources = pageResources(pathToRoot(slug), resources)
2023-07-01 07:03:01 +00:00
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
}
2024-02-05 10:45:36 +00:00
const content = renderPage(cfg, slug, componentData, opts, externalResources)
const fp = await write({
ctx,
2023-07-01 07:03:01 +00:00
content,
slug,
2023-07-01 07:03:01 +00:00
ext: ".html",
})
fps.push(fp)
}
return fps
2023-07-23 00:27:41 +00:00
},
2023-07-01 07:03:01 +00:00
}
}