aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+admin/moderation/abuse-list/moderation-comment-modal.component.ts
blob: 23738f9cd0c7a9df0040859d9a9d4a27d33bbe2a (plain) (tree)
1
2
3
4
5
6
7
8
                                                                                  
                                    

                                                                                                     

                                                                        
                                                   
                                      






                                                                                     
                                                       

                                                       
                               




                                                         
                               

                                                           






                      
                                                                             


      
                                     
                                        
                                                                             





                                                              
           





                                   
                                                                            
 
                                                                             


                                                                
 
                                                       
                       
            
 

                                                 


   
import { Component, EventEmitter, OnInit, Output, ViewChild } from '@angular/core'
import { Notifier } from '@app/core'
import { FormReactive, FormValidatorService, AbuseValidatorsService } 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 { I18n } from '@ngx-translate/i18n-polyfill'
import { Abuse } 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<string>()

  private abuseToComment: Abuse
  private openedModal: NgbModalRef

  constructor (
    protected formValidatorService: FormValidatorService,
    private modalService: NgbModal,
    private notifier: Notifier,
    private abuseService: AbuseService,
    private abuseValidatorsService: AbuseValidatorsService,
    private i18n: I18n
  ) {
    super()
  }

  ngOnInit () {
    this.buildForm({
      moderationComment: this.abuseValidatorsService.ABUSE_MODERATION_COMMENT
    })
  }

  openModal (abuseToComment: Abuse) {
    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(this.i18n('Comment updated.'))

            this.commentUpdated.emit(moderationComment)
            this.hide()
          },

          err => this.notifier.error(err.message)
        )
  }

}