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

                                                       

                                                                 
 
                                                         
                                                 
                                                             

                                                              
                                                                                    
                                                                        
 
                                                  
                                                  
                                                         
                                                                  



                                                         
                                                         

                                                                           





                        
                 
                     
 
                               
                          

                                
                    
                      

                         


                 
                    
                    
                            

                        





                        
                 
                     
 
                     
                
                      

                      
                         
              
             
 
                    
                    
                            


                        


              
                              

                  
                  
                      
                          

                


                             
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 { ProgressbarModule } from 'ngx-bootstrap/progressbar'
import { InfiniteScrollModule } from 'ngx-infinite-scroll'
import { BytesPipe, KeysPipe, NgPipesModule } 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 { FromNowPipe } from './misc/from-now.pipe'
import { LoaderComponent } from './misc/loader.component'
import { NumberFormatterPipe } from './misc/number-formatter.pipe'
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 { VideoThumbnailComponent } from './video/video-thumbnail.component'
import { VideoService } from './video/video.service'

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

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

    DataTableModule,
    PrimeSharedModule,
    InfiniteScrollModule,
    NgPipesModule
  ],

  declarations: [
    SearchComponent,
    LoaderComponent,
    VideoThumbnailComponent,
    NumberFormatterPipe,
    FromNowPipe
  ],

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

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

    SearchComponent,
    LoaderComponent,
    VideoThumbnailComponent,

    NumberFormatterPipe,
    FromNowPipe
  ],

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