From e82ba97a396e4e9d77486b48e6ee8b1dfd1c1b4c Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Mon, 24 Jul 2023 07:07:58 +0000
Subject: [PATCH] actually add processed tag to frontmatter

---
 quartz/plugins/emitters/folderPage.tsx |   51 ++++++++++++++++++++++++++-------------------------
 1 files changed, 26 insertions(+), 25 deletions(-)

diff --git a/quartz/plugins/emitters/folderPage.tsx b/quartz/plugins/emitters/folderPage.tsx
index 7ac6d81..8c6ae02 100644
--- a/quartz/plugins/emitters/folderPage.tsx
+++ b/quartz/plugins/emitters/folderPage.tsx
@@ -22,25 +22,31 @@
     getQuartzComponents() {
       return [Head, Header, Body, ...header, ...beforeBody, Content, ...left, ...right, Footer]
     },
-    async emit(_contentDir, cfg, content, resources, emit): Promise<FilePath[]> {
+    async emit(ctx, content, resources, emit): Promise<FilePath[]> {
       const fps: FilePath[] = []
-      const allFiles = content.map(c => c[1].data)
+      const allFiles = content.map((c) => c[1].data)
+      const cfg = ctx.cfg.configuration
 
-      const folders: Set<CanonicalSlug> = new Set(allFiles.flatMap(data => {
-        const slug = data.slug
-        const folderName = path.dirname(slug ?? "") as CanonicalSlug
-        if (slug && folderName !== ".") {
-          return [folderName]
-        }
-        return []
-      }))
+      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 []
+        }),
+      )
 
-      // remove special prefixes
-      folders.delete("tags" as CanonicalSlug)
-
-      const folderDescriptions: Record<string, ProcessedContent> = Object.fromEntries([...folders].map(folder => ([
-        folder, defaultProcessedContent({ slug: joinSegments(folder, "index") as ServerSlug, frontmatter: { title: `Folder: ${folder}`, tags: [] } })
-      ])))
+      const folderDescriptions: Record<string, ProcessedContent> = Object.fromEntries(
+        [...folders].map((folder) => [
+          folder,
+          defaultProcessedContent({
+            slug: joinSegments(folder, "index") as ServerSlug,
+            frontmatter: { title: `Folder: ${folder}`, tags: [] },
+          }),
+        ]),
+      )
 
       for (const [tree, file] of content) {
         const slug = canonicalizeServer(file.data.slug!)
@@ -59,17 +65,12 @@
           cfg,
           children: [],
           tree,
-          allFiles
+          allFiles,
         }
 
-        const content = renderPage(
-          slug,
-          componentData,
-          opts,
-          externalResources
-        )
+        const content = renderPage(slug, componentData, opts, externalResources)
 
-        const fp = file.data.slug! + ".html" as FilePath
+        const fp = (file.data.slug! + ".html") as FilePath
         await emit({
           content,
           slug: file.data.slug!,
@@ -79,6 +80,6 @@
         fps.push(fp)
       }
       return fps
-    }
+    },
   }
 }

--
Gitblit v1.10.0