mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-06-13 07:10:26 +08:00
88 lines
3.1 KiB
TypeScript
88 lines
3.1 KiB
TypeScript
/* --------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
* ------------------------------------------------------------------------------------------ */
|
|
|
|
import * as path from 'path';
|
|
import { commands, CompletionList, ExtensionContext, Uri, workspace } from 'vscode';
|
|
import { getLanguageService } from 'vscode-html-languageservice';
|
|
import { LanguageClient, LanguageClientOptions, ServerOptions, TransportKind } from 'vscode-languageclient';
|
|
import { getCSSVirtualContent, isInsideStyleRegion } from './embeddedSupport';
|
|
|
|
let client: LanguageClient;
|
|
|
|
const htmlLanguageService = getLanguageService();
|
|
|
|
export function activate(context: ExtensionContext) {
|
|
// The server is implemented in node
|
|
let serverModule = context.asAbsolutePath(path.join('server', 'out', 'server.js'));
|
|
// The debug options for the server
|
|
// --inspect=6009: runs the server in Node's Inspector mode so VS Code can attach to the server for debugging
|
|
let debugOptions = { execArgv: ['--nolazy', '--inspect=6009'] };
|
|
|
|
// If the extension is launched in debug mode then the debug server options are used
|
|
// Otherwise the run options are used
|
|
let serverOptions: ServerOptions = {
|
|
run: { module: serverModule, transport: TransportKind.ipc },
|
|
debug: {
|
|
module: serverModule,
|
|
transport: TransportKind.ipc,
|
|
options: debugOptions
|
|
}
|
|
};
|
|
|
|
const virtualDocumentContents = new Map<string, string>();
|
|
|
|
workspace.registerTextDocumentContentProvider('embedded-content', {
|
|
provideTextDocumentContent: uri => {
|
|
const originalUri = uri.path.slice(1).slice(0, -4);
|
|
const decodedUri = decodeURIComponent(originalUri);
|
|
return virtualDocumentContents.get(decodedUri);
|
|
}
|
|
});
|
|
|
|
let clientOptions: LanguageClientOptions = {
|
|
documentSelector: [{ scheme: 'file', language: 'html1' }],
|
|
middleware: {
|
|
provideCompletionItem: async (document, position, context, token, next) => {
|
|
// If not in `<style>`, do not perform request forwarding
|
|
if (!isInsideStyleRegion(htmlLanguageService, document.getText(), document.offsetAt(position))) {
|
|
return await next(document, position, context, token);
|
|
}
|
|
|
|
const originalUri = document.uri.toString();
|
|
virtualDocumentContents.set(originalUri, getCSSVirtualContent(htmlLanguageService, document.getText()));
|
|
|
|
const vdocUriString = `embedded-content://css/${encodeURIComponent(
|
|
originalUri
|
|
)}.css`;
|
|
const vdocUri = Uri.parse(vdocUriString);
|
|
return await commands.executeCommand<CompletionList>(
|
|
'vscode.executeCompletionItemProvider',
|
|
vdocUri,
|
|
position,
|
|
context.triggerCharacter
|
|
);
|
|
}
|
|
}
|
|
};
|
|
|
|
// Create the language client and start the client.
|
|
client = new LanguageClient(
|
|
'languageServerExample',
|
|
'Language Server Example',
|
|
serverOptions,
|
|
clientOptions
|
|
);
|
|
|
|
// Start the client. This will also launch the server
|
|
client.start();
|
|
}
|
|
|
|
export function deactivate(): Thenable<void> | undefined {
|
|
if (!client) {
|
|
return undefined;
|
|
}
|
|
return client.stop();
|
|
}
|