aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/shared/shared.module.ts
blob: 47f651590c9a6c11fe90fba309ef0bb894ee7f39 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
                                        
                                                       
                                              

                                                                 
 





                                                             

                                                                                    
 
                                                  



                                                         
                                                         





                        
                 
                     
 
                               



                                

                     



                 
             






                        
                 
                     
 
                     


                      

                      
              
             




                   
                              

                  
                  
                      
                          
               


                             
import { NgModule } from '@angular/core'
import { HttpClientModule } from '@angular/common/http'
import { CommonModule } from '@angular/common'
import { FormsModule, ReactiveFormsModule } from '@angular/forms'
import { RouterModule } from '@angular/router'

import { BytesPipe } from 'angular-pipes/src/math/bytes.pipe'
import { KeysPipe } from 'angular-pipes/src/object/keys.pipe'
import { BsDropdownModule } from 'ngx-bootstrap/dropdown'
import { ProgressbarModule } from 'ngx-bootstrap/progressbar'
import { PaginationModule } from 'ngx-bootstrap/pagination'
import { ModalModule } from 'ngx-bootstrap/modal'
import { DataTableModule } from 'primeng/components/datatable/datatable'
import { SharedModule as PrimeSharedModule } from 'primeng/components/common/shared'

import { AUTH_INTERCEPTOR_PROVIDER } from './auth'
import { RestExtractor, RestService } from './rest'
import { SearchComponent, SearchService } from './search'
import { UserService } from './users'
import { VideoAbuseService } from './video-abuse'
import { VideoBlacklistService } from './video-blacklist'

@NgModule({
  imports: [
    CommonModule,
    FormsModule,
    ReactiveFormsModule,
    RouterModule,
    HttpClientModule,

    BsDropdownModule.forRoot(),
    ModalModule.forRoot(),
    PaginationModule.forRoot(),
    ProgressbarModule.forRoot(),

    DataTableModule,
    PrimeSharedModule
  ],

  declarations: [
    BytesPipe,
    KeysPipe,
    SearchComponent
  ],

  exports: [
    CommonModule,
    FormsModule,
    ReactiveFormsModule,
    RouterModule,
    HttpClientModule,

    BsDropdownModule,
    ModalModule,
    PaginationModule,
    ProgressbarModule,
    DataTableModule,
    PrimeSharedModule,
    BytesPipe,
    KeysPipe,

    SearchComponent
  ],

  providers: [
    AUTH_INTERCEPTOR_PROVIDER,
    RestExtractor,
    RestService,
    SearchService,
    VideoAbuseService,
    VideoBlacklistService,
    UserService
  ]
})
export class SharedModule { }