]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+videos/+video-watch/video-watch.module.ts
Bumped to version v5.2.1
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-watch / video-watch.module.ts
1 import { NgModule } from '@angular/core'
2 import { SharedFormModule } from '@app/shared/shared-forms'
3 import { SharedGlobalIconModule } from '@app/shared/shared-icons'
4 import { SharedMainModule } from '@app/shared/shared-main'
5 import { SharedModerationModule } from '@app/shared/shared-moderation'
6 import { SharedShareModal } from '@app/shared/shared-share-modal'
7 import { SharedSupportModal } from '@app/shared/shared-support-modal'
8 import { SharedUserSubscriptionModule } from '@app/shared/shared-user-subscription'
9 import { SharedVideoModule } from '@app/shared/shared-video'
10 import { SharedVideoCommentModule } from '@app/shared/shared-video-comment'
11 import { SharedVideoMiniatureModule } from '@app/shared/shared-video-miniature'
12 import { SharedVideoPlaylistModule } from '@app/shared/shared-video-playlist'
13 import { SharedActorImageModule } from '../../shared/shared-actor-image/shared-actor-image.module'
14 import { VideoCommentService } from '../../shared/shared-video-comment/video-comment.service'
15 import { PlayerStylesComponent } from './player-styles.component'
16 import {
17 ActionButtonsComponent,
18 PrivacyConcernsComponent,
19 RecommendationsModule,
20 VideoAlertComponent,
21 VideoAvatarChannelComponent,
22 VideoDescriptionComponent,
23 VideoRateComponent,
24 VideoWatchPlaylistComponent,
25 VideoAttributesComponent
26 } from './shared'
27 import { VideoCommentAddComponent } from './shared/comment/video-comment-add.component'
28 import { VideoCommentComponent } from './shared/comment/video-comment.component'
29 import { VideoCommentsComponent } from './shared/comment/video-comments.component'
30 import { TimestampRouteTransformerDirective } from './shared/timestamp-route-transformer.directive'
31 import { VideoWatchRoutingModule } from './video-watch-routing.module'
32 import { VideoWatchComponent } from './video-watch.component'
33
34 @NgModule({
35 imports: [
36 VideoWatchRoutingModule,
37 RecommendationsModule,
38
39 SharedMainModule,
40 SharedFormModule,
41 SharedVideoMiniatureModule,
42 SharedVideoPlaylistModule,
43 SharedUserSubscriptionModule,
44 SharedModerationModule,
45 SharedGlobalIconModule,
46 SharedVideoCommentModule,
47 SharedShareModal,
48 SharedVideoModule,
49 SharedSupportModal,
50 SharedActorImageModule
51 ],
52
53 declarations: [
54 VideoWatchComponent,
55 VideoWatchPlaylistComponent,
56 VideoRateComponent,
57 VideoDescriptionComponent,
58 PrivacyConcernsComponent,
59 ActionButtonsComponent,
60 VideoAlertComponent,
61 VideoAttributesComponent,
62
63 VideoCommentsComponent,
64 VideoCommentAddComponent,
65 VideoCommentComponent,
66 VideoAvatarChannelComponent,
67
68 VideoAvatarChannelComponent,
69
70 TimestampRouteTransformerDirective,
71
72 PlayerStylesComponent
73 ],
74
75 exports: [
76 VideoWatchComponent,
77
78 TimestampRouteTransformerDirective
79 ],
80
81 providers: [
82 VideoCommentService
83 ]
84 })
85 export class VideoWatchModule { }