mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
SQL Operations Studio Public Preview 1 (0.23) release source code
This commit is contained in:
49
src/vs/editor/common/editorAction.ts
Normal file
49
src/vs/editor/common/editorAction.ts
Normal file
@@ -0,0 +1,49 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
'use strict';
|
||||
|
||||
import { TPromise } from 'vs/base/common/winjs.base';
|
||||
import { IEditorAction } from 'vs/editor/common/editorCommon';
|
||||
import { IContextKeyService, ContextKeyExpr } from 'vs/platform/contextkey/common/contextkey';
|
||||
|
||||
export class InternalEditorAction implements IEditorAction {
|
||||
|
||||
public readonly id: string;
|
||||
public readonly label: string;
|
||||
public readonly alias: string;
|
||||
|
||||
private readonly _precondition: ContextKeyExpr;
|
||||
private readonly _run: () => void | TPromise<void>;
|
||||
private readonly _contextKeyService: IContextKeyService;
|
||||
|
||||
constructor(
|
||||
id: string,
|
||||
label: string,
|
||||
alias: string,
|
||||
precondition: ContextKeyExpr,
|
||||
run: () => void,
|
||||
contextKeyService: IContextKeyService
|
||||
) {
|
||||
this.id = id;
|
||||
this.label = label;
|
||||
this.alias = alias;
|
||||
this._precondition = precondition;
|
||||
this._run = run;
|
||||
this._contextKeyService = contextKeyService;
|
||||
}
|
||||
|
||||
public isSupported(): boolean {
|
||||
return this._contextKeyService.contextMatchesRules(this._precondition);
|
||||
}
|
||||
|
||||
public run(): TPromise<void> {
|
||||
if (!this.isSupported()) {
|
||||
return TPromise.as(void 0);
|
||||
}
|
||||
|
||||
const r = this._run();
|
||||
return r ? r : TPromise.as(void 0);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user