Reorganize client shared modules
[oweals/peertube.git] / client / src / app / shared / shared-moderation / video-block.component.ts
1 import { Component, EventEmitter, Input, OnInit, Output, ViewChild } from '@angular/core'
2 import { Notifier } from '@app/core'
3 import { FormReactive, FormValidatorService, VideoBlockValidatorsService } from '@app/shared/shared-forms'
4 import { Video } from '@app/shared/shared-main'
5 import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
6 import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap/modal/modal-ref'
7 import { I18n } from '@ngx-translate/i18n-polyfill'
8 import { VideoBlockService } from './video-block.service'
9
10 @Component({
11   selector: 'my-video-block',
12   templateUrl: './video-block.component.html',
13   styleUrls: [ './video-block.component.scss' ]
14 })
15 export class VideoBlockComponent extends FormReactive implements OnInit {
16   @Input() video: Video = null
17
18   @ViewChild('modal', { static: true }) modal: NgbModal
19
20   @Output() videoBlocked = new EventEmitter()
21
22   error: string = null
23
24   private openedModal: NgbModalRef
25
26   constructor (
27     protected formValidatorService: FormValidatorService,
28     private modalService: NgbModal,
29     private videoBlockValidatorsService: VideoBlockValidatorsService,
30     private videoBlocklistService: VideoBlockService,
31     private notifier: Notifier,
32     private i18n: I18n
33   ) {
34     super()
35   }
36
37   ngOnInit () {
38     const defaultValues = { unfederate: 'true' }
39
40     this.buildForm({
41       reason: this.videoBlockValidatorsService.VIDEO_BLOCK_REASON,
42       unfederate: null
43     }, defaultValues)
44   }
45
46   show () {
47     this.openedModal = this.modalService.open(this.modal, { centered: true, keyboard: false })
48   }
49
50   hide () {
51     this.openedModal.close()
52     this.openedModal = null
53   }
54
55   block () {
56     const reason = this.form.value[ 'reason' ] || undefined
57     const unfederate = this.video.isLocal ? this.form.value[ 'unfederate' ] : undefined
58
59     this.videoBlocklistService.blockVideo(this.video.id, reason, unfederate)
60         .subscribe(
61           () => {
62             this.notifier.success(this.i18n('Video blocked.'))
63             this.hide()
64
65             this.video.blacklisted = true
66             this.video.blockedReason = reason
67
68             this.videoBlocked.emit()
69           },
70
71           err => this.notifier.error(err.message)
72         )
73   }
74 }