2024-02-13 23:53:44 -05:00
|
|
|
import { QuartzComponent, QuartzComponentConstructor, QuartzComponentProps } from "./types"
|
2023-06-19 20:37:45 -07:00
|
|
|
import style from "./styles/backlinks.scss"
|
2023-08-19 15:52:25 -07:00
|
|
|
import { resolveRelative, simplifySlug } from "../util/path"
|
2024-02-04 20:57:10 -08:00
|
|
|
import { i18n } from "../i18n"
|
2024-01-30 00:51:13 -05:00
|
|
|
import { classNames } from "../util/lang"
|
2023-06-19 20:37:45 -07:00
|
|
|
|
2024-02-13 23:53:44 -05:00
|
|
|
const Backlinks: QuartzComponent = ({
|
|
|
|
fileData,
|
|
|
|
allFiles,
|
|
|
|
displayClass,
|
|
|
|
cfg,
|
|
|
|
}: QuartzComponentProps) => {
|
2023-08-19 15:52:25 -07:00
|
|
|
const slug = simplifySlug(fileData.slug!)
|
2023-07-22 17:27:41 -07:00
|
|
|
const backlinkFiles = allFiles.filter((file) => file.links?.includes(slug))
|
|
|
|
return (
|
2024-01-30 00:51:13 -05:00
|
|
|
<div class={classNames(displayClass, "backlinks")}>
|
2024-02-04 20:57:10 -08:00
|
|
|
<h3>{i18n(cfg.locale).components.backlinks.title}</h3>
|
2023-07-22 17:27:41 -07:00
|
|
|
<ul class="overflow">
|
|
|
|
{backlinkFiles.length > 0 ? (
|
|
|
|
backlinkFiles.map((f) => (
|
|
|
|
<li>
|
2023-08-19 15:52:25 -07:00
|
|
|
<a href={resolveRelative(fileData.slug!, f.slug!)} class="internal">
|
2023-07-22 17:27:41 -07:00
|
|
|
{f.frontmatter?.title}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
))
|
|
|
|
) : (
|
2024-02-04 20:57:10 -08:00
|
|
|
<li>{i18n(cfg.locale).components.backlinks.noBacklinksFound}</li>
|
2023-07-22 17:27:41 -07:00
|
|
|
)}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
)
|
2023-06-19 20:37:45 -07:00
|
|
|
}
|
|
|
|
|
2023-07-15 23:02:12 -07:00
|
|
|
Backlinks.css = style
|
2023-06-19 20:37:45 -07:00
|
|
|
export default (() => Backlinks) satisfies QuartzComponentConstructor
|