mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 12:19:20 +00:00
DocumentContext to remove url dependency from service
This commit is contained in:
@@ -7,14 +7,14 @@
|
|||||||
import {
|
import {
|
||||||
createConnection, IConnection, TextDocuments, InitializeParams, InitializeResult, ServerCapabilities, ConfigurationRequest, WorkspaceFolder
|
createConnection, IConnection, TextDocuments, InitializeParams, InitializeResult, ServerCapabilities, ConfigurationRequest, WorkspaceFolder
|
||||||
} from 'vscode-languageserver';
|
} from 'vscode-languageserver';
|
||||||
|
import URI from 'vscode-uri';
|
||||||
import { TextDocument, CompletionList } from 'vscode-languageserver-types';
|
import { TextDocument, CompletionList } from 'vscode-languageserver-types';
|
||||||
|
|
||||||
import { getCSSLanguageService, getSCSSLanguageService, getLESSLanguageService, LanguageSettings, LanguageService, Stylesheet } from 'vscode-css-languageservice';
|
import { getCSSLanguageService, getSCSSLanguageService, getLESSLanguageService, LanguageSettings, LanguageService, Stylesheet } from 'vscode-css-languageservice';
|
||||||
import { getLanguageModelCache } from './languageModelCache';
|
import { getLanguageModelCache } from './languageModelCache';
|
||||||
import { formatError, runSafe } from './utils/runner';
|
|
||||||
import URI from 'vscode-uri';
|
|
||||||
import { getPathCompletionParticipant } from './pathCompletion';
|
import { getPathCompletionParticipant } from './pathCompletion';
|
||||||
|
import { formatError, runSafe } from './utils/runner';
|
||||||
|
import { getDocumentContext } from './utils/documentContext';
|
||||||
|
|
||||||
export interface Settings {
|
export interface Settings {
|
||||||
css: LanguageSettings;
|
css: LanguageSettings;
|
||||||
@@ -258,8 +258,9 @@ connection.onDocumentLinks((documentLinkParams, token) => {
|
|||||||
return runSafe(() => {
|
return runSafe(() => {
|
||||||
const document = documents.get(documentLinkParams.textDocument.uri);
|
const document = documents.get(documentLinkParams.textDocument.uri);
|
||||||
if (document) {
|
if (document) {
|
||||||
|
const documentContext = getDocumentContext(document.uri, workspaceFolders);
|
||||||
const stylesheet = stylesheets.get(document);
|
const stylesheet = stylesheets.get(document);
|
||||||
return getLanguageService(document).findDocumentLinks(document, stylesheet);
|
return getLanguageService(document).findDocumentLinks(document, stylesheet, documentContext);
|
||||||
}
|
}
|
||||||
return [];
|
return [];
|
||||||
}, [], `Error while computing document links for ${documentLinkParams.textDocument.uri}`, token);
|
}, [], `Error while computing document links for ${documentLinkParams.textDocument.uri}`, token);
|
||||||
|
|||||||
@@ -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);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
Reference in New Issue
Block a user