import { Component, EventEmitter, OnInit, Output, ViewChild } from '@angular/core' import { Notifier } from '@app/core' import { AbuseValidatorsService, FormReactive, FormValidatorService } from '@app/shared/shared-forms' import { AbuseService } from '@app/shared/shared-moderation' import { NgbModal } from '@ng-bootstrap/ng-bootstrap' import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap/modal/modal-ref' import { AdminAbuse } from '@shared/models' @Component({ selector: 'my-moderation-comment-modal', templateUrl: './moderation-comment-modal.component.html', styleUrls: [ './moderation-comment-modal.component.scss' ] }) export class ModerationCommentModalComponent extends FormReactive implements OnInit { @ViewChild('modal', { static: true }) modal: NgbModal @Output() commentUpdated = new EventEmitter() private abuseToComment: AdminAbuse private openedModal: NgbModalRef constructor ( protected formValidatorService: FormValidatorService, private modalService: NgbModal, private notifier: Notifier, private abuseService: AbuseService, private abuseValidatorsService: AbuseValidatorsService ) { super() } ngOnInit () { this.buildForm({ moderationComment: this.abuseValidatorsService.ABUSE_MODERATION_COMMENT }) } openModal (abuseToComment: AdminAbuse) { this.abuseToComment = abuseToComment this.openedModal = this.modalService.open(this.modal, { centered: true }) this.form.patchValue({ moderationComment: this.abuseToComment.moderationComment }) } hide () { this.abuseToComment = undefined this.openedModal.close() this.form.reset() } async banUser () { const moderationComment: string = this.form.value[ 'moderationComment' ] this.abuseService.updateAbuse(this.abuseToComment, { moderationComment }) .subscribe( () => { this.notifier.success($localize`Comment updated.`) this.commentUpdated.emit(moderationComment) this.hide() }, err => this.notifier.error(err.message) ) } }