quartz-research-note/quartz/plugins/emitters/contentIndex.ts

143 lines
4.3 KiB
TypeScript
Raw Normal View History

2023-07-01 20:35:27 +00:00
import { GlobalConfiguration } from "../../cfg"
2023-08-24 15:56:40 +00:00
import { getDate } from "../../components/Date"
2023-09-07 04:47:59 +00:00
import { escapeHTML } from "../../util/escape"
import { FilePath, FullSlug, SimpleSlug, simplifySlug } from "../../util/path"
2023-06-17 02:41:59 +00:00
import { QuartzEmitterPlugin } from "../types"
import path from "path"
export type ContentIndex = Map<FullSlug, ContentDetails>
2023-06-18 17:47:07 +00:00
export type ContentDetails = {
2023-07-23 00:27:41 +00:00
title: string
links: SimpleSlug[]
2023-07-23 00:27:41 +00:00
tags: string[]
content: string
date?: Date
description?: string
2023-06-18 17:47:07 +00:00
}
2023-06-17 02:41:59 +00:00
2023-07-01 20:35:27 +00:00
interface Options {
enableSiteMap: boolean
enableRSS: boolean
2023-09-13 02:18:44 +00:00
rssLimit?: number
includeEmptyFiles: boolean
2023-07-01 20:35:27 +00:00
}
const defaultOptions: Options = {
enableSiteMap: true,
enableRSS: true,
2023-09-13 02:18:44 +00:00
rssLimit: 10,
includeEmptyFiles: true,
2023-07-01 20:35:27 +00:00
}
function generateSiteMap(cfg: GlobalConfiguration, idx: ContentIndex): string {
2023-07-13 07:19:35 +00:00
const base = cfg.baseUrl ?? ""
const createURLEntry = (slug: SimpleSlug, content: ContentDetails): string => `<url>
2023-09-07 04:47:59 +00:00
<loc>https://${base}/${encodeURI(slug)}</loc>
2023-07-01 20:35:27 +00:00
<lastmod>${content.date?.toISOString()}</lastmod>
</url>`
2023-07-23 00:27:41 +00:00
const urls = Array.from(idx)
.map(([slug, content]) => createURLEntry(simplifySlug(slug), content))
2023-07-23 00:27:41 +00:00
.join("")
2023-07-01 20:35:27 +00:00
return `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml">${urls}</urlset>`
}
2023-09-13 02:18:44 +00:00
function generateRSSFeed(cfg: GlobalConfiguration, idx: ContentIndex, limit?: number): string {
2023-07-13 07:19:35 +00:00
const base = cfg.baseUrl ?? ""
const root = `https://${base}`
2023-07-01 20:35:27 +00:00
2023-08-24 05:57:49 +00:00
const createURLEntry = (slug: SimpleSlug, content: ContentDetails): string => `<item>
2023-09-07 04:47:59 +00:00
<title>${escapeHTML(content.title)}</title>
<link>${root}/${encodeURI(slug)}</link>
<guid>${root}/${encodeURI(slug)}</guid>
2023-07-01 20:35:27 +00:00
<description>${content.description}</description>
<pubDate>${content.date?.toUTCString()}</pubDate>
2023-08-24 05:57:49 +00:00
</item>`
2023-07-01 20:35:27 +00:00
2023-07-23 00:27:41 +00:00
const items = Array.from(idx)
.map(([slug, content]) => createURLEntry(simplifySlug(slug), content))
2023-09-13 02:18:44 +00:00
.slice(0, limit ?? idx.size)
2023-07-23 00:27:41 +00:00
.join("")
2023-09-13 02:18:44 +00:00
2023-08-24 05:57:49 +00:00
return `<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
2023-07-01 20:35:27 +00:00
<channel>
2023-09-07 04:47:59 +00:00
<title>${escapeHTML(cfg.pageTitle)}</title>
2023-07-01 20:35:27 +00:00
<link>${root}</link>
2023-09-13 02:18:44 +00:00
<description>${!!limit ? `Last ${limit} notes` : "Recent notes"} on ${
cfg.pageTitle
}</description>
2023-07-01 20:35:27 +00:00
<generator>Quartz -- quartz.jzhao.xyz</generator>
2023-08-24 05:57:49 +00:00
${items}
2023-07-01 20:35:27 +00:00
</channel>
</rss>`
}
export const ContentIndex: QuartzEmitterPlugin<Partial<Options>> = (opts) => {
2023-07-01 20:35:27 +00:00
opts = { ...defaultOptions, ...opts }
2023-06-17 02:41:59 +00:00
return {
name: "ContentIndex",
async emit(ctx, content, _resources, emit) {
const cfg = ctx.cfg.configuration
const emitted: FilePath[] = []
2023-06-17 02:41:59 +00:00
const linkIndex: ContentIndex = new Map()
2023-06-20 03:37:45 +00:00
for (const [_tree, file] of content) {
const slug = file.data.slug!
2023-08-24 15:56:40 +00:00
const date = getDate(ctx.cfg.configuration, file.data) ?? new Date()
if (opts?.includeEmptyFiles || (file.data.text && file.data.text !== "")) {
2023-07-23 00:27:41 +00:00
linkIndex.set(slug, {
title: file.data.frontmatter?.title!,
links: file.data.links ?? [],
tags: file.data.frontmatter?.tags ?? [],
content: file.data.text ?? "",
date: date,
description: file.data.description ?? "",
})
}
2023-06-17 02:41:59 +00:00
}
2023-07-01 20:35:27 +00:00
if (opts?.enableSiteMap) {
2023-08-11 04:29:11 +00:00
emitted.push(
await emit({
content: generateSiteMap(cfg, linkIndex),
slug: "sitemap" as FullSlug,
2023-08-11 04:29:11 +00:00
ext: ".xml",
}),
)
2023-07-01 20:35:27 +00:00
}
if (opts?.enableRSS) {
2023-08-11 04:29:11 +00:00
emitted.push(
await emit({
2023-09-13 02:18:44 +00:00
content: generateRSSFeed(cfg, linkIndex, opts.rssLimit),
slug: "index" as FullSlug,
2023-08-11 04:29:11 +00:00
ext: ".xml",
}),
)
2023-07-01 20:35:27 +00:00
}
const fp = path.join("static", "contentIndex") as FullSlug
2023-07-01 20:35:27 +00:00
const simplifiedIndex = Object.fromEntries(
Array.from(linkIndex).map(([slug, content]) => {
// remove description and from content index as nothing downstream
// actually uses it. we only keep it in the index as we need it
// for the RSS feed
delete content.description
delete content.date
return [slug, content]
2023-07-23 00:27:41 +00:00
}),
2023-07-01 20:35:27 +00:00
)
2023-08-11 04:29:11 +00:00
emitted.push(
await emit({
content: JSON.stringify(simplifiedIndex),
slug: fp,
ext: ".json",
}),
)
2023-06-17 02:41:59 +00:00
2023-07-01 20:35:27 +00:00
return emitted
2023-06-17 02:41:59 +00:00
},
getQuartzComponents: () => [],
}
}