]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-watch/video-watch.module.ts
Improve frontend accessibility
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / video-watch.module.ts
CommitLineData
a685e25c 1import { NgModule } from '@angular/core'
e8cb4409 2import { LinkifierService } from '@app/videos/+video-watch/comment/linkifier.service'
07fa4c97 3import { VideoSupportComponent } from '@app/videos/+video-watch/modal/video-support.component'
fb4fd623
C
4import { TooltipModule } from 'ngx-bootstrap/tooltip'
5import { ClipboardModule } from 'ngx-clipboard'
6import { SharedModule } from '../../shared'
7import { MarkdownService } from '../shared'
4635f59d
C
8import { VideoCommentAddComponent } from './comment/video-comment-add.component'
9import { VideoCommentComponent } from './comment/video-comment.component'
10import { VideoCommentService } from './comment/video-comment.service'
11import { VideoCommentsComponent } from './comment/video-comments.component'
12import { VideoDownloadComponent } from './modal/video-download.component'
13import { VideoReportComponent } from './modal/video-report.component'
14import { VideoShareComponent } from './modal/video-share.component'
a685e25c
C
15
16import { VideoWatchRoutingModule } from './video-watch-routing.module'
a685e25c
C
17
18import { VideoWatchComponent } from './video-watch.component'
4503cb2a 19import { NgxQRCodeModule } from 'ngx-qrcode2'
a685e25c
C
20
21@NgModule({
22 imports: [
23 VideoWatchRoutingModule,
c7e1e432 24 SharedModule,
e9189001 25 ClipboardModule,
4503cb2a
D
26 TooltipModule.forRoot(),
27 NgxQRCodeModule
a685e25c
C
28 ],
29
30 declarations: [
31 VideoWatchComponent,
32
a96aed15 33 VideoDownloadComponent,
a685e25c 34 VideoShareComponent,
4635f59d 35 VideoReportComponent,
07fa4c97 36 VideoSupportComponent,
4635f59d
C
37 VideoCommentsComponent,
38 VideoCommentAddComponent,
39 VideoCommentComponent
a685e25c
C
40 ],
41
42 exports: [
43 VideoWatchComponent
44 ],
45
46 providers: [
4635f59d 47 MarkdownService,
e8cb4409 48 LinkifierService,
4635f59d 49 VideoCommentService
a685e25c
C
50 ]
51})
52export class VideoWatchModule { }