aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-watch/modal/video-blacklist.component.ts
blob: 2c123ebed40af1839c10a914340a8b2dd2aab2ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import { Component, Input, OnInit, ViewChild } from '@angular/core'
import { NotificationsService } from 'angular2-notifications'
import { FormReactive, VideoBlacklistService, VideoBlacklistValidatorsService } from '../../../shared/index'
import { VideoDetails } from '../../../shared/video/video-details.model'
import { I18n } from '@ngx-translate/i18n-polyfill'
import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service'
import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap/modal/modal-ref'
import { RedirectService } from '@app/core'

@Component({
  selector: 'my-video-blacklist',
  templateUrl: './video-blacklist.component.html',
  styleUrls: [ './video-blacklist.component.scss' ]
})
export class VideoBlacklistComponent extends FormReactive implements OnInit {
  @Input() video: VideoDetails = null

  @ViewChild('modal') modal: NgbModal

  error: string = null

  private openedModal: NgbModalRef

  constructor (
    protected formValidatorService: FormValidatorService,
    private modalService: NgbModal,
    private videoBlacklistValidatorsService: VideoBlacklistValidatorsService,
    private videoBlacklistService: VideoBlacklistService,
    private notificationsService: NotificationsService,
    private redirectService: RedirectService,
    private i18n: I18n
  ) {
    super()
  }

  ngOnInit () {
    this.buildForm({
      reason: this.videoBlacklistValidatorsService.VIDEO_BLACKLIST_REASON
    })
  }

  show () {
    this.openedModal = this.modalService.open(this.modal, { keyboard: false })
  }

  hide () {
    this.openedModal.close()
    this.openedModal = null
  }

  blacklist () {
    const reason = this.form.value[ 'reason' ] || undefined

    this.videoBlacklistService.blacklistVideo(this.video.id, reason)
        .subscribe(
          () => {
            this.notificationsService.success(this.i18n('Success'), this.i18n('Video blacklisted.'))
            this.hide()
            this.redirectService.redirectToHomepage()
          },

          err => this.notificationsService.error(this.i18n('Error'), err.message)
        )
  }
}