« get me outta code hell

Button.js « form « 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/form/Button.js
blob: 86347a0ea2a8f5ca6144bde27a1700621ff5344f (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
const ansi = require('../../util/ansi')
const telc = require('../../util/telchars')

const FocusElement = require('./FocusElement')

module.exports = class ButtonInput extends FocusElement {
  // A button.

  constructor(text) {
    super()

    this.text = text

    this.cursorX = null
    this.cursorY = null
  }

  // Setting the text of the button should change the width of the button to
  // fit the text.
  //
  // TODO: Make this happen in fixLayout
  set text(newText) {
    this._text = newText
    this.w = newText.length
  }

  get text() {
    return this._text
  }

  drawTo(writable) {
    if (this.isFocused) {
      writable.write(ansi.invert())
    }

    writable.write(ansi.moveCursor(this.absTop, this.absLeft))
    writable.write(this.text)

    writable.write(ansi.resetAttributes())

    super.drawTo(writable)
  }

  keyPressed(keyBuf) {
    if (telc.isSelect(keyBuf)) {
      this.emit('pressed')
    }
  }
}