aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+videos/+video-watch/video-watch.module.ts
blob: 93b143542ff995878dba19a537c25fce6eb509fc (plain) (tree)
1
2
3
4
5
6
7
8
9
                                        



                                                                      
                                                                 
                                                                     
                                                                                   
                                                            
                                                                           

                                                                               
                                                                                                  
                                                                                             

                                                                                
                                                                           
                                                                 
                                                                                
                                                                                            
                                                                              
                                                                         
                                                           
                                                                              
                                                                      
                                                             



                            







                                 
                           
                             
                     
                      
                       
                          



                        
                                
                       
                              
 

                             
                          
                                
 

                                
                                       

                         


            


                                      


              
                       


                                 
import { NgModule } from '@angular/core'
import { SharedFormModule } from '@app/shared/shared-forms'
import { SharedGlobalIconModule } from '@app/shared/shared-icons'
import { SharedMainModule } from '@app/shared/shared-main'
import { SharedModerationModule } from '@app/shared/shared-moderation'
import { SharedShareModal } from '@app/shared/shared-share-modal'
import { SharedSupportModal } from '@app/shared/shared-support-modal'
import { SharedUserSubscriptionModule } from '@app/shared/shared-user-subscription'
import { SharedVideoModule } from '@app/shared/shared-video'
import { SharedVideoCommentModule } from '@app/shared/shared-video-comment'
import { SharedVideoMiniatureModule } from '@app/shared/shared-video-miniature'
import { SharedVideoPlaylistModule } from '@app/shared/shared-video-playlist'
import { SharedActorImageModule } from '../../shared/shared-actor-image/shared-actor-image.module'
import { VideoCommentService } from '../../shared/shared-video-comment/video-comment.service'
import { VideoCommentAddComponent } from './comment/video-comment-add.component'
import { VideoCommentComponent } from './comment/video-comment.component'
import { VideoCommentsComponent } from './comment/video-comments.component'
import { PlayerStylesComponent } from './player-styles.component'
import { RecommendationsModule } from './recommendations/recommendations.module'
import { TimestampRouteTransformerDirective } from './timestamp-route-transformer.directive'
import { VideoAvatarChannelComponent } from './video-avatar-channel.component'
import { VideoDescriptionComponent } from './video-description.component'
import { VideoRateComponent } from './video-rate.component'
import { VideoWatchPlaylistComponent } from './video-watch-playlist.component'
import { VideoWatchRoutingModule } from './video-watch-routing.module'
import { VideoWatchComponent } from './video-watch.component'

@NgModule({
  imports: [
    VideoWatchRoutingModule,
    RecommendationsModule,

    SharedMainModule,
    SharedFormModule,
    SharedVideoMiniatureModule,
    SharedVideoPlaylistModule,
    SharedUserSubscriptionModule,
    SharedModerationModule,
    SharedGlobalIconModule,
    SharedVideoCommentModule,
    SharedShareModal,
    SharedVideoModule,
    SharedSupportModal,
    SharedActorImageModule
  ],

  declarations: [
    VideoWatchComponent,
    VideoWatchPlaylistComponent,
    VideoRateComponent,
    VideoDescriptionComponent,

    VideoCommentsComponent,
    VideoCommentAddComponent,
    VideoCommentComponent,
    VideoAvatarChannelComponent,

    VideoAvatarChannelComponent,

    TimestampRouteTransformerDirective,

    PlayerStylesComponent
  ],

  exports: [
    VideoWatchComponent,

    TimestampRouteTransformerDirective
  ],

  providers: [
    VideoCommentService
  ]
})
export class VideoWatchModule { }