blob: 60bd442dd1354cbe526eabca58fc756f5dd466c0 (
plain) (
tree)
|
|
import { Component, EventEmitter, OnInit, Output, ViewChild } from '@angular/core'
import { NotificationsService } from 'angular2-notifications'
import { I18n } from '@ngx-translate/i18n-polyfill'
import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap/modal/modal-ref'
import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service'
import { FormReactive, UserValidatorsService } from '@app/shared/forms'
import { UserService } from '@app/shared/users'
import { User } from '../../../../../shared'
@Component({
selector: 'my-user-ban-modal',
templateUrl: './user-ban-modal.component.html',
styleUrls: [ './user-ban-modal.component.scss' ]
})
export class UserBanModalComponent extends FormReactive implements OnInit {
@ViewChild('modal') modal: NgbModal
@Output() userBanned = new EventEmitter<User | User[]>()
private usersToBan: User | User[]
private openedModal: NgbModalRef
constructor (
protected formValidatorService: FormValidatorService,
private modalService: NgbModal,
private notificationsService: NotificationsService,
private userService: UserService,
private userValidatorsService: UserValidatorsService,
private i18n: I18n
) {
super()
}
ngOnInit () {
this.buildForm({
reason: this.userValidatorsService.USER_BAN_REASON
})
}
openModal (user: User | User[]) {
this.usersToBan = user
this.openedModal = this.modalService.open(this.modal)
}
hideBanUserModal () {
this.usersToBan = undefined
this.openedModal.close()
}
async banUser () {
const reason = this.form.value['reason'] || undefined
this.userService.banUsers(this.usersToBan, reason)
.subscribe(
() => {
const message = Array.isArray(this.usersToBan)
? this.i18n('{{num}} users banned.', { num: this.usersToBan.length })
: this.i18n('User {{username}} banned.', { username: this.usersToBan.username })
this.notificationsService.success(this.i18n('Success'), message)
this.userBanned.emit(this.usersToBan)
this.hideBanUserModal()
},
err => this.notificationsService.error(this.i18n('Error'), err.message)
)
}
}
|