X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fshared%2Fshared-moderation%2Fvideo-block.component.ts;h=400913f0239998904ca5bc2e58d65cb722f3e927;hb=3cfa817672657df18260ece5b354efa0f3b6e317;hp=a6180dd14680872064536f83a395c5f948dfb2b8;hpb=4bdff96d77c03e5cce6052188f69a65bf6ea5781;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/shared/shared-moderation/video-block.component.ts b/client/src/app/shared/shared-moderation/video-block.component.ts index a6180dd14..400913f02 100644 --- a/client/src/app/shared/shared-moderation/video-block.component.ts +++ b/client/src/app/shared/shared-moderation/video-block.component.ts @@ -1,4 +1,4 @@ -import { Component, EventEmitter, Input, OnInit, Output, ViewChild } from '@angular/core' +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' @@ -13,12 +13,12 @@ import { VideoBlockService } from './video-block.service' styleUrls: [ './video-block.component.scss' ] }) export class VideoBlockComponent extends FormReactive implements OnInit { - @Input() video: Video = null - @ViewChild('modal', { static: true }) modal: NgbModal @Output() videoBlocked = new EventEmitter() + videos: Video[] + error: string = null private openedModal: NgbModalRef @@ -41,7 +41,25 @@ export class VideoBlockComponent extends FormReactive implements OnInit { }, defaultValues) } - show () { + 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 }) } @@ -51,17 +69,30 @@ export class VideoBlockComponent extends FormReactive implements OnInit { } block () { - const reason = this.form.value['reason'] || undefined - const unfederate = this.video.isLocal ? this.form.value['unfederate'] : undefined + 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(this.video.id, reason, unfederate) + this.videoBlocklistService.blockVideo(options) .subscribe({ next: () => { - this.notifier.success($localize`Video blocked.`) + const message = this.isMultiple + ? $localize`Blocked ${this.videos.length} videos.` + : $localize`Blocked ${this.getSingleVideo().name}` + + this.notifier.success(message) this.hide() - this.video.blacklisted = true - this.video.blacklistedReason = reason + 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() },