a403850ca2
This reverts commit b10a88d5d2.
115 lines
3.3 KiB
TypeScript
115 lines
3.3 KiB
TypeScript
import { PageLayout, SharedLayout } from "./quartz/cfg"
|
|
import * as Component from "./quartz/components"
|
|
|
|
// components shared across all pages
|
|
export const sharedPageComponents: SharedLayout = {
|
|
head: Component.Head(),
|
|
header: [],
|
|
afterBody: [],
|
|
footer: Component.Footer({
|
|
links: {
|
|
GitHub: "https://github.com/jackyzha0/quartz",
|
|
"Discord Community": "https://discord.gg/cRFFHYye7t",
|
|
},
|
|
}),
|
|
}
|
|
|
|
// components for pages that display a single page (e.g. a single note)
|
|
export const defaultContentPageLayout: PageLayout = {
|
|
beforeBody: [
|
|
Component.ConditionalRender({
|
|
component: Component.Breadcrumbs(),
|
|
condition: (page) => page.fileData.slug !== "index",
|
|
}),
|
|
Component.ArticleTitle(),
|
|
Component.ContentMeta(),
|
|
Component.TagList(),
|
|
],
|
|
left: [
|
|
Component.PageTitle(),
|
|
Component.MobileOnly(Component.Spacer()),
|
|
Component.Flex({
|
|
components: [
|
|
{
|
|
Component: Component.Search(),
|
|
grow: true,
|
|
},
|
|
{ Component: Component.Darkmode() },
|
|
{ Component: Component.ReaderMode() },
|
|
],
|
|
}),
|
|
Component.Explorer({
|
|
filterFn: (node) => {
|
|
// 1. 숨기고 싶은 키워드 (index.md의 title에 적은 것과 폴더명 모두 포함)
|
|
const omitWords = ["extra", "template", "note", "volume"]
|
|
|
|
// 파일(페이지)은 기본적으로 보여줍니다.
|
|
if (node.file) return true
|
|
|
|
// 2. node가 가진 다양한 이름 속성들을 싹 다 긁어모읍니다.
|
|
const namesToCheck = [
|
|
node.name,
|
|
node.displayName,
|
|
node.file?.frontmatter?.title // index.md가 있다면 그 안의 title까지
|
|
]
|
|
|
|
// 3. 하나라도 omitWords에 포함되어 있는지 확인합니다.
|
|
const shouldOmit = namesToCheck.some(name => {
|
|
const lowerName = name?.toLowerCase() ?? ""
|
|
return omitWords.some(word => lowerName.includes(word))
|
|
})
|
|
|
|
return !shouldOmit
|
|
},
|
|
}),
|
|
],
|
|
right: [
|
|
Component.Graph(),
|
|
Component.DesktopOnly(Component.TableOfContents()),
|
|
Component.Backlinks(),
|
|
],
|
|
}
|
|
|
|
// components for pages that display lists of pages (e.g. tags or folders)
|
|
export const defaultListPageLayout: PageLayout = {
|
|
beforeBody: [Component.Breadcrumbs(), Component.ArticleTitle(), Component.ContentMeta()],
|
|
left: [
|
|
Component.PageTitle(),
|
|
Component.MobileOnly(Component.Spacer()),
|
|
Component.Flex({
|
|
components: [
|
|
{
|
|
Component: Component.Search(),
|
|
grow: true,
|
|
},
|
|
{ Component: Component.Darkmode() },
|
|
],
|
|
}),
|
|
Component.Explorer({
|
|
filterFn: (node) => {
|
|
// 1. 숨기고 싶은 키워드 (index.md의 title에 적은 것과 폴더명 모두 포함)
|
|
const omitWords = ["extra", "template", "note", "volume"]
|
|
|
|
// 파일(페이지)은 기본적으로 보여줍니다.
|
|
if (node.file) return true
|
|
|
|
// 2. node가 가진 다양한 이름 속성들을 싹 다 긁어모읍니다.
|
|
const namesToCheck = [
|
|
node.name,
|
|
node.displayName,
|
|
node.file?.frontmatter?.title // index.md가 있다면 그 안의 title까지
|
|
]
|
|
|
|
// 3. 하나라도 omitWords에 포함되어 있는지 확인합니다.
|
|
const shouldOmit = namesToCheck.some(name => {
|
|
const lowerName = name?.toLowerCase() ?? ""
|
|
return omitWords.some(word => lowerName.includes(word))
|
|
})
|
|
|
|
return !shouldOmit
|
|
},
|
|
}),
|
|
],
|
|
right: [],
|
|
}
|