package component import ( "fmt" ui "github.com/gizak/termui/v3" "github.com/sqshq/sampler/console" "github.com/sqshq/sampler/metadata" "image" ) const ( bindingsIndent = 4 ) type StatusBar struct { *ui.Block keyBindings []string text string } func NewStatusLine(configFileName string, palette console.Palette, license *metadata.License) *StatusBar { block := *ui.NewBlock() block.Border = false text := fmt.Sprintf(" %s %s | ", console.AppTitle, console.AppVersion) if license == nil || !license.Valid { text += console.AppLicenseWarning } else if license.Username != nil { text += fmt.Sprintf("%s | licensed to %s", configFileName, *license.Username) } else { text += fmt.Sprintf("%s | licensed to %s", configFileName, *license.Company) } return &StatusBar{ Block: NewBlock("", false, palette), text: text, keyBindings: []string{ "(q) quit", "(p) pause", "(<->) selection", "(ESC) reset alerts", }, } } func (s *StatusBar) Draw(buffer *ui.Buffer) { buffer.Fill(ui.NewCell(' ', ui.NewStyle(console.ColorClear, console.MenuColorBackground)), s.GetRect()) buffer.SetString(s.text, ui.NewStyle(console.MenuColorText, console.MenuColorBackground), s.Min) indent := bindingsIndent for _, binding := range s.keyBindings { buffer.SetString(binding, ui.NewStyle(console.MenuColorText, console.MenuColorBackground), image.Pt(s.Max.X-len(binding)-indent, s.Min.Y)) indent += bindingsIndent + len(binding) } s.Block.Draw(buffer) }