Dataexplorer viewlet (#3967)

* added initial data explorer viewlet

* added dataexplorer contribution point

* removed test view

* remove unused imports

* added flag and tests

* CR comments

* added icon for data explorer
This commit is contained in:
Aditya Bist
2019-02-07 17:18:05 -08:00
committed by GitHub
parent 393be65aa6
commit 88c33214c6
12 changed files with 677 additions and 40 deletions

View File

@@ -108,7 +108,7 @@ class ViewsContainersExtensionHandler implements IWorkbenchContribution {
let container = this.getViewContainer(entry.key);
if (!container) {
collector.warn(localize('ViewContainerDoesnotExist', "View container '{0}' does not exist and all views registered to it will be added to 'Explorer'.", entry.key));
collector.warn(localize('ViewContainerDoesnotExist', "View container '{0}' does not exist and all views registered to it will be added to 'Data Explorer'.", entry.key));
container = this.viewContainersRegistry.get(EXPLORER);
}
const registeredViews = ViewsRegistry.getViews(container);

View File

@@ -156,6 +156,9 @@ import 'vs/workbench/parts/experiments/electron-browser/experiments.contribution
import 'sql/parts/taskHistory/common/taskHistory.contribution';
import 'sql/parts/taskHistory/viewlet/taskHistoryViewlet';
import 'sql/parts/tasks/common/tasks.contribution';
import 'sql/parts/dataExplorer/common/dataExplorer.contribution';
import 'sql/parts/dataExplorer/viewlet/dataExplorerViewlet';
import 'sql/parts/dataExplorer/common/dataExplorerExtensionPoint';
import 'sql/parts/objectExplorer/common/registeredServer.contribution';
import 'sql/workbench/parts/connection/electron-browser/connectionViewlet';
import 'sql/workbench/api/node/sqlExtHost.contribution';