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
108
109
110
111
112
113
114
115
|
import {getCurrentBranch} from '.';
export default class GitHubURL {
// @ts-expect-error https://github.com/microsoft/TypeScript/issues/26792
user: string;
// @ts-expect-error
repository: string;
// @ts-expect-error
route: string;
// @ts-expect-error
branch: string;
// @ts-expect-error
filePath: string;
private internalUrl: URL;
constructor(url: string) {
// Use Facade pattern instead of inheritance #3193
this.internalUrl = new URL(url);
this.pathname = this.internalUrl.pathname;
}
toString(): string {
return this.href;
}
toJSON(): string {
return this.href;
}
assign(...replacements: Array<Partial<GitHubURL>>): this {
Object.assign(this, ...replacements);
return this;
}
private disambiguateReference(ambiguousReference: string[]): {branch: string; filePath: string} {
const branch = ambiguousReference[0];
// History pages might use search parameters
const filePathFromSearch = this.searchParams.getAll('path[]').join('/');
if (filePathFromSearch) {
this.searchParams.delete('path[]');
return {branch, filePath: filePathFromSearch};
}
const filePath = ambiguousReference.slice(1).join('/');
const currentBranch = getCurrentBranch();
if (!currentBranch) {
throw new Error('GitHubURL can only be used on pages with a branch/reference.');
}
const currentBranchSections = currentBranch.split('/');
if (
ambiguousReference.length === 1 || // Ref has no slashes
currentBranchSections.length === 1 // Current branch has no slashes
) {
// Then the reference is not ambiguous
return {branch, filePath};
}
for (const [i, section] of currentBranchSections.entries()) {
if (ambiguousReference[i] !== section) {
console.warn(`The supplied path (${ambiguousReference.join('/')}) is ambiguous (current reference is \`${currentBranch}\`)`);
return {branch, filePath};
}
}
return {
branch: currentBranch,
filePath: ambiguousReference.slice(currentBranchSections.length).join('/')
};
}
get pathname(): string {
return `/${this.user}/${this.repository}/${this.route}/${this.branch}/${this.filePath}`.replace(/((undefined)?\/)+$/g, '');
}
set pathname(pathname: string) {
const [user, repository, route, ...ambiguousReference] = pathname.replace(/^\/|\/$/g, '').split('/');
const {branch, filePath} = this.disambiguateReference(ambiguousReference);
this.assign({user, repository, route, branch, filePath});
}
get href(): string {
// Update the actual underlying URL
this.internalUrl.pathname = this.pathname;
return this.internalUrl.href;
}
set href(href: string) {
this.internalUrl.href = href;
}
// Proxy all other getters/setters to internalUrl
get hash(): string {
return this.internalUrl.hash;
}
set hash(hash: string) {
this.internalUrl.hash = hash;
}
get search(): string {
return this.internalUrl.search;
}
set search(search: string) {
this.internalUrl.search = search;
}
get searchParams(): URLSearchParams {
return this.internalUrl.searchParams;
}
}
|