blob: 63c163da68061c6582ef7d628f470cb959a3ccf5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
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'
@Component({
selector: 'my-confirm',
templateUrl: './confirm.component.html',
styleUrls: [ './confirm.component.scss' ]
})
export class ConfirmComponent implements OnInit {
@ViewChild('confirmModal') 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(() => this.confirmService.confirmResponse.next(false))
}
}
|