wuzz/status-line.go

59 lines
1.0 KiB
Go
Raw Normal View History

2017-03-04 02:18:48 +00:00
package main
import (
"fmt"
2017-03-07 00:09:25 +00:00
"strconv"
2017-03-04 02:18:48 +00:00
"text/template"
"github.com/jroimartin/gocui"
)
type StatusLine struct {
tpl *template.Template
}
type StatusLineFunctions struct {
app *App
2017-03-04 02:18:48 +00:00
}
func (_ *StatusLineFunctions) Version() string {
return VERSION
}
func (s *StatusLineFunctions) Duration() string {
if len(s.app.history) == 0 {
return ""
}
return s.app.history[s.app.historyIndex].Duration.String()
}
2017-03-07 00:09:25 +00:00
func (s *StatusLineFunctions) HistorySize() string {
return strconv.Itoa(len(s.app.history))
}
func (s *StatusLineFunctions) RequestNumber() string {
i := s.app.historyIndex
if len(s.app.history) > 0 {
i += 1
}
return strconv.Itoa(i)
}
func (s *StatusLine) Update(v *gocui.View, a *App) {
2017-03-04 02:18:48 +00:00
v.Clear()
err := s.tpl.Execute(v, &StatusLineFunctions{app: a})
2017-03-04 02:18:48 +00:00
if err != nil {
fmt.Fprintf(v, "StatusLine update error: %v", err)
}
}
func NewStatusLine(format string) (*StatusLine, error) {
tpl, err := template.New("status line").Parse(format)
if err != nil {
return nil, err
}
return &StatusLine{
tpl: tpl,
}, nil
}