]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+videos/+video-watch/video-watch.module.ts
Move player style in watch component
[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 { VideoCommentService } from '../../shared/shared-video-comment/video-comment.service'
14 import { VideoCommentAddComponent } from './comment/video-comment-add.component'
15 import { VideoCommentComponent } from './comment/video-comment.component'
16 import { VideoCommentsComponent } from './comment/video-comments.component'
17 import { PlayerStylesComponent } from './player-styles.component'
18 import { RecommendationsModule } from './recommendations/recommendations.module'
19 import { TimestampRouteTransformerDirective } from './timestamp-route-transformer.directive'
20 import { VideoAvatarChannelComponent } from './video-avatar-channel.component'
21 import { VideoWatchPlaylistComponent } from './video-watch-playlist.component'
22 import { VideoWatchRoutingModule } from './video-watch-routing.module'
23 import { VideoWatchComponent } from './video-watch.component'
24
25 @NgModule({
26 imports: [
27 VideoWatchRoutingModule,
28 RecommendationsModule,
29
30 SharedMainModule,
31 SharedFormModule,
32 SharedVideoMiniatureModule,
33 SharedVideoPlaylistModule,
34 SharedUserSubscriptionModule,
35 SharedModerationModule,
36 SharedGlobalIconModule,
37 SharedVideoCommentModule,
38 SharedShareModal,
39 SharedVideoModule,
40 SharedSupportModal
41 ],
42
43 declarations: [
44 VideoWatchComponent,
45 VideoWatchPlaylistComponent,
46
47 VideoCommentsComponent,
48 VideoCommentAddComponent,
49 VideoCommentComponent,
50
51 VideoAvatarChannelComponent,
52
53 TimestampRouteTransformerDirective,
54
55 PlayerStylesComponent
56 ],
57
58 exports: [
59 VideoWatchComponent,
60
61 TimestampRouteTransformerDirective
62 ],
63
64 providers: [
65 VideoCommentService
66 ]
67 })
68 export class VideoWatchModule { }