]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/videos/+video-watch/video-watch.module.ts
Fix margin-content and miniature thumbnail width on mobile, fix media queries for...
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / video-watch.module.ts
index 085a9ec5a36a15e078a9a6682c97c3950bd62256..9b445269d3634a513a22a1c9b3c3dca66ce3158e 100644 (file)
@@ -1,45 +1,48 @@
 import { NgModule } from '@angular/core'
-import { TooltipModule } from 'ngx-bootstrap/tooltip'
-import { ClipboardModule } from 'ngx-clipboard'
+import { VideoSupportComponent } from '@app/videos/+video-watch/modal/video-support.component'
 import { SharedModule } from '../../shared'
-import { MarkdownService } from '../shared'
 import { VideoCommentAddComponent } from './comment/video-comment-add.component'
 import { VideoCommentComponent } from './comment/video-comment.component'
 import { VideoCommentService } from './comment/video-comment.service'
 import { VideoCommentsComponent } from './comment/video-comments.component'
-import { VideoDownloadComponent } from './modal/video-download.component'
-import { VideoReportComponent } from './modal/video-report.component'
 import { VideoShareComponent } from './modal/video-share.component'
-
 import { VideoWatchRoutingModule } from './video-watch-routing.module'
-
 import { VideoWatchComponent } from './video-watch.component'
+import { NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap'
+import { RecommendationsModule } from '@app/videos/recommendations/recommendations.module'
+import { VideoWatchPlaylistComponent } from '@app/videos/+video-watch/video-watch-playlist.component'
+import { QRCodeModule } from 'angularx-qrcode'
+import { TimestampRouteTransformerDirective } from '@app/shared/angular/timestamp-route-transformer.directive'
 
 @NgModule({
   imports: [
     VideoWatchRoutingModule,
     SharedModule,
-    ClipboardModule,
-    TooltipModule.forRoot()
+    NgbTooltipModule,
+    QRCodeModule,
+    RecommendationsModule
   ],
 
   declarations: [
     VideoWatchComponent,
+    VideoWatchPlaylistComponent,
 
-    VideoDownloadComponent,
     VideoShareComponent,
-    VideoReportComponent,
+    VideoSupportComponent,
     VideoCommentsComponent,
     VideoCommentAddComponent,
-    VideoCommentComponent
+    VideoCommentComponent,
+
+    TimestampRouteTransformerDirective
   ],
 
   exports: [
-    VideoWatchComponent
+    VideoWatchComponent,
+
+    TimestampRouteTransformerDirective
   ],
 
   providers: [
-    MarkdownService,
     VideoCommentService
   ]
 })