mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-24 11:47:43 +00:00
Extract remote source provider registry into the vscode.git-base extension (#137656)
This commit is contained in:
30
extensions/git/src/git-base.ts
Normal file
30
extensions/git/src/git-base.ts
Normal file
@@ -0,0 +1,30 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
import { extensions } from 'vscode';
|
||||
import { API as GitBaseAPI, GitBaseExtension } from './api/git-base';
|
||||
|
||||
export class GitBaseApi {
|
||||
|
||||
private static _gitBaseApi: GitBaseAPI | undefined;
|
||||
|
||||
static getAPI(): GitBaseAPI {
|
||||
if (!this._gitBaseApi) {
|
||||
const gitBaseExtension = extensions.getExtension<GitBaseExtension>('vscode.git-base')!.exports;
|
||||
const onDidChangeGitBaseExtensionEnablement = (enabled: boolean) => {
|
||||
this._gitBaseApi = enabled ? gitBaseExtension.getAPI(1) : undefined;
|
||||
};
|
||||
|
||||
gitBaseExtension.onDidChangeEnablement(onDidChangeGitBaseExtensionEnablement);
|
||||
onDidChangeGitBaseExtensionEnablement(gitBaseExtension.enabled);
|
||||
|
||||
if (!this._gitBaseApi) {
|
||||
throw new Error('vscode.git-base extension is not enabled.');
|
||||
}
|
||||
}
|
||||
|
||||
return this._gitBaseApi;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user