-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
/
Copy pathbase.js
107 lines (85 loc) · 2.44 KB
/
base.js
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
import {
cleanPath,
getPath,
isAbsolutePath,
replaceSlug,
resolvePath,
stringifyQuery,
} from '../util.js';
import { noop } from '../../util/core.js';
export class History {
#cached = {};
constructor(config) {
this.config = config;
}
#getAlias(path, alias, last) {
const match = Object.keys(alias).filter(key => {
const re =
this.#cached[key] || (this.#cached[key] = new RegExp(`^${key}$`));
return re.test(path) && path !== last;
})[0];
return match
? this.#getAlias(
path.replace(this.#cached[match], alias[match]),
alias,
path,
)
: path;
}
#getFileName(path, ext) {
const [basePath, query] = path.split('?');
const hasValidExt = new RegExp(
`\\.(${ext.replace(/^\./, '')}|html)$`,
'g',
).test(basePath);
const updatedPath = hasValidExt
? basePath
: /\/$/g.test(basePath)
? `${basePath}README${ext}`
: `${basePath}${ext}`;
return query ? `${updatedPath}?${query}` : updatedPath;
}
getBasePath() {
return this.config.basePath;
}
getFile(path = this.getCurrentPath(), isRelative) {
const { config } = this;
const base = this.getBasePath();
const ext = typeof config.ext === 'string' ? config.ext : '.md';
path = config.alias ? this.#getAlias(path, config.alias) : path;
path = this.#getFileName(path, ext);
path = path === `/README${ext}` ? config.homepage || path : path;
path = isAbsolutePath(path) ? path : getPath(base, path);
if (isRelative) {
path = path.replace(new RegExp(`^${base}`), '');
}
return path;
}
onchange(cb = noop) {
cb();
}
getCurrentPath() {}
normalize() {}
parse() {}
toURL(path, params, currentRoute) {
const local = currentRoute && path[0] === '#';
const route = this.parse(replaceSlug(path));
route.query = { ...route.query, ...params };
path = route.path + stringifyQuery(route.query);
path = path.replace(/\.md(\?)|\.md$/, '$1');
if (local) {
const idIndex = currentRoute.indexOf('?');
path =
(idIndex > 0 ? currentRoute.substring(0, idIndex) : currentRoute) +
path;
}
if (this.config.relativePath && path.indexOf('/') !== 0) {
const currentDir = currentRoute.substring(
0,
currentRoute.lastIndexOf('/') + 1,
);
return cleanPath(resolvePath(currentDir + path));
}
return cleanPath('/' + path);
}
}