import { 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" interface Options { title: string limit: number linkToMore: SimpleSlug | false filter: (f: QuartzPluginData) => boolean sort: (f1: QuartzPluginData, f2: QuartzPluginData) => number } const defaultOptions: Options = { title: "Recent Notes", limit: 3, linkToMore: false, filter: () => true, sort: byDateAndAlphabetical, } export default ((userOpts?: Partial) => { const opts = { ...defaultOptions, ...userOpts } function RecentNotes(props: QuartzComponentProps) { const { allFiles, fileData } = props const pages = allFiles.filter(opts.filter).sort(opts.sort).slice(0, opts.limit) const remaining = Math.max(0, pages.length - opts.limit) return (

{opts.title}

{opts.linkToMore && remaining > 0 && (

See {remaining} more →

)}
) } RecentNotes.css = style return RecentNotes }) satisfies QuartzComponentConstructor