sampler-fork/component/component.go

58 lines
1.0 KiB
Go
Raw Normal View History

2019-02-24 04:49:09 +00:00
package component
2019-01-31 00:02:38 +00:00
import (
2019-03-14 03:01:44 +00:00
ui "github.com/gizak/termui/v3"
"github.com/sqshq/sampler/config"
"github.com/sqshq/sampler/data"
2019-01-31 00:02:38 +00:00
)
2019-01-31 01:41:51 +00:00
type Component struct {
ui.Block
data.Consumer
*Alerter
Type config.ComponentType
Title string
Position config.Position
Size config.Size
RefreshRateMs int
2019-01-31 00:02:38 +00:00
}
func NewComponent(c config.ComponentConfig, t config.ComponentType) *Component {
consumer := data.NewConsumer()
block := *ui.NewBlock()
block.Title = c.Title
return &Component{
Block: block,
Consumer: consumer,
Alerter: NewAlerter(consumer.AlertChannel),
Type: t,
Title: c.Title,
Position: c.Position,
Size: c.Size,
RefreshRateMs: *c.RefreshRateMs,
}
}
func (c *Component) Move(x, y int) {
c.Position.X += x
c.Position.Y += y
c.normalize()
2019-01-31 00:02:38 +00:00
}
func (c *Component) Resize(x, y int) {
c.Size.X += x
c.Size.Y += y
c.normalize()
}
func (c *Component) normalize() {
if c.Position.X < 0 {
c.Position.X = 0
}
if c.Position.Y < 0 {
c.Position.Y = 0
}
2019-01-31 00:02:38 +00:00
}