blob: 850edc04520f602c090605bb1bc4b14a56ce4841 (
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
|
const ansi = require('../util/ansi')
const DisplayElement = require('./DisplayElement')
module.exports = class Label extends DisplayElement {
// A simple text display. Automatically adjusts size to fit text.
constructor(text='') {
super()
this.text = text
this.textAttributes = []
}
drawTo(writable) {
if (this.textAttributes.length) {
writable.write(ansi.setAttributes(this.textAttributes))
}
writable.write(ansi.moveCursor(this.absTop, this.absLeft))
writable.write(this.text)
if (this.textAttributes.length) {
writable.write(ansi.resetAttributes())
}
super.drawTo(writable)
}
set text(newText) {
this._text = newText
this.w = newText.length
}
get text() {
return this._text
}
}
|