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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
import { Component, EventEmitter, OnInit, Output, ViewChild } from '@angular/core'
import { Notifier } from '@app/core'
import { FormReactive, FormValidatorService } from '@app/shared/shared-forms'
import { Video } from '@app/shared/shared-main'
import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap/modal/modal-ref'
import { VIDEO_BLOCK_REASON_VALIDATOR } from '../form-validators/video-block-validators'
import { VideoBlockService } from './video-block.service'
@Component({
selector: 'my-video-block',
templateUrl: './video-block.component.html',
styleUrls: [ './video-block.component.scss' ]
})
export class VideoBlockComponent extends FormReactive implements OnInit {
@ViewChild('modal', { static: true }) modal: NgbModal
@Output() videoBlocked = new EventEmitter()
videos: Video[]
error: string = null
private openedModal: NgbModalRef
constructor (
protected formValidatorService: FormValidatorService,
private modalService: NgbModal,
private videoBlocklistService: VideoBlockService,
private notifier: Notifier
) {
super()
}
ngOnInit () {
const defaultValues = { unfederate: 'true' }
this.buildForm({
reason: VIDEO_BLOCK_REASON_VALIDATOR,
unfederate: null
}, defaultValues)
}
isMultiple () {
return this.videos.length > 1
}
getSingleVideo () {
return this.videos[0]
}
hasLive () {
return this.videos.some(v => v.isLive)
}
hasLocal () {
return this.videos.some(v => v.isLocal)
}
show (videos: Video[]) {
this.videos = videos
this.openedModal = this.modalService.open(this.modal, { centered: true, keyboard: false })
}
hide () {
this.openedModal.close()
this.openedModal = null
}
block () {
const options = this.videos.map(v => ({
videoId: v.id,
reason: this.form.value['reason'] || undefined,
unfederate: v.isLocal
? this.form.value['unfederate']
: undefined
}))
this.videoBlocklistService.blockVideo(options)
.subscribe({
next: () => {
const message = this.isMultiple
? $localize`Blocked ${this.videos.length} videos.`
: $localize`Blocked ${this.getSingleVideo().name}`
this.notifier.success(message)
this.hide()
for (const o of options) {
const video = this.videos.find(v => v.id === o.videoId)
video.blacklisted = true
video.blacklistedReason = o.reason
}
this.videoBlocked.emit()
},
error: err => this.notifier.error(err.message)
})
}
}
|