forked from TrilonIO/angular-application-insights
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ts
35 lines (29 loc) · 871 Bytes
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import { NgModule, ModuleWithProviders, Optional, SkipSelf } from '@angular/core';
import { CommonModule } from '@angular/common';
import { AppInsightsConfig, AppInsightsService } from './src/app-insight.service';
export * from './src/app-insight.service';
@NgModule({
imports: [ CommonModule ],
declarations: [],
exports: [],
providers: [ AppInsightsService ]
})
export class ApplicationInsightsModule {
constructor (
@Optional() @SkipSelf() parentModule: ApplicationInsightsModule,
appInsightsService: AppInsightsService
) {
if (!parentModule) {
appInsightsService.init();
}
}
static forRoot(config: AppInsightsConfig): ModuleWithProviders {
return {
ngModule: ApplicationInsightsModule,
providers: [
{ provide: AppInsightsConfig, useValue: config },
AppInsightsService
]
};
}
}