2023-05-31 21:01:23 +00:00
|
|
|
import { QuartzTransformerPlugin } from "../types"
|
2023-07-23 00:27:41 +00:00
|
|
|
import {
|
2023-08-19 22:52:25 +00:00
|
|
|
FullSlug,
|
2023-07-23 00:27:41 +00:00
|
|
|
RelativeURL,
|
2023-08-19 22:52:25 +00:00
|
|
|
SimpleSlug,
|
2023-08-13 04:16:34 +00:00
|
|
|
TransformOptions,
|
2023-08-07 00:09:29 +00:00
|
|
|
_stripSlashes,
|
2023-08-19 22:52:25 +00:00
|
|
|
simplifySlug,
|
2023-07-23 00:27:41 +00:00
|
|
|
splitAnchor,
|
2023-08-13 04:16:34 +00:00
|
|
|
transformLink,
|
2023-08-17 05:04:15 +00:00
|
|
|
} from "../../util/path"
|
2023-05-31 21:01:23 +00:00
|
|
|
import path from "path"
|
2023-07-23 00:27:41 +00:00
|
|
|
import { visit } from "unist-util-visit"
|
2023-05-31 21:01:23 +00:00
|
|
|
import isAbsoluteUrl from "is-absolute-url"
|
2024-01-05 08:29:34 +00:00
|
|
|
import { Root } from "hast"
|
2023-05-31 21:01:23 +00:00
|
|
|
|
|
|
|
interface Options {
|
|
|
|
/** How to resolve Markdown paths */
|
2023-08-13 04:16:34 +00:00
|
|
|
markdownLinkResolution: TransformOptions["strategy"]
|
2023-05-31 21:01:23 +00:00
|
|
|
/** Strips folders from a link so that it looks nice */
|
|
|
|
prettyLinks: boolean
|
2023-10-22 16:54:12 +00:00
|
|
|
openLinksInNewTab: boolean
|
2024-01-05 08:29:34 +00:00
|
|
|
lazyLoad: boolean
|
2023-05-31 21:01:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const defaultOptions: Options = {
|
2023-07-23 00:27:41 +00:00
|
|
|
markdownLinkResolution: "absolute",
|
2023-06-20 03:37:45 +00:00
|
|
|
prettyLinks: true,
|
2023-10-22 16:54:12 +00:00
|
|
|
openLinksInNewTab: false,
|
2024-01-05 08:29:34 +00:00
|
|
|
lazyLoad: false,
|
2023-05-31 21:01:23 +00:00
|
|
|
}
|
|
|
|
|
2023-06-20 03:37:45 +00:00
|
|
|
export const CrawlLinks: QuartzTransformerPlugin<Partial<Options> | undefined> = (userOpts) => {
|
2023-06-12 06:26:43 +00:00
|
|
|
const opts = { ...defaultOptions, ...userOpts }
|
|
|
|
return {
|
|
|
|
name: "LinkProcessing",
|
2023-07-24 07:04:01 +00:00
|
|
|
htmlPlugins(ctx) {
|
2023-07-23 00:27:41 +00:00
|
|
|
return [
|
|
|
|
() => {
|
2024-01-05 08:29:34 +00:00
|
|
|
return (tree: Root, file) => {
|
2023-08-19 22:52:25 +00:00
|
|
|
const curSlug = simplifySlug(file.data.slug!)
|
|
|
|
const outgoing: Set<SimpleSlug> = new Set()
|
2023-07-10 02:32:24 +00:00
|
|
|
|
2023-08-13 04:16:34 +00:00
|
|
|
const transformOptions: TransformOptions = {
|
|
|
|
strategy: opts.markdownLinkResolution,
|
|
|
|
allSlugs: ctx.allSlugs,
|
2023-06-12 06:26:43 +00:00
|
|
|
}
|
2023-07-16 06:02:12 +00:00
|
|
|
|
2023-07-23 00:27:41 +00:00
|
|
|
visit(tree, "element", (node, _index, _parent) => {
|
|
|
|
// rewrite all links
|
|
|
|
if (
|
|
|
|
node.tagName === "a" &&
|
|
|
|
node.properties &&
|
|
|
|
typeof node.properties.href === "string"
|
|
|
|
) {
|
|
|
|
let dest = node.properties.href as RelativeURL
|
2024-01-05 08:29:34 +00:00
|
|
|
const classes = (node.properties.className ?? []) as string[]
|
|
|
|
classes.push(isAbsoluteUrl(dest) ? "external" : "internal")
|
|
|
|
|
|
|
|
// Check if the link has alias text
|
|
|
|
if (
|
|
|
|
node.children.length === 1 &&
|
|
|
|
node.children[0].type === "text" &&
|
|
|
|
node.children[0].value !== dest
|
|
|
|
) {
|
|
|
|
// Add the 'alias' class if the text content is not the same as the href
|
|
|
|
classes.push("alias")
|
|
|
|
}
|
|
|
|
node.properties.className = classes
|
2023-05-31 21:01:23 +00:00
|
|
|
|
2023-10-22 16:54:12 +00:00
|
|
|
if (opts.openLinksInNewTab) {
|
|
|
|
node.properties.target = "_blank"
|
|
|
|
}
|
|
|
|
|
2023-07-23 00:27:41 +00:00
|
|
|
// don't process external links or intra-document anchors
|
2023-09-07 03:25:38 +00:00
|
|
|
const isInternal = !(isAbsoluteUrl(dest) || dest.startsWith("#"))
|
|
|
|
if (isInternal) {
|
2023-08-19 22:52:25 +00:00
|
|
|
dest = node.properties.href = transformLink(
|
|
|
|
file.data.slug!,
|
|
|
|
dest,
|
|
|
|
transformOptions,
|
|
|
|
)
|
2023-08-23 06:33:58 +00:00
|
|
|
|
|
|
|
// url.resolve is considered legacy
|
|
|
|
// WHATWG equivalent https://nodejs.dev/en/api/v18/url/#urlresolvefrom-to
|
2023-08-23 19:18:50 +00:00
|
|
|
const url = new URL(dest, `https://base.com/${curSlug}`)
|
2023-08-19 23:28:44 +00:00
|
|
|
const canonicalDest = url.pathname
|
2024-01-05 08:29:34 +00:00
|
|
|
let [destCanonical, _destAnchor] = splitAnchor(canonicalDest)
|
|
|
|
if (destCanonical.endsWith("/")) {
|
|
|
|
destCanonical += "index"
|
|
|
|
}
|
2023-08-22 16:16:55 +00:00
|
|
|
|
2023-08-23 06:33:58 +00:00
|
|
|
// need to decodeURIComponent here as WHATWG URL percent-encodes everything
|
2024-01-05 08:29:34 +00:00
|
|
|
const full = decodeURIComponent(_stripSlashes(destCanonical, true)) as FullSlug
|
|
|
|
const simple = simplifySlug(full)
|
2023-08-19 22:52:25 +00:00
|
|
|
outgoing.add(simple)
|
2024-01-05 08:29:34 +00:00
|
|
|
node.properties["data-slug"] = full
|
2023-07-23 00:27:41 +00:00
|
|
|
}
|
2023-06-20 03:37:45 +00:00
|
|
|
|
2023-07-23 00:27:41 +00:00
|
|
|
// rewrite link internals if prettylinks is on
|
|
|
|
if (
|
|
|
|
opts.prettyLinks &&
|
2023-09-07 03:25:38 +00:00
|
|
|
isInternal &&
|
2023-07-23 00:27:41 +00:00
|
|
|
node.children.length === 1 &&
|
2023-08-12 06:40:06 +00:00
|
|
|
node.children[0].type === "text" &&
|
|
|
|
!node.children[0].value.startsWith("#")
|
2023-07-23 00:27:41 +00:00
|
|
|
) {
|
|
|
|
node.children[0].value = path.basename(node.children[0].value)
|
|
|
|
}
|
2023-06-12 06:26:43 +00:00
|
|
|
}
|
2023-05-31 21:01:23 +00:00
|
|
|
|
2023-07-23 00:27:41 +00:00
|
|
|
// transform all other resources that may use links
|
|
|
|
if (
|
|
|
|
["img", "video", "audio", "iframe"].includes(node.tagName) &&
|
|
|
|
node.properties &&
|
|
|
|
typeof node.properties.src === "string"
|
|
|
|
) {
|
2024-01-05 08:29:34 +00:00
|
|
|
if (opts.lazyLoad) {
|
|
|
|
node.properties.loading = "lazy"
|
|
|
|
}
|
|
|
|
|
2023-07-23 00:27:41 +00:00
|
|
|
if (!isAbsoluteUrl(node.properties.src)) {
|
2023-08-07 03:52:17 +00:00
|
|
|
let dest = node.properties.src as RelativeURL
|
2023-08-19 22:52:25 +00:00
|
|
|
dest = node.properties.src = transformLink(
|
|
|
|
file.data.slug!,
|
|
|
|
dest,
|
|
|
|
transformOptions,
|
|
|
|
)
|
2023-08-17 07:55:28 +00:00
|
|
|
node.properties.src = dest
|
2023-07-23 00:27:41 +00:00
|
|
|
}
|
2023-06-12 06:26:43 +00:00
|
|
|
}
|
2023-07-23 00:27:41 +00:00
|
|
|
})
|
2023-05-31 21:01:23 +00:00
|
|
|
|
2023-07-23 00:27:41 +00:00
|
|
|
file.data.links = [...outgoing]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
2023-05-31 21:01:23 +00:00
|
|
|
}
|
|
|
|
}
|
2023-06-20 03:37:45 +00:00
|
|
|
|
2023-07-23 00:27:41 +00:00
|
|
|
declare module "vfile" {
|
2023-06-20 03:37:45 +00:00
|
|
|
interface DataMap {
|
2023-08-19 22:52:25 +00:00
|
|
|
links: SimpleSlug[]
|
2023-06-20 03:37:45 +00:00
|
|
|
}
|
|
|
|
}
|