-
Notifications
You must be signed in to change notification settings - Fork 29.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DocumentContext to remove
url
dependency from service
- Loading branch information
Showing
2 changed files
with
45 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
extensions/css-language-features/server/src/utils/documentContext.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/*--------------------------------------------------------------------------------------------- | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for license information. | ||
*--------------------------------------------------------------------------------------------*/ | ||
'use strict'; | ||
|
||
import { DocumentContext } from 'vscode-css-languageservice'; | ||
import { endsWith, startsWith } from '../utils/strings'; | ||
import * as url from 'url'; | ||
import { WorkspaceFolder } from 'vscode-languageserver'; | ||
|
||
export function getDocumentContext(documentUri: string, workspaceFolders: WorkspaceFolder[]): DocumentContext { | ||
function getRootFolder(): string | undefined { | ||
for (let folder of workspaceFolders) { | ||
let folderURI = folder.uri; | ||
if (!endsWith(folderURI, '/')) { | ||
folderURI = folderURI + '/'; | ||
} | ||
if (startsWith(documentUri, folderURI)) { | ||
return folderURI; | ||
} | ||
} | ||
return void 0; | ||
} | ||
|
||
return { | ||
resolveReference: (ref, base = documentUri) => { | ||
if (ref[0] === '/') { // resolve absolute path against the current workspace folder | ||
if (startsWith(base, 'file://')) { | ||
let folderUri = getRootFolder(); | ||
if (folderUri) { | ||
return folderUri + ref.substr(1); | ||
} | ||
} | ||
} | ||
return url.resolve(base, ref); | ||
}, | ||
}; | ||
} | ||
|