-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
Copy pathutils.ts
83 lines (64 loc) · 2.1 KB
/
utils.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import { Route } from 'vitepress'
export const hashRE = /#.*$/
export const extRE = /(index)?\.(md|html)$/
export const endingSlashRE = /\/$/
export const outboundRE = /^[a-z]+:/i
export function isNullish(value: any): value is null | undefined {
return value === null || value === undefined
}
export function isArray(value: any): value is any[] {
return Array.isArray(value)
}
export function isExternal(path: string): boolean {
return outboundRE.test(path)
}
export function isActive(route: Route, path?: string): boolean {
if (path === undefined) {
return false
}
const routePath = normalize(`/${route.data.relativePath}`)
const pagePath = normalize(path)
return routePath === pagePath
}
export function normalize(path: string): string {
return decodeURI(path).replace(hashRE, '').replace(extRE, '')
}
export function joinUrl(base: string, path: string): string {
const baseEndsWithSlash = base.endsWith('/')
const pathStartsWithSlash = path.startsWith('/')
if (baseEndsWithSlash && pathStartsWithSlash) {
return base.slice(0, -1) + path
}
if (!baseEndsWithSlash && !pathStartsWithSlash) {
return `${base}/${path}`
}
return base + path
}
/**
* get the path without filename (the last segment). for example, if the given
* path is `/guide/getting-started.html`, this method will return `/guide/`.
* Always with a trailing slash.
*/
export function getPathDirName(path: string): string {
const segments = path.split('/')
if (segments[segments.length - 1]) {
segments.pop()
}
return ensureEndingSlash(segments.join('/'))
}
export function ensureSlash(path: string): string {
return ensureEndingSlash(ensureStartingSlash(path))
}
export function ensureStartingSlash(path: string): string {
return /^\//.test(path) ? path : `/${path}`
}
export function ensureEndingSlash(path: string): string {
return /(\.html|\/)$/.test(path) ? path : `${path}/`
}
/**
* Remove `.md` or `.html` extention from the given path. It also converts
* `index` to slush.
*/
export function removeExtention(path: string): string {
return path.replace(/(index)?(\.(md|html))?$/, '') || '/'
}