mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-23 03:07:58 +00:00
56 lines
2.1 KiB
TypeScript
56 lines
2.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 { Disposable, ExtensionContext, Uri, l10n, window } from 'vscode';
|
|
import { LanguageClientOptions } from 'vscode-languageclient';
|
|
import { startClient, LanguageClientConstructor, SchemaRequestService, AsyncDisposable, languageServerDescription } from '../jsonClient';
|
|
import { LanguageClient } from 'vscode-languageclient/browser';
|
|
|
|
let client: AsyncDisposable | undefined;
|
|
|
|
// this method is called when vs code is activated
|
|
export async function activate(context: ExtensionContext) {
|
|
const serverMain = Uri.joinPath(context.extensionUri, 'server/dist/browser/jsonServerMain.js');
|
|
try {
|
|
const worker = new Worker(serverMain.toString());
|
|
worker.postMessage({ i10lLocation: l10n.uri?.toString(false) ?? '' });
|
|
|
|
const newLanguageClient: LanguageClientConstructor = (id: string, name: string, clientOptions: LanguageClientOptions) => {
|
|
return new LanguageClient(id, name, worker, clientOptions);
|
|
};
|
|
|
|
const schemaRequests: SchemaRequestService = {
|
|
getContent(uri: string) {
|
|
return fetch(uri, { mode: 'cors' })
|
|
.then(function (response: any) {
|
|
return response.text();
|
|
});
|
|
}
|
|
};
|
|
|
|
const timer = {
|
|
setTimeout(callback: (...args: any[]) => void, ms: number, ...args: any[]): Disposable {
|
|
const handle = setTimeout(callback, ms, ...args);
|
|
return { dispose: () => clearTimeout(handle) };
|
|
}
|
|
};
|
|
|
|
const logOutputChannel = window.createOutputChannel(languageServerDescription, { log: true });
|
|
context.subscriptions.push(logOutputChannel);
|
|
|
|
client = await startClient(context, newLanguageClient, { schemaRequests, timer, logOutputChannel });
|
|
|
|
} catch (e) {
|
|
console.log(e);
|
|
}
|
|
}
|
|
|
|
export async function deactivate(): Promise<void> {
|
|
if (client) {
|
|
await client.dispose();
|
|
client = undefined;
|
|
}
|
|
}
|