63 lines
1.2 KiB
Go
63 lines
1.2 KiB
Go
|
package textbox
|
||
|
|
||
|
import (
|
||
|
ui "github.com/gizak/termui/v3"
|
||
|
"github.com/sqshq/sampler/component"
|
||
|
"github.com/sqshq/sampler/config"
|
||
|
"github.com/sqshq/sampler/console"
|
||
|
"github.com/sqshq/sampler/data"
|
||
|
"image"
|
||
|
)
|
||
|
|
||
|
type TextBox struct {
|
||
|
*ui.Block
|
||
|
*data.Consumer
|
||
|
alert *data.Alert
|
||
|
text string
|
||
|
border bool
|
||
|
}
|
||
|
|
||
|
func NewTextBox(c config.TextBoxConfig, palette console.Palette) *TextBox {
|
||
|
|
||
|
box := TextBox{
|
||
|
Block: component.NewBlock(c.Title, *c.Border, palette),
|
||
|
Consumer: data.NewConsumer(),
|
||
|
}
|
||
|
|
||
|
go func() {
|
||
|
for {
|
||
|
select {
|
||
|
case sample := <-box.SampleChannel:
|
||
|
box.text = sample.Value
|
||
|
case alert := <-box.AlertChannel:
|
||
|
box.alert = alert
|
||
|
}
|
||
|
}
|
||
|
}()
|
||
|
|
||
|
return &box
|
||
|
}
|
||
|
|
||
|
func (t *TextBox) Draw(buffer *ui.Buffer) {
|
||
|
|
||
|
t.Block.Draw(buffer)
|
||
|
|
||
|
cells := ui.ParseStyles(t.text, ui.Theme.Paragraph.Text)
|
||
|
cells = ui.WrapCells(cells, uint(t.Inner.Dx()))
|
||
|
|
||
|
rows := ui.SplitCells(cells, '\n')
|
||
|
|
||
|
for y, row := range rows {
|
||
|
if y+t.Inner.Min.Y >= t.Inner.Max.Y {
|
||
|
break
|
||
|
}
|
||
|
row = ui.TrimCells(row, t.Inner.Dx())
|
||
|
for _, cx := range ui.BuildCellWithXArray(row) {
|
||
|
x, cell := cx.X, cx.Cell
|
||
|
buffer.SetCell(cell, image.Pt(x, y+1).Add(t.Inner.Min))
|
||
|
}
|
||
|
}
|
||
|
|
||
|
component.RenderAlert(t.alert, t.Rectangle, buffer)
|
||
|
}
|