« get me outta code hell

Label.js « presentation « 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/presentation/Label.js
blob: 81223dfba4248245a39ce3e64ff287dc234a0047 (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
import {DisplayElement} from 'tui-lib/ui/primitives'

import * as ansi from 'tui-lib/util/ansi'

export default class Label extends DisplayElement {
  // A simple text display. Automatically adjusts size to fit text.

  constructor(text = '') {
    super()

    this.text = text
    this.textAttributes = []
  }

  fixLayout() {
    this.w = ansi.measureColumns(this.text)
  }

  drawTo(writable) {
    if (this.textAttributes.length) {
      writable.write(ansi.setAttributes(this.textAttributes))
    }

    this.writeTextTo(writable)

    if (this.textAttributes.length) {
      writable.write(ansi.resetAttributes())
    }

    super.drawTo(writable)
  }

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

  set text(newText) {
    const ret = this.setDep('text', newText)
    this.fixLayout()
    return ret
  }

  get text() {
    return this.getDep('text')
  }

  // Kinda bad, but works as long as you're overwriting the array instead of
  // mutating it.
  set textAttributes(val) { return this.setDep('textAttributes', val) }
  get textAttributes() { return this.getDep('textAttributes') }
}