75 lines
2.1 KiB
TypeScript
75 lines
2.1 KiB
TypeScript
import { Component, ElementRef, HostListener, OnInit, ViewChild } from '@angular/core'
|
|
import { ConfirmService } from '@app/core/confirm/confirm.service'
|
|
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 { POP_STATE_MODAL_DISMISS } from '@app/shared/misc/constants'
|
|
|
|
@Component({
|
|
selector: 'my-confirm',
|
|
templateUrl: './confirm.component.html',
|
|
styleUrls: [ './confirm.component.scss' ]
|
|
})
|
|
export class ConfirmComponent implements OnInit {
|
|
@ViewChild('confirmModal', { static: true }) confirmModal: ElementRef
|
|
|
|
title = ''
|
|
message = ''
|
|
expectedInputValue = ''
|
|
inputLabel = ''
|
|
|
|
inputValue = ''
|
|
confirmButtonText = ''
|
|
|
|
private openedModal: NgbModalRef
|
|
|
|
constructor (
|
|
private modalService: NgbModal,
|
|
private confirmService: ConfirmService,
|
|
private i18n: I18n
|
|
) { }
|
|
|
|
ngOnInit () {
|
|
this.confirmService.showConfirm.subscribe(
|
|
({ title, message, expectedInputValue, inputLabel, confirmButtonText }) => {
|
|
this.title = title
|
|
this.message = message
|
|
|
|
this.inputLabel = inputLabel
|
|
this.expectedInputValue = expectedInputValue
|
|
|
|
this.confirmButtonText = confirmButtonText || this.i18n('Confirm')
|
|
|
|
this.showModal()
|
|
}
|
|
)
|
|
}
|
|
|
|
@HostListener('document:keydown.enter')
|
|
confirm () {
|
|
if (this.openedModal) this.openedModal.close()
|
|
}
|
|
|
|
isConfirmationDisabled () {
|
|
// No input validation
|
|
if (!this.inputLabel || !this.expectedInputValue) return false
|
|
|
|
return this.expectedInputValue !== this.inputValue
|
|
}
|
|
|
|
showModal () {
|
|
this.inputValue = ''
|
|
|
|
this.openedModal = this.modalService.open(this.confirmModal)
|
|
|
|
this.openedModal.result
|
|
.then(() => this.confirmService.confirmResponse.next(true))
|
|
.catch((reason: string) => {
|
|
// If the reason was that the user used the back button, we don't care about the confirm dialog result
|
|
if (!reason || reason !== POP_STATE_MODAL_DISMISS) {
|
|
this.confirmService.confirmResponse.next(false)
|
|
}
|
|
})
|
|
}
|
|
}
|