/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the Source EULA. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import { NgModule, Inject, forwardRef, ApplicationRef, ComponentFactoryResolver, Type } from '@angular/core'; import { APP_BASE_HREF, CommonModule } from '@angular/common'; import { BrowserModule } from '@angular/platform-browser'; import { IBootstrapParams, ISelector, providerIterator } from 'sql/platform/bootstrap/node/bootstrapService'; import { QueryPlanComponent } from 'sql/workbench/parts/queryPlan/electron-browser/queryPlan.component'; import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation'; // Connection Dashboard main angular module export const QueryPlanModule = (params: IBootstrapParams, selector: string, instantiationService: IInstantiationService): Type => { @NgModule({ declarations: [ QueryPlanComponent ], entryComponents: [QueryPlanComponent], imports: [ CommonModule, BrowserModule ], providers: [ { provide: APP_BASE_HREF, useValue: '/' }, { provide: IBootstrapParams, useValue: params }, { provide: ISelector, useValue: selector }, ...providerIterator(instantiationService) ] }) class ModuleClass { constructor( @Inject(forwardRef(() => ComponentFactoryResolver)) private _resolver: ComponentFactoryResolver, @Inject(ISelector) private selector: string ) { } ngDoBootstrap(appRef: ApplicationRef) { const factory = this._resolver.resolveComponentFactory(QueryPlanComponent); (factory).factory.selector = this.selector; appRef.bootstrap(factory); } } return ModuleClass; };