summaryrefslogtreecommitdiffstats
path: root/widgets/statusbar.go
blob: 47279609e50a1640e89d3ba2d9c6e97eae17b5cf (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 (sb *StatusBar) Draw(buf *ui.Buffer) {
	sb.Block.Draw(buf)

	hostname, err := os.Hostname()
	if err != nil {
		log.Printf(tr.Value("error.nohostname", err.Error()))
		return
	}
	buf.SetString(
		hostname,
		ui.Theme.Default,
		image.Pt(sb.Inner.Min.X, sb.Inner.Min.Y+(sb.Inner.Dy()/2)),
	)

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

	buf.SetString(
		"gotop",
		ui.Theme.Default,
		image.Pt(
			sb.Inner.Max.X-6,
			sb.Inner.Min.Y+(sb.Inner.Dy()/2),
		),
	)
}