]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/+video-watch/modal/video-report.component.ts
d9768fdac830e3e5947bd5f310aa41a0480c3a84
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / modal / video-report.component.ts
1 import { Component, Input, OnInit, ViewChild } from '@angular/core'
2 import { NotificationsService } from 'angular2-notifications'
3 import { ModalDirective } from 'ngx-bootstrap/modal'
4 import { FormReactive, VideoAbuseService } from '../../../shared/index'
5 import { VideoDetails } from '../../../shared/video/video-details.model'
6 import { I18n } from '@ngx-translate/i18n-polyfill'
7 import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service'
8 import { VideoAbuseValidatorsService } from '@app/shared/forms/form-validators/video-abuse-validators.service'
9
10 @Component({
11 selector: 'my-video-report',
12 templateUrl: './video-report.component.html',
13 styleUrls: [ './video-report.component.scss' ]
14 })
15 export class VideoReportComponent extends FormReactive implements OnInit {
16 @Input() video: VideoDetails = null
17
18 @ViewChild('modal') modal: ModalDirective
19
20 error: string = null
21
22 constructor (
23 protected formValidatorService: FormValidatorService,
24 private videoAbuseValidatorsService: VideoAbuseValidatorsService,
25 private videoAbuseService: VideoAbuseService,
26 private notificationsService: NotificationsService,
27 private i18n: I18n
28 ) {
29 super()
30 }
31
32 ngOnInit () {
33 this.buildForm({
34 reason: this.videoAbuseValidatorsService.VIDEO_ABUSE_REASON
35 })
36 }
37
38 show () {
39 this.modal.show()
40 }
41
42 hide () {
43 this.modal.hide()
44 }
45
46 report () {
47 const reason = this.form.value['reason']
48
49 this.videoAbuseService.reportVideo(this.video.id, reason)
50 .subscribe(
51 () => {
52 this.notificationsService.success(this.i18n('Success'), this.i18n('Video reported.'))
53 this.hide()
54 },
55
56 err => this.notificationsService.error(this.i18n('Error'), err.message)
57 )
58 }
59 }