From 54b4a5567c8c12d4d00a4f782f4a597a2433be73 Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Sun, 03 Dec 2023 00:55:38 +0000
Subject: [PATCH] fix: fmt
---
quartz/components/RecentNotes.tsx | 22 +++++++++++-----------
1 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/quartz/components/RecentNotes.tsx b/quartz/components/RecentNotes.tsx
index 5e992b4..63f040d 100644
--- a/quartz/components/RecentNotes.tsx
+++ b/quartz/components/RecentNotes.tsx
@@ -3,7 +3,8 @@
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"
interface Options {
title: string
@@ -13,25 +14,24 @@
sort: (f1: QuartzPluginData, f2: QuartzPluginData) => number
}
-const defaultOptions: Options = {
+const defaultOptions = (cfg: GlobalConfiguration): Options => ({
title: "Recent Notes",
limit: 3,
linkToMore: false,
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 pages = allFiles.filter(opts.filter).sort(opts.sort).slice(0, opts.limit)
+ function RecentNotes({ 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}`}>
+ <div class={`recent-notes ${displayClass ?? ""}`}>
<h3>{opts.title}</h3>
<ul class="recent-ul">
- {pages.map((page) => {
+ {pages.slice(0, opts.limit).map((page) => {
const title = page.frontmatter?.title
const tags = page.frontmatter?.tags ?? []
@@ -47,7 +47,7 @@
</div>
{page.dates && (
<p class="meta">
- <Date date={page.dates.modified} />
+ <Date date={getDate(cfg, page)!} />
</p>
)}
<ul class="tags">
--
Gitblit v1.10.0