More data explorer actions (#4307)

* adding context

* apply extension changes

* shimming disconnect

* add data explorer context menu and add disconnect to it

* clean up shim code; better handle errors

* remove tpromise

* simplify code

* add node context on data explorer

* formatting

* add new Query action

* fix various errors with how the context menus work

* add manage and new query

* add refresh command

* formatting
This commit is contained in:
Anthony Dresser
2019-03-14 17:19:37 -07:00
committed by GitHub
parent 0bc3716f74
commit 0bf0e795ca
6 changed files with 115 additions and 22 deletions

View File

@@ -32,7 +32,8 @@ export interface ITreeView extends vsITreeView {
export type TreeViewItemHandleArg = {
$treeViewId: string,
$treeItemHandle: string,
$treeItem?: ITreeItem
$treeItem?: ITreeItem,
$treeContainerId?: string
};
export interface ICustomViewDescriptor extends IViewDescriptor {