From c538c151c7462ad0395ff2c15c5e11e89e362aa8 Mon Sep 17 00:00:00 2001
From: Striven <sg.striven@cutecat.club>
Date: Sat, 04 Apr 2026 19:47:16 +0000
Subject: [PATCH] Initial commit
---
quartz/components/RecentNotes.tsx | 66 +++++++++++++++++++-------------
1 files changed, 39 insertions(+), 27 deletions(-)
diff --git a/quartz/components/RecentNotes.tsx b/quartz/components/RecentNotes.tsx
index 2b61b39..2c32fea 100644
--- a/quartz/components/RecentNotes.tsx
+++ b/quartz/components/RecentNotes.tsx
@@ -1,38 +1,46 @@
-import { QuartzComponentConstructor, QuartzComponentProps } from "./types"
+import { QuartzComponent, QuartzComponentConstructor, QuartzComponentProps } from "./types"
import { FullSlug, SimpleSlug, resolveRelative } from "../util/path"
import { QuartzPluginData } from "../plugins/vfile"
import { byDateAndAlphabetical } from "./PageList"
import style from "./styles/recentNotes.scss"
-import { Date } from "./Date"
+import { Date, getDate } from "./Date"
+import { GlobalConfiguration } from "../cfg"
+import { i18n } from "../i18n"
+import { classNames } from "../util/lang"
interface Options {
- title: string
+ title?: string
limit: number
linkToMore: SimpleSlug | false
+ showTags: boolean
filter: (f: QuartzPluginData) => boolean
sort: (f1: QuartzPluginData, f2: QuartzPluginData) => number
}
-const defaultOptions: Options = {
- title: "Recent Notes",
+const defaultOptions = (cfg: GlobalConfiguration): Options => ({
limit: 3,
linkToMore: false,
+ showTags: true,
filter: () => true,
- sort: byDateAndAlphabetical,
-}
+ sort: byDateAndAlphabetical(cfg),
+})
export default ((userOpts?: Partial<Options>) => {
- const opts = { ...defaultOptions, ...userOpts }
- function RecentNotes(props: QuartzComponentProps) {
- const { allFiles, fileData, displayClass } = props
+ const RecentNotes: QuartzComponent = ({
+ allFiles,
+ fileData,
+ displayClass,
+ cfg,
+ }: QuartzComponentProps) => {
+ const opts = { ...defaultOptions(cfg), ...userOpts }
const pages = allFiles.filter(opts.filter).sort(opts.sort)
const remaining = Math.max(0, pages.length - opts.limit)
return (
- <div class={`recent-notes ${displayClass}`}>
- <h3>{opts.title}</h3>
+ <div class={classNames(displayClass, "recent-notes")}>
+ <h3>{opts.title ?? i18n(cfg.locale).components.recentNotes.title}</h3>
<ul class="recent-ul">
{pages.slice(0, opts.limit).map((page) => {
- const title = page.frontmatter?.title
+ const title = page.frontmatter?.title ?? i18n(cfg.locale).propertyDefaults.title
const tags = page.frontmatter?.tags ?? []
return (
@@ -47,21 +55,23 @@
</div>
{page.dates && (
<p class="meta">
- <Date date={page.dates.modified} />
+ <Date date={getDate(cfg, page)!} locale={cfg.locale} />
</p>
)}
- <ul class="tags">
- {tags.map((tag) => (
- <li>
- <a
- class="internal tag-link"
- href={resolveRelative(fileData.slug!, `tags/${tag}` as FullSlug)}
- >
- #{tag}
- </a>
- </li>
- ))}
- </ul>
+ {opts.showTags && (
+ <ul class="tags">
+ {tags.map((tag) => (
+ <li>
+ <a
+ class="internal tag-link"
+ href={resolveRelative(fileData.slug!, `tags/${tag}` as FullSlug)}
+ >
+ {tag}
+ </a>
+ </li>
+ ))}
+ </ul>
+ )}
</div>
</li>
)
@@ -69,7 +79,9 @@
</ul>
{opts.linkToMore && remaining > 0 && (
<p>
- <a href={resolveRelative(fileData.slug!, opts.linkToMore)}>See {remaining} more →</a>
+ <a href={resolveRelative(fileData.slug!, opts.linkToMore)}>
+ {i18n(cfg.locale).components.recentNotes.seeRemainingMore({ remaining })}
+ </a>
</p>
)}
</div>
--
Gitblit v1.10.0