]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+videos/+video-watch/video-watch.module.ts
Fix playlist layout on mobile
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-watch / video-watch.module.ts
CommitLineData
67ed6552 1import { QRCodeModule } from 'angularx-qrcode'
a685e25c 2import { NgModule } from '@angular/core'
67ed6552
C
3import { SharedFormModule } from '@app/shared/shared-forms'
4import { SharedGlobalIconModule } from '@app/shared/shared-icons'
5import { SharedMainModule } from '@app/shared/shared-main'
6import { SharedModerationModule } from '@app/shared/shared-moderation'
7import { SharedUserSubscriptionModule } from '@app/shared/shared-user-subscription'
cfde28ba 8import { SharedVideoCommentModule } from '@app/shared/shared-video-comment'
67ed6552
C
9import { SharedVideoMiniatureModule } from '@app/shared/shared-video-miniature'
10import { SharedVideoPlaylistModule } from '@app/shared/shared-video-playlist'
67ed6552 11import { NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap'
cfde28ba 12import { VideoCommentService } from '../../shared/shared-video-comment/video-comment.service'
4635f59d
C
13import { VideoCommentAddComponent } from './comment/video-comment-add.component'
14import { VideoCommentComponent } from './comment/video-comment.component'
4635f59d 15import { VideoCommentsComponent } from './comment/video-comments.component'
4635f59d 16import { VideoShareComponent } from './modal/video-share.component'
67ed6552 17import { VideoSupportComponent } from './modal/video-support.component'
cfde28ba 18import { RecommendationsModule } from './recommendations/recommendations.module'
67ed6552
C
19import { TimestampRouteTransformerDirective } from './timestamp-route-transformer.directive'
20import { VideoDurationPipe } from './video-duration-formatter.pipe'
21import { VideoWatchPlaylistComponent } from './video-watch-playlist.component'
a685e25c 22import { VideoWatchRoutingModule } from './video-watch-routing.module'
a685e25c 23import { VideoWatchComponent } from './video-watch.component'
a685e25c
C
24
25@NgModule({
26 imports: [
27 VideoWatchRoutingModule,
d77ad726 28 NgbTooltipModule,
f36da21e 29 QRCodeModule,
67ed6552
C
30 RecommendationsModule,
31
32 SharedMainModule,
33 SharedFormModule,
34 SharedVideoMiniatureModule,
35 SharedVideoPlaylistModule,
36 SharedUserSubscriptionModule,
37 SharedModerationModule,
cfde28ba
C
38 SharedGlobalIconModule,
39 SharedVideoCommentModule
a685e25c
C
40 ],
41
42 declarations: [
43 VideoWatchComponent,
72675ebe 44 VideoWatchPlaylistComponent,
a685e25c 45
a685e25c 46 VideoShareComponent,
07fa4c97 47 VideoSupportComponent,
4635f59d
C
48 VideoCommentsComponent,
49 VideoCommentAddComponent,
b29bf61d
RK
50 VideoCommentComponent,
51
67ed6552
C
52 TimestampRouteTransformerDirective,
53 VideoDurationPipe,
b29bf61d 54 TimestampRouteTransformerDirective
a685e25c
C
55 ],
56
57 exports: [
b29bf61d
RK
58 VideoWatchComponent,
59
60 TimestampRouteTransformerDirective
a685e25c
C
61 ],
62
63 providers: [
4635f59d 64 VideoCommentService
a685e25c
C
65 ]
66})
67export class VideoWatchModule { }