aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/shared/shared.module.ts
blob: c7ea6e603ad236d00ca366bb3ab05c0081d28dda (plain) (tree)
1
2
3
4
5
6
7
8
                                              

                                                       

                                                                 
 
                                                         
                                                 


                                                             
                                                                                    
                                                                        
 
                                                  
                                                         



                                                         
                                                         

                                                                  





                        
                 
                     
 
                               



                                

                     



                 
             
                    


                        





                        
                 
                     
 
                     


                      

                      
              
             
 
                    



                        


              
                              

                  
                  
                      
                          
               


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

import { BsDropdownModule } from 'ngx-bootstrap/dropdown'
import { ModalModule } from 'ngx-bootstrap/modal'
import { PaginationModule } from 'ngx-bootstrap/pagination'
import { ProgressbarModule } from 'ngx-bootstrap/progressbar'
import { BytesPipe, KeysPipe } from 'ngx-pipes'
import { SharedModule as PrimeSharedModule } from 'primeng/components/common/shared'
import { DataTableModule } from 'primeng/components/datatable/datatable'

import { AUTH_INTERCEPTOR_PROVIDER } from './auth'
import { LoaderComponent } from './misc/loader.component'
import { RestExtractor, RestService } from './rest'
import { SearchComponent, SearchService } from './search'
import { UserService } from './users'
import { VideoAbuseService } from './video-abuse'
import { VideoBlacklistService } from './video-blacklist'
import { NumberFormatterPipe } from './misc/number-formatter.pipe'
import { FromNowPipe } from './misc/from-now.pipe'

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

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

    DataTableModule,
    PrimeSharedModule
  ],

  declarations: [
    BytesPipe,
    KeysPipe,
    SearchComponent,
    LoaderComponent,
    NumberFormatterPipe,
    FromNowPipe
  ],

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

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

    SearchComponent,
    LoaderComponent,

    NumberFormatterPipe,
    FromNowPipe
  ],

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