roadmap/quartz/path.ts

67 lines
1.6 KiB
TypeScript
Raw Normal View History

2023-05-30 15:02:20 +00:00
import path from 'path'
2023-06-13 05:41:42 +00:00
import { slug as slugAnchor } from 'github-slugger'
2023-05-30 15:02:20 +00:00
function slugSegment(s: string): string {
return s.replace(/\s/g, '-')
}
2023-07-02 20:08:29 +00:00
// on the client, 'index' isn't ever rendered so we should clean it up
export function clientSideSlug(fp: string): string {
// remove index
2023-07-02 20:08:29 +00:00
if (fp.endsWith("index")) {
fp = fp.slice(0, -"index".length)
}
// remove trailing slash
if (fp.endsWith("/")) {
fp = fp.slice(0, -1)
}
2023-07-02 20:08:29 +00:00
return fp
}
2023-06-17 02:41:59 +00:00
export function trimPathSuffix(fp: string): string {
2023-07-02 20:08:29 +00:00
fp = clientSideSlug(fp)
2023-06-17 02:41:59 +00:00
let [cleanPath, anchor] = fp.split("#", 2)
anchor = anchor === undefined ? "" : "#" + anchor
return cleanPath + anchor
}
export function slugify(s: string): string {
let [fp, anchor] = s.split("#", 2)
2023-06-13 05:41:42 +00:00
const sluggedAnchor = anchor === undefined ? "" : "#" + slugAnchor(anchor)
const withoutFileExt = fp.replace(new RegExp(path.extname(fp) + '$'), '')
const rawSlugSegments = withoutFileExt.split(path.sep)
const slugParts: string = rawSlugSegments
.map((segment) => slugSegment(segment))
.join(path.posix.sep)
.replace(/\/$/, '')
return path.normalize(slugParts) + sluggedAnchor
2023-05-30 15:02:20 +00:00
}
// resolve /a/b/c to ../../
export function resolveToRoot(slug: string): string {
2023-06-17 02:41:59 +00:00
let fp = trimPathSuffix(slug)
2023-05-30 15:02:20 +00:00
2023-06-18 17:47:07 +00:00
if (fp === "") {
2023-06-03 19:07:19 +00:00
return "."
}
return "./" + fp
.split('/')
.filter(x => x !== '')
.map(_ => '..')
.join('/')
}
export function relativeToRoot(slug: string, fp: string): string {
return path.join(resolveToRoot(slug), fp)
2023-05-30 15:02:20 +00:00
}
export function relative(src: string, dest: string): string {
return path.relative(src, dest)
}
export const QUARTZ = "quartz"