quartz-research-note/quartz/plugins/transformers/links.ts

171 lines
5.8 KiB
TypeScript
Raw Normal View History

import { QuartzTransformerPlugin } from "../types"
2023-07-23 00:27:41 +00:00
import {
FullSlug,
2023-07-23 00:27:41 +00:00
RelativeURL,
SimpleSlug,
TransformOptions,
_stripSlashes,
simplifySlug,
2023-07-23 00:27:41 +00:00
splitAnchor,
transformLink,
} from "../../util/path"
import path from "path"
2023-07-23 00:27:41 +00:00
import { visit } from "unist-util-visit"
import isAbsoluteUrl from "is-absolute-url"
2024-01-05 08:29:34 +00:00
import { Root } from "hast"
interface Options {
/** How to resolve Markdown paths */
markdownLinkResolution: TransformOptions["strategy"]
/** Strips folders from a link so that it looks nice */
prettyLinks: boolean
openLinksInNewTab: boolean
2024-01-05 08:29:34 +00:00
lazyLoad: boolean
2024-02-05 10:45:36 +00:00
externalLinkIcon: boolean
}
const defaultOptions: Options = {
2023-07-23 00:27:41 +00:00
markdownLinkResolution: "absolute",
2023-06-20 03:37:45 +00:00
prettyLinks: true,
openLinksInNewTab: false,
2024-01-05 08:29:34 +00:00
lazyLoad: false,
2024-02-05 10:45:36 +00:00
externalLinkIcon: true,
}
2023-06-20 03:37:45 +00:00
export const CrawlLinks: QuartzTransformerPlugin<Partial<Options> | undefined> = (userOpts) => {
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) => {
const curSlug = simplifySlug(file.data.slug!)
const outgoing: Set<SimpleSlug> = new Set()
2023-07-10 02:32:24 +00:00
const transformOptions: TransformOptions = {
strategy: opts.markdownLinkResolution,
allSlugs: ctx.allSlugs,
}
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[]
2024-02-05 10:45:36 +00:00
const isExternal = isAbsoluteUrl(dest)
classes.push(isExternal ? "external" : "internal")
if (isExternal && opts.externalLinkIcon) {
node.children.push({
type: "element",
tagName: "svg",
properties: {
class: "external-icon",
viewBox: "0 0 512 512",
},
children: [
{
type: "element",
tagName: "path",
properties: {
d: "M320 0H288V64h32 82.7L201.4 265.4 178.7 288 224 333.3l22.6-22.6L448 109.3V192v32h64V192 32 0H480 320zM32 32H0V64 480v32H32 456h32V480 352 320H424v32 96H64V96h96 32V32H160 32z",
},
children: [],
},
],
})
}
2024-01-05 08:29:34 +00:00
// 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
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) {
dest = node.properties.href = transformLink(
file.data.slug!,
dest,
transformOptions,
)
// 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
// 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)
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-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)) {
let dest = node.properties.src as RelativeURL
dest = node.properties.src = transformLink(
file.data.slug!,
dest,
transformOptions,
)
node.properties.src = dest
2023-07-23 00:27:41 +00:00
}
}
2023-07-23 00:27:41 +00:00
})
2023-07-23 00:27:41 +00:00
file.data.links = [...outgoing]
}
},
]
},
}
}
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 {
links: SimpleSlug[]
2023-06-20 03:37:45 +00:00
}
}