cyberware/quartz/components/Backlinks.tsx

37 lines
1.1 KiB
TypeScript
Raw Normal View History

import { QuartzComponent, QuartzComponentConstructor, QuartzComponentProps } from "./types"
2023-06-20 03:37:45 +00:00
import style from "./styles/backlinks.scss"
import { resolveRelative, simplifySlug } from "../util/path"
import { i18n } from "../i18n"
import { classNames } from "../util/lang"
2023-06-20 03:37:45 +00:00
const Backlinks: QuartzComponent = ({
fileData,
allFiles,
displayClass,
cfg,
}: QuartzComponentProps) => {
const slug = simplifySlug(fileData.slug!)
2023-07-23 00:27:41 +00:00
const backlinkFiles = allFiles.filter((file) => file.links?.includes(slug))
return (
<div class={classNames(displayClass, "backlinks")}>
<h3>{i18n(cfg.locale).components.backlinks.title}</h3>
2023-07-23 00:27:41 +00:00
<ul class="overflow">
{backlinkFiles.length > 0 ? (
backlinkFiles.map((f) => (
<li>
<a href={resolveRelative(fileData.slug!, f.slug!)} class="internal">
2023-07-23 00:27:41 +00:00
{f.frontmatter?.title}
</a>
</li>
))
) : (
<li>{i18n(cfg.locale).components.backlinks.noBacklinksFound}</li>
2023-07-23 00:27:41 +00:00
)}
</ul>
</div>
)
2023-06-20 03:37:45 +00:00
}
Backlinks.css = style
2023-06-20 03:37:45 +00:00
export default (() => Backlinks) satisfies QuartzComponentConstructor