2019-03-12 16:12:50 +00:00
|
|
|
import { InitData } from "@coder/protocol";
|
2019-03-08 16:37:03 +00:00
|
|
|
import { IProductConfiguration } from "vs/platform/product/node/product";
|
2019-01-18 21:46:40 +00:00
|
|
|
|
2019-03-12 16:12:50 +00:00
|
|
|
class Product implements IProductConfiguration {
|
|
|
|
public nameShort = "code-server";
|
|
|
|
public nameLong = "code-server";
|
|
|
|
|
|
|
|
private _dataFolderName: string | undefined;
|
|
|
|
public get dataFolderName(): string {
|
|
|
|
if (!this._dataFolderName) {
|
|
|
|
throw new Error("trying to access data folder name before it has been set");
|
|
|
|
}
|
|
|
|
|
|
|
|
return this._dataFolderName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public extensionsGallery = {
|
2019-03-01 21:51:11 +00:00
|
|
|
serviceUrl: global && global.process && global.process.env.SERVICE_URL
|
|
|
|
|| process.env.SERVICE_URL
|
|
|
|
|| "https://v1.extapi.coder.com",
|
2019-03-12 16:12:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
public extensionExecutionEnvironments = {
|
2019-01-18 21:46:40 +00:00
|
|
|
"wayou.vscode-todo-highlight": "worker",
|
|
|
|
"vscodevim.vim": "worker",
|
|
|
|
"coenraads.bracket-pair-colorizer": "worker",
|
2019-03-12 16:12:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
public fetchUrl = "";
|
|
|
|
|
|
|
|
public initialize(_data: InitData): void {
|
|
|
|
// Nothing at the moment; dataFolderName isn't used since we override the
|
|
|
|
// extension path.
|
|
|
|
}
|
2019-01-18 21:46:40 +00:00
|
|
|
}
|
|
|
|
|
2019-03-12 16:12:50 +00:00
|
|
|
export default new Product();
|