code-server-2/packages/vscode/src/client.ts

36 lines
1.3 KiB
TypeScript
Raw Normal View History

import { IdeClient } from "@coder/ide";
2019-02-26 18:12:42 +00:00
import { client as ideClientInstance } from "@coder/ide/src/fill/client";
import * as paths from "./fill/paths";
2019-01-19 00:04:24 +00:00
import "./vscode.scss";
// NOTE: shouldn't import anything from VS Code here or anything that will
// depend on a synchronous fill like `os`.
2019-01-30 21:40:01 +00:00
class VSClient extends IdeClient {
protected initialize(): Promise<void> {
return this.task("Start workbench", 1000, async (data, sharedData) => {
paths._paths.initialize(data, sharedData);
process.env.SHELL = data.shell;
// At this point everything should be filled, including `os`. `os` also
// relies on `initData` but it listens first so it initialize before this
// callback, meaning we are safe to include everything from VS Code now.
const { workbench } = require("./workbench") as typeof import("./workbench");
await workbench.initialize();
2019-02-26 18:12:42 +00:00
window.ide = {
client: ideClientInstance,
workbench: {
// tslint:disable-next-line:no-any
getService: <T>(id: any): T => workbench.serviceCollection.get<T>(id) as T,
},
};
const event = new CustomEvent("ide-ready");
// tslint:disable-next-line:no-any
(<any>event).ide = window.ide;
window.dispatchEvent(event);
}, this.initData, this.sharedProcessData);
}
}
export const client = new VSClient();