-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.ts
56 lines (51 loc) · 1.3 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import {APP_INITIALIZER, InjectionToken, ModuleWithProviders, NgModule} from '@angular/core';
import {CommonModule} from '@angular/common';
import {SampleComponent} from './sample.component';
import {SampleDirective} from './sample.directive';
import {SamplePipe} from './sample.pipe';
import {SampleService} from './sample.service';
export * from './sample.component';
export * from './sample.directive';
export * from './sample.pipe';
export * from './sample.service';
export const OPTIONS = new InjectionToken<string>('OPTIONS');
export interface SampleModuleOptions {
config: {}
}
export function initialize(options: any) {
console.log('Angular library has started with this options: ', options);
return function () {
};
}
@NgModule({
imports: [
CommonModule
],
declarations: [
SampleComponent,
SampleDirective,
SamplePipe
],
exports: [
SampleComponent,
SampleDirective,
SamplePipe
]
})
export class SampleModule {
static forRoot(options?: SampleModuleOptions): ModuleWithProviders {
return {
ngModule: SampleModule,
providers: [
{provide: OPTIONS, useValue: options},
{
provide: APP_INITIALIZER,
useFactory: initialize,
deps: [OPTIONS],
multi: true
},
SampleService
]
};
}
}