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