mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 19:44:25 +01:00
150 lines
4.0 KiB
TypeScript
150 lines
4.0 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 'vs/workbench/workbench.web.main';
|
|
import { main } from 'vs/workbench/browser/web.main';
|
|
import { UriComponents, URI } from 'vs/base/common/uri';
|
|
import { IFileSystemProvider, FileSystemProviderCapabilities, IFileChange, FileChangeType } from 'vs/platform/files/common/files';
|
|
import { IWebSocketFactory, IWebSocket } from 'vs/platform/remote/browser/browserSocketFactory';
|
|
import { ICredentialsProvider } from 'vs/workbench/services/credentials/browser/credentialsService';
|
|
import { IExtensionManifest } from 'vs/platform/extensions/common/extensions';
|
|
import { IURLCallbackProvider } from 'vs/workbench/services/url/browser/urlService';
|
|
import { LogLevel } from 'vs/platform/log/common/log';
|
|
import { IUpdateProvider, IUpdate } from 'vs/workbench/services/update/browser/updateService';
|
|
import { Event, Emitter } from 'vs/base/common/event';
|
|
import { Disposable, IDisposable } from 'vs/base/common/lifecycle';
|
|
|
|
interface IWorkbenchConstructionOptions {
|
|
|
|
/**
|
|
* Experimental: the remote authority is the IP:PORT from where the workbench is served
|
|
* from. It is for example being used for the websocket connections as address.
|
|
*/
|
|
remoteAuthority?: string;
|
|
|
|
/**
|
|
* The connection token to send to the server.
|
|
*/
|
|
connectionToken?: string;
|
|
|
|
/**
|
|
* Experimental: An endpoint to serve iframe content ("webview") from. This is required
|
|
* to provide full security isolation from the workbench host.
|
|
*/
|
|
webviewEndpoint?: string;
|
|
|
|
/**
|
|
* Experimental: An optional folder that is set as workspace context for the workbench.
|
|
*/
|
|
folderUri?: URI;
|
|
|
|
/**
|
|
* Experimental: An optional workspace that is set as workspace context for the workbench.
|
|
*/
|
|
workspaceUri?: URI;
|
|
|
|
/**
|
|
* Experimental: The userDataProvider is used to handle user specific application
|
|
* state like settings, keybindings, UI state (e.g. opened editors) and snippets.
|
|
*/
|
|
userDataProvider?: IFileSystemProvider;
|
|
|
|
/**
|
|
* A factory for web sockets.
|
|
*/
|
|
webSocketFactory?: IWebSocketFactory;
|
|
|
|
/**
|
|
* A provider for resource URIs.
|
|
*/
|
|
resourceUriProvider?: (uri: URI) => URI;
|
|
|
|
/**
|
|
* Experimental: Whether to enable the smoke test driver.
|
|
*/
|
|
driver?: boolean;
|
|
|
|
/**
|
|
* Experimental: The credentials provider to store and retrieve secrets.
|
|
*/
|
|
credentialsProvider?: ICredentialsProvider;
|
|
|
|
/**
|
|
* Experimental: Add static extensions that cannot be uninstalled but only be disabled.
|
|
*/
|
|
staticExtensions?: { packageJSON: IExtensionManifest, extensionLocation: URI }[];
|
|
|
|
/**
|
|
* Experimental: Support for URL callbacks.
|
|
*/
|
|
urlCallbackProvider?: IURLCallbackProvider;
|
|
|
|
/**
|
|
* Current logging level. Default is `LogLevel.Info`.
|
|
*/
|
|
logLevel?: LogLevel;
|
|
|
|
/**
|
|
* Experimental: Support for update reporting.
|
|
*/
|
|
updateProvider?: IUpdateProvider;
|
|
|
|
/**
|
|
* Experimental: Resolves an external uri before it is opened.
|
|
*/
|
|
readonly resolveExternalUri?: (uri: URI) => Promise<URI>;
|
|
}
|
|
|
|
/**
|
|
* Experimental: Creates the workbench with the provided options in the provided container.
|
|
*
|
|
* @param domElement the container to create the workbench in
|
|
* @param options for setting up the workbench
|
|
*/
|
|
function create(domElement: HTMLElement, options: IWorkbenchConstructionOptions): Promise<void> {
|
|
return main(domElement, options);
|
|
}
|
|
|
|
export {
|
|
|
|
// Factory
|
|
create,
|
|
IWorkbenchConstructionOptions,
|
|
|
|
// Basic Types
|
|
URI,
|
|
UriComponents,
|
|
Event,
|
|
Emitter,
|
|
IDisposable,
|
|
Disposable,
|
|
|
|
// FileSystem
|
|
IFileSystemProvider,
|
|
FileSystemProviderCapabilities,
|
|
IFileChange,
|
|
FileChangeType,
|
|
|
|
// WebSockets
|
|
IWebSocketFactory,
|
|
IWebSocket,
|
|
|
|
// Credentials
|
|
ICredentialsProvider,
|
|
|
|
// Static Extensions
|
|
IExtensionManifest,
|
|
|
|
// Callbacks
|
|
IURLCallbackProvider,
|
|
|
|
// LogLevel
|
|
LogLevel,
|
|
|
|
// Updates
|
|
IUpdateProvider,
|
|
IUpdate
|
|
};
|