You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lntop/ui/views/summary.go

67 lines
1.5 KiB
Go

package views
import (
"fmt"
"github.com/edouardparis/lntop/ui/color"
"github.com/jroimartin/gocui"
)
const (
SUMMARY_LEFT = "summary_left"
SUMMARY_RIGHT = "summary_right"
)
type Summary struct {
left *gocui.View
right *gocui.View
NumPendingChannels uint32
NumActiveChannels uint32
NumInactiveChannels uint32
NumPeers uint32
BlockHeight uint32
Synced bool
}
func (s *Summary) Set(g *gocui.Gui, x0, y0, x1, y1 int) error {
var err error
s.left, err = g.SetView(SUMMARY_LEFT, x0, y0, x1/2, y1)
if err != nil {
if err != gocui.ErrUnknownView {
return err
}
}
s.left.Frame = false
s.right, err = g.SetView(SUMMARY_RIGHT, x1/2, y0, x1, y1)
if err != nil {
if err != gocui.ErrUnknownView {
return err
}
}
s.right.Frame = false
s.display()
return nil
}
func (s *Summary) Update() {
}
func (s *Summary) display() {
s.left.Clear()
fmt.Fprintln(s.left, color.Green("[ Channels ]"))
fmt.Fprintln(s.left, fmt.Sprintf("%s %4d", color.Cyan("Pending: "), s.NumPendingChannels))
fmt.Fprintln(s.left, fmt.Sprintf("%s %4d", color.Cyan("Active: "), s.NumActiveChannels))
fmt.Fprintln(s.left, fmt.Sprintf("%s %4d", color.Cyan("Inactive:"), s.NumInactiveChannels))
s.right.Clear()
fmt.Fprintln(s.right, color.Green("[ Network ]"))
fmt.Fprintln(s.right, fmt.Sprintf("%s %4d", color.Cyan("Block Height: "), s.BlockHeight))
fmt.Fprintln(s.right, fmt.Sprintf("%s %4d", color.Cyan("Synced: "), s.NumActiveChannels))
}
func NewSummary() *Summary {
return &Summary{}
}