mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-19 17:22:48 -05:00
51 lines
1.8 KiB
TypeScript
51 lines
1.8 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* 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<any> => {
|
|
|
|
@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);
|
|
(<any>factory).factory.selector = this.selector;
|
|
appRef.bootstrap(factory);
|
|
}
|
|
}
|
|
|
|
return ModuleClass;
|
|
};
|