aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/core/confirm/confirm.component.ts
blob: 14b4ef324d113bce81b51cb5806a33170f8da844 (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
import { Component, HostListener, OnInit, ViewChild } from '@angular/core';

import { ModalDirective } from 'ng2-bootstrap/modal';

import { ConfirmService } from './confirm.service';

export interface ConfigChangedEvent {
  columns: { [id: string]: { isDisplayed: boolean }; };
  config: { resultsPerPage: number };
}

@Component({
  selector: 'my-confirm',
  templateUrl: './confirm.component.html'
})
export class ConfirmComponent implements OnInit {
  @ViewChild('confirmModal') confirmModal: ModalDirective;

  title = '';
  message = '';

  constructor (private confirmService: ConfirmService) {
    // Empty
  }

  ngOnInit() {
    this.confirmModal.config = {
      backdrop: 'static',
      keyboard: false
    };

    this.confirmService.showConfirm.subscribe(
      ({ title, message }) => {
        this.title = title;
        this.message = message;

        this.showModal();
      }
    );
  }

  @HostListener('keydown.enter')
  confirm() {
    this.confirmService.confirmResponse.next(true);
    this.hideModal();
  }

  @HostListener('keydown.esc')
  abort() {
    this.confirmService.confirmResponse.next(false);
    this.hideModal();
  }

  showModal() {
    this.confirmModal.show();
  }

  hideModal() {
    this.confirmModal.hide();
  }
}