2023-09-29 08:26:15 +00:00
|
|
|
|
import { QuartzComponentConstructor, QuartzComponentProps } from "./types"
|
|
|
|
|
import breadcrumbsStyle from "./styles/breadcrumbs.scss"
|
|
|
|
|
import { FullSlug, SimpleSlug, resolveRelative } from "../util/path"
|
|
|
|
|
import { QuartzPluginData } from "../plugins/vfile"
|
2024-02-05 10:45:36 +00:00
|
|
|
|
import { classNames } from "../util/lang"
|
2023-09-29 08:26:15 +00:00
|
|
|
|
|
|
|
|
|
type CrumbData = {
|
|
|
|
|
displayName: string
|
|
|
|
|
path: string
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface BreadcrumbOptions {
|
|
|
|
|
/**
|
|
|
|
|
* Symbol between crumbs
|
|
|
|
|
*/
|
|
|
|
|
spacerSymbol: string
|
|
|
|
|
/**
|
|
|
|
|
* Name of first crumb
|
|
|
|
|
*/
|
|
|
|
|
rootName: string
|
|
|
|
|
/**
|
2024-02-05 10:45:36 +00:00
|
|
|
|
* Whether to look up frontmatter title for folders (could cause performance problems with big vaults)
|
2023-09-29 08:26:15 +00:00
|
|
|
|
*/
|
|
|
|
|
resolveFrontmatterTitle: boolean
|
|
|
|
|
/**
|
2024-02-05 10:45:36 +00:00
|
|
|
|
* Whether to display breadcrumbs on root `index.md`
|
2023-09-29 08:26:15 +00:00
|
|
|
|
*/
|
|
|
|
|
hideOnRoot: boolean
|
2024-01-05 08:29:34 +00:00
|
|
|
|
/**
|
2024-02-05 10:45:36 +00:00
|
|
|
|
* Whether to display the current page in the breadcrumbs.
|
2024-01-05 08:29:34 +00:00
|
|
|
|
*/
|
|
|
|
|
showCurrentPage: boolean
|
2023-09-29 08:26:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const defaultOptions: BreadcrumbOptions = {
|
2023-11-12 04:46:29 +00:00
|
|
|
|
spacerSymbol: "❯",
|
2023-09-29 08:26:15 +00:00
|
|
|
|
rootName: "Home",
|
2023-11-12 04:46:29 +00:00
|
|
|
|
resolveFrontmatterTitle: true,
|
2023-09-29 08:26:15 +00:00
|
|
|
|
hideOnRoot: true,
|
2024-01-05 08:29:34 +00:00
|
|
|
|
showCurrentPage: true,
|
2023-09-29 08:26:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function formatCrumb(displayName: string, baseSlug: FullSlug, currentSlug: SimpleSlug): CrumbData {
|
2023-10-05 16:19:56 +00:00
|
|
|
|
return {
|
|
|
|
|
displayName: displayName.replaceAll("-", " "),
|
|
|
|
|
path: resolveRelative(baseSlug, currentSlug),
|
|
|
|
|
}
|
2023-09-29 08:26:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default ((opts?: Partial<BreadcrumbOptions>) => {
|
|
|
|
|
// Merge options with defaults
|
|
|
|
|
const options: BreadcrumbOptions = { ...defaultOptions, ...opts }
|
|
|
|
|
|
2023-11-12 05:06:37 +00:00
|
|
|
|
// computed index of folder name to its associated file data
|
|
|
|
|
let folderIndex: Map<string, QuartzPluginData> | undefined
|
|
|
|
|
|
2023-10-02 00:20:55 +00:00
|
|
|
|
function Breadcrumbs({ fileData, allFiles, displayClass }: QuartzComponentProps) {
|
2023-09-29 08:26:15 +00:00
|
|
|
|
// Hide crumbs on root if enabled
|
|
|
|
|
if (options.hideOnRoot && fileData.slug === "index") {
|
|
|
|
|
return <></>
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Format entry for root element
|
2023-10-05 16:19:56 +00:00
|
|
|
|
const firstEntry = formatCrumb(options.rootName, fileData.slug!, "/" as SimpleSlug)
|
2023-09-29 08:26:15 +00:00
|
|
|
|
const crumbs: CrumbData[] = [firstEntry]
|
|
|
|
|
|
2023-11-12 05:06:37 +00:00
|
|
|
|
if (!folderIndex && options.resolveFrontmatterTitle) {
|
|
|
|
|
folderIndex = new Map()
|
|
|
|
|
// construct the index for the first time
|
|
|
|
|
for (const file of allFiles) {
|
|
|
|
|
if (file.slug?.endsWith("index")) {
|
2024-01-05 08:29:34 +00:00
|
|
|
|
const folderParts = file.slug?.split("/")
|
2024-02-05 10:45:36 +00:00
|
|
|
|
// 2nd last to exclude the /index
|
|
|
|
|
const folderName = folderParts?.at(-2)
|
|
|
|
|
if (folderName) {
|
2023-11-12 05:06:37 +00:00
|
|
|
|
folderIndex.set(folderName, file)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-05 16:19:56 +00:00
|
|
|
|
// Split slug into hierarchy/parts
|
|
|
|
|
const slugParts = fileData.slug?.split("/")
|
|
|
|
|
if (slugParts) {
|
2023-09-29 08:26:15 +00:00
|
|
|
|
// full path until current part
|
2023-10-05 16:19:56 +00:00
|
|
|
|
let currentPath = ""
|
|
|
|
|
for (let i = 0; i < slugParts.length - 1; i++) {
|
2023-11-12 05:06:37 +00:00
|
|
|
|
let curPathSegment = slugParts[i]
|
2023-09-29 08:26:15 +00:00
|
|
|
|
|
|
|
|
|
// Try to resolve frontmatter folder title
|
2023-11-12 05:06:37 +00:00
|
|
|
|
const currentFile = folderIndex?.get(curPathSegment)
|
|
|
|
|
if (currentFile) {
|
2024-01-05 08:29:34 +00:00
|
|
|
|
const title = currentFile.frontmatter!.title
|
|
|
|
|
if (title !== "index") {
|
|
|
|
|
curPathSegment = title
|
|
|
|
|
}
|
2023-09-29 08:26:15 +00:00
|
|
|
|
}
|
2023-11-12 05:06:37 +00:00
|
|
|
|
|
2023-10-05 16:19:56 +00:00
|
|
|
|
// Add current slug to full path
|
|
|
|
|
currentPath += slugParts[i] + "/"
|
2023-09-29 08:26:15 +00:00
|
|
|
|
|
|
|
|
|
// Format and add current crumb
|
2023-11-12 05:06:37 +00:00
|
|
|
|
const crumb = formatCrumb(curPathSegment, fileData.slug!, currentPath as SimpleSlug)
|
2023-09-29 08:26:15 +00:00
|
|
|
|
crumbs.push(crumb)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Add current file to crumb (can directly use frontmatter title)
|
2024-02-05 10:45:36 +00:00
|
|
|
|
if (options.showCurrentPage && slugParts.at(-1) !== "index") {
|
2024-01-05 08:29:34 +00:00
|
|
|
|
crumbs.push({
|
|
|
|
|
displayName: fileData.frontmatter!.title,
|
|
|
|
|
path: "",
|
|
|
|
|
})
|
|
|
|
|
}
|
2023-09-29 08:26:15 +00:00
|
|
|
|
}
|
2024-02-05 10:45:36 +00:00
|
|
|
|
|
2023-09-29 08:26:15 +00:00
|
|
|
|
return (
|
2024-02-05 10:45:36 +00:00
|
|
|
|
<nav class={classNames(displayClass, "breadcrumb-container")} aria-label="breadcrumbs">
|
2023-09-29 08:26:15 +00:00
|
|
|
|
{crumbs.map((crumb, index) => (
|
|
|
|
|
<div class="breadcrumb-element">
|
|
|
|
|
<a href={crumb.path}>{crumb.displayName}</a>
|
|
|
|
|
{index !== crumbs.length - 1 && <p>{` ${options.spacerSymbol} `}</p>}
|
|
|
|
|
</div>
|
|
|
|
|
))}
|
|
|
|
|
</nav>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
Breadcrumbs.css = breadcrumbsStyle
|
|
|
|
|
return Breadcrumbs
|
|
|
|
|
}) satisfies QuartzComponentConstructor
|