2019-02-26 19:01:14 +01:00
|
|
|
import { IdeClient } from "@coder/ide";
|
2019-02-26 19:12:42 +01:00
|
|
|
import { client as ideClientInstance } from "@coder/ide/src/fill/client";
|
2019-02-27 16:03:44 +01:00
|
|
|
import Severity from "vs/base/common/severity";
|
|
|
|
import { INotificationService } from "vs/platform/notification/common/notification";
|
2019-02-27 22:36:39 +01:00
|
|
|
import { IStatusbarService, StatusbarAlignment } from "vs/platform/statusbar/common/statusbar";
|
2019-01-22 19:27:59 +01:00
|
|
|
import * as paths from "./fill/paths";
|
2019-01-19 01:04:24 +01:00
|
|
|
import "./vscode.scss";
|
2019-02-27 22:36:39 +01:00
|
|
|
import { MenuId, MenuRegistry } from "vs/platform/actions/common/actions";
|
|
|
|
import { CommandsRegistry } from "vs/platform/commands/common/commands";
|
2019-02-26 19:01:14 +01:00
|
|
|
// NOTE: shouldn't import anything from VS Code here or anything that will
|
|
|
|
// depend on a synchronous fill like `os`.
|
2019-01-30 22:40:01 +01:00
|
|
|
|
2019-02-26 19:01:14 +01:00
|
|
|
class VSClient extends IdeClient {
|
2019-01-30 20:13:04 +01:00
|
|
|
protected initialize(): Promise<void> {
|
2019-02-06 23:55:29 +01:00
|
|
|
return this.task("Start workbench", 1000, async (data, sharedData) => {
|
|
|
|
paths._paths.initialize(data, sharedData);
|
2019-01-28 18:14:06 +01:00
|
|
|
process.env.SHELL = data.shell;
|
2019-02-26 19:01:14 +01:00
|
|
|
// 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 19:12:42 +01:00
|
|
|
|
2019-02-27 16:03:44 +01:00
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
const getService = <T>(id: any): T => workbench.serviceCollection.get<T>(id) as T;
|
2019-02-26 19:12:42 +01:00
|
|
|
window.ide = {
|
|
|
|
client: ideClientInstance,
|
|
|
|
workbench: {
|
2019-02-27 22:36:39 +01:00
|
|
|
commandRegistry: CommandsRegistry,
|
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
menuRegistry: MenuRegistry as any,
|
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
statusbarService: getService<IStatusbarService>(IStatusbarService) as any,
|
2019-02-27 16:03:44 +01:00
|
|
|
notificationService: getService<INotificationService>(INotificationService),
|
2019-02-26 19:12:42 +01:00
|
|
|
},
|
2019-02-27 22:36:39 +01:00
|
|
|
|
|
|
|
// @ts-ignore
|
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
MenuId: MenuId as any,
|
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
Severity: Severity as any,
|
|
|
|
// @ts-ignore
|
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
StatusbarAlignment: StatusbarAlignment as any,
|
2019-02-26 19:12:42 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const event = new CustomEvent("ide-ready");
|
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
(<any>event).ide = window.ide;
|
|
|
|
window.dispatchEvent(event);
|
2019-02-06 23:55:29 +01:00
|
|
|
}, this.initData, this.sharedProcessData);
|
2019-01-18 22:46:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-26 19:01:14 +01:00
|
|
|
export const client = new VSClient();
|