aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/core/core.module.ts
blob: 36dbe8b5ccd516fd4b12be66a5313a4021b390c6 (plain) (blame)
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 { CommonModule } from '@angular/common'
import { NgModule, Optional, SkipSelf } from '@angular/core'
import { FormsModule } from '@angular/forms'
import { BrowserAnimationsModule } from '@angular/platform-browser/animations'
import { RouterModule } from '@angular/router'
import { LoadingBarModule } from '@ngx-loading-bar/core'
import { LoadingBarHttpClientModule } from '@ngx-loading-bar/http-client'

import { SimpleNotificationsModule } from 'angular2-notifications'
import { ModalModule } from 'ngx-bootstrap/modal'

import { AuthService } from './auth'
import { ConfirmComponent, ConfirmService } from './confirm'
import { throwIfAlreadyLoaded } from './module-import-guard'
import { LoginGuard, UserRightGuard } from './routing'
import { ServerService } from './server'

@NgModule({
  imports: [
    CommonModule,
    RouterModule,
    FormsModule,
    BrowserAnimationsModule,

    ModalModule,
    SimpleNotificationsModule.forRoot(),

    LoadingBarHttpClientModule,
    LoadingBarModule.forRoot()
  ],

  declarations: [
    ConfirmComponent
  ],

  exports: [
    SimpleNotificationsModule,
    LoadingBarHttpClientModule,
    LoadingBarModule,

    ConfirmComponent
  ],

  providers: [
    AuthService,
    ConfirmService,
    ServerService,
    LoginGuard,
    UserRightGuard
  ]
})
export class CoreModule {
  constructor (@Optional() @SkipSelf() parentModule: CoreModule) {
    throwIfAlreadyLoaded(parentModule, 'CoreModule')
  }
}