-
-
Notifications
You must be signed in to change notification settings - Fork 209
/
Copy pathdocumentContext.ts
42 lines (38 loc) · 1.66 KB
/
documentContext.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
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
// adopted from https://github.com/microsoft/vscode/blob/5ffcfde11d8b1b57634627f5094907789db09776/extensions/css-language-features/server/src/utils/documentContext.ts
import { DocumentContext } from 'vscode-css-languageservice';
import { WorkspaceFolder } from 'vscode-languageserver';
import { Utils, URI } from 'vscode-uri';
export function getDocumentContext(
documentUri: string,
workspaceFolders: WorkspaceFolder[]
): DocumentContext {
function getRootFolder(): string | undefined {
for (const folder of workspaceFolders) {
let folderURI = folder.uri;
if (!folderURI.endsWith('/')) {
folderURI = folderURI + '/';
}
if (documentUri.startsWith(folderURI)) {
return folderURI;
}
}
return undefined;
}
return {
resolveReference: (ref: string, base = documentUri) => {
if (ref[0] === '/') {
// resolve absolute path against the current workspace folder
const folderUri = getRootFolder();
if (folderUri) {
return folderUri + ref.substr(1);
}
}
base = base.substr(0, base.lastIndexOf('/') + 1);
return Utils.resolvePath(URI.parse(base), ref).toString();
}
};
}