forked from denoland/x-to-jsr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimport_map.ts
40 lines (34 loc) · 1.1 KB
/
import_map.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
export class ImportMapBuilder {
#imports: Record<string, string>;
#unmappedRemoteImports = new Set<string>();
constructor(imports: Record<string, string>) {
this.#imports = imports;
}
addImport(bareSpecifier: string, specifier: string) {
bareSpecifier = this.#getUniqueBareSpecifier(bareSpecifier, specifier);
this.#imports[bareSpecifier] = specifier;
return bareSpecifier;
}
addUnmappedRemoteImport(specifier: string) {
this.#unmappedRemoteImports.add(specifier);
}
getUnmappedRemoteImports() {
return [...this.#unmappedRemoteImports];
}
build() {
return this.#imports;
}
#getUniqueBareSpecifier(bareSpecifier: string, specifier: string): string {
if (
this.#imports[bareSpecifier] != null &&
this.#imports[bareSpecifier] !== specifier
) {
const hasTrailingSlash = bareSpecifier.endsWith("/");
bareSpecifier = bareSpecifier.slice(0, -1);
bareSpecifier = bareSpecifier + "2" + (hasTrailingSlash ? "/" : "");
return this.#getUniqueBareSpecifier(bareSpecifier, specifier);
} else {
return bareSpecifier;
}
}
}