« get me outta code hell

CancelDialog.js « dialogs « ui - tui-lib - Pure Node.js library for making visual command-line programs (ala vim, ncdu)
about summary refs log tree commit diff
path: root/ui/dialogs/CancelDialog.js
blob: 9069d435ad80cb03b1b9f568d45b85c954483a15 (plain)
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
import {Button, Form} from 'tui-lib/ui/controls'
import {Label, Pane} from 'tui-lib/ui/presentation'
import {FocusElement} from 'tui-lib/ui/primitives'

import telc from 'tui-lib/util/telchars'

export default class CancelDialog extends FocusElement {
  // A basic cancel dialog. Has one buttons, cancel, and a label.
  // The escape (esc) key can be used to exit the dialog (which sends a
  // 'cancelled' event, as the cancel button also does).

  constructor(text) {
    super()

    this.pane = new Pane()
    this.addChild(this.pane)

    this.cancelBtn = new Button('Cancel')
    this.pane.addChild(this.cancelBtn)

    this.label = new Label(text)
    this.pane.addChild(this.label)

    this.initEventListeners()
  }

  initEventListeners() {
    this.cancelBtn.on('pressed', () => this.cancelPressed())
  }

  fixLayout() {
    this.w = this.parent.contentW
    this.h = this.parent.contentH

    this.pane.w = Math.max(40, 4 + this.label.w)
    this.pane.h = 7
    this.pane.centerInParent()

    this.label.x = Math.floor((this.pane.contentW - this.label.w) / 2)
    this.label.y = 1

    this.cancelBtn.x = Math.floor(
      (this.pane.contentW - this.cancelBtn.w) / 2)
    this.cancelBtn.y = this.pane.contentH - 2
  }

  selected() {
    this.root.select(this.cancelBtn)
  }

  keyPressed(keyBuf) {
    if (telc.isCancel(keyBuf)) {
      this.emit('cancelled')
    }
  }

  cancelPressed() {
    this.emit('cancelled')
  }
}