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
|
|
|
|
2023-05-31 21:01:23 +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 {
|
2023-07-04 17:08:32 +00:00
|
|
|
// remove index
|
2023-07-02 20:08:29 +00:00
|
|
|
if (fp.endsWith("index")) {
|
|
|
|
fp = fp.slice(0, -"index".length)
|
|
|
|
}
|
|
|
|
|
2023-07-04 17:08:32 +00:00
|
|
|
// 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
|
|
|
|
}
|
|
|
|
|
2023-05-31 21:01:23 +00:00
|
|
|
export function slugify(s: string): string {
|
2023-07-04 17:08:32 +00:00
|
|
|
let [fp, anchor] = s.split("#", 2)
|
2023-06-13 05:41:42 +00:00
|
|
|
const sluggedAnchor = anchor === undefined ? "" : "#" + slugAnchor(anchor)
|
2023-05-31 21:01:23 +00:00
|
|
|
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
|
2023-05-31 21:01:23 +00:00
|
|
|
.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
|
|
|
}
|
2023-05-31 21:01:23 +00:00
|
|
|
|
|
|
|
export function relative(src: string, dest: string): string {
|
2023-07-05 01:02:59 +00:00
|
|
|
return path.relative(src, dest)
|
2023-05-31 21:01:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export const QUARTZ = "quartz"
|