mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-24 03:35:38 +00:00
40 lines
1.5 KiB
TypeScript
40 lines
1.5 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 { Disposable, ExtensionContext, Uri } from 'vscode';
|
|
import { LanguageClientOptions } from 'vscode-languageclient';
|
|
import { startClient, LanguageClientConstructor } from '../htmlClient';
|
|
import { LanguageClient } from 'vscode-languageclient/browser';
|
|
|
|
declare const Worker: {
|
|
new(stringUrl: string): any;
|
|
};
|
|
declare const TextDecoder: {
|
|
new(encoding?: string): { decode(buffer: ArrayBuffer): string; };
|
|
};
|
|
|
|
// this method is called when vs code is activated
|
|
export function activate(context: ExtensionContext) {
|
|
const serverMain = Uri.joinPath(context.extensionUri, 'server/dist/browser/htmlServerMain.js');
|
|
try {
|
|
const worker = new Worker(serverMain.toString());
|
|
const newLanguageClient: LanguageClientConstructor = (id: string, name: string, clientOptions: LanguageClientOptions) => {
|
|
return new LanguageClient(id, name, clientOptions, worker);
|
|
};
|
|
|
|
const timer = {
|
|
setTimeout(callback: (...args: any[]) => void, ms: number, ...args: any[]): Disposable {
|
|
const handle = setTimeout(callback, ms, ...args);
|
|
return { dispose: () => clearTimeout(handle) };
|
|
}
|
|
};
|
|
|
|
startClient(context, newLanguageClient, { TextDecoder, timer });
|
|
|
|
} catch (e) {
|
|
console.log(e);
|
|
}
|
|
}
|