X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fvideos%2F%2Bvideo-watch%2Fvideo-watch.module.ts;h=5fa50ecbb1fa30a584eb81e8ae9b0ddb4aee59d4;hb=b29bf61dbd518e5cef0b2f564ddc8f8a0657d089;hp=18319de1a7e241678e641f41cb29a1bb5a7cc365;hpb=c7e1e432b0e5d321ff2331cf3ddff56c43500788;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/videos/+video-watch/video-watch.module.ts b/client/src/app/videos/+video-watch/video-watch.module.ts index 18319de1a..5fa50ecbb 100644 --- a/client/src/app/videos/+video-watch/video-watch.module.ts +++ b/client/src/app/videos/+video-watch/video-watch.module.ts @@ -1,36 +1,51 @@ import { NgModule } from '@angular/core' - -import { VideoWatchRoutingModule } from './video-watch-routing.module' -import { MarkdownService } from '../shared' +import { VideoSupportComponent } from '@app/videos/+video-watch/modal/video-support.component' import { SharedModule } from '../../shared' -import { ClipboardModule } from 'ngx-clipboard' - +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 { VideoShareComponent } from './modal/video-share.component' +import { VideoWatchRoutingModule } from './video-watch-routing.module' import { VideoWatchComponent } from './video-watch.component' -import { VideoReportComponent } from './video-report.component' -import { VideoShareComponent } from './video-share.component' -import { VideoDownloadComponent } from './video-download.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 { InputSwitchModule } from 'primeng/inputswitch' +import { TimestampRouteTransformerDirective } from '@app/shared/angular/timestamp-route-transformer.directive' @NgModule({ imports: [ VideoWatchRoutingModule, SharedModule, - ClipboardModule + NgbTooltipModule, + QRCodeModule, + RecommendationsModule, + InputSwitchModule ], declarations: [ VideoWatchComponent, + VideoWatchPlaylistComponent, - VideoDownloadComponent, VideoShareComponent, - VideoReportComponent + VideoSupportComponent, + VideoCommentsComponent, + VideoCommentAddComponent, + VideoCommentComponent, + + TimestampRouteTransformerDirective ], exports: [ - VideoWatchComponent + VideoWatchComponent, + + TimestampRouteTransformerDirective ], providers: [ - MarkdownService + VideoCommentService ] }) export class VideoWatchModule { }