summaryrefslogtreecommitdiffstats
path: root/widgets/statusbar.go
blob: f610081b443bb56462aa9cce5e05cc05d0778268 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package widgets

import (
	"image"
	"log"
	"os"
	"time"

	ui "github.com/gizak/termui/v3"
)

type StatusBar struct {
	ui.Block
}

func NewStatusBar() *StatusBar {
	self := &StatusBar{*ui.NewBlock()}
	self.Border = false
	return self
}

func (self *StatusBar) Draw(buf *ui.Buffer) {
	self.Block.Draw(buf)

	hostname, err := os.Hostname()
	if err != nil {
		log.Printf("could not get hostname: %v", err)
		return
	}
	buf.SetString(
		hostname,
		ui.NewStyle(ui.ColorWhite),
		image.Pt(self.Inner.Min.X, self.Inner.Min.Y+(self.Inner.Dy()/2)),
	)

	currentTime := time.Now()
	formattedTime := currentTime.Format("15:04:05")
	buf.SetString(
		formattedTime,
		ui.NewStyle(ui.ColorWhite),
		image.Pt(
			self.Inner.Min.X+(self.Inner.Dx()/2)-len(formattedTime)/2,
			self.Inner.Min.Y+(self.Inner.Dy()/2),
		),
	)

	buf.SetString(
		"gotop",
		ui.NewStyle(ui.ColorWhite),
		image.Pt(
			self.Inner.Max.X-6,
			self.Inner.Min.Y+(self.Inner.Dy()/2),
		),
	)
}