// ***************************************************************************** // Copyright (C) 2019 TypeFox and others. // // This program and the accompanying materials are made available under the // terms of the Eclipse Public License v. 2.0 which is available at // http://www.eclipse.org/legal/epl-2.0. // // This Source Code may also be made available under the following Secondary // Licenses when the conditions for such availability set forth in the Eclipse // Public License v. 2.0 are satisfied: GNU General Public License, version 2 // with the GNU Classpath Exception which is available at // https://www.gnu.org/software/classpath/license.html. // // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0 // ***************************************************************************** import { injectable, inject, postConstruct } from '@theia/core/shared/inversify'; import { ContextKeyService, ContextKey } from '@theia/core/lib/browser/context-key-service'; @injectable() export class ScmContextKeyService { @inject(ContextKeyService) protected readonly contextKeyService: ContextKeyService; protected _scmProvider: ContextKey; get scmProvider(): ContextKey { return this._scmProvider; } protected _scmResourceGroup: ContextKey; get scmResourceGroup(): ContextKey { return this._scmResourceGroup; } protected _scmResourceGroupState: ContextKey; get scmResourceGroupState(): ContextKey { return this._scmResourceGroupState; } protected _scmProviderCount: ContextKey; get scmProviderCount(): ContextKey { return this._scmProviderCount; } @postConstruct() protected init(): void { this._scmProvider = this.contextKeyService.createKey('scmProvider', undefined); this._scmResourceGroup = this.contextKeyService.createKey('scmResourceGroup', undefined); this._scmResourceGroupState = this.contextKeyService.createKey('scmResourceGroupState', undefined); this._scmProviderCount = this.contextKeyService.createKey('scm.providerCount', 0); } match(expression: string | undefined): boolean { return !expression || this.contextKeyService.match(expression); } }