mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
47 lines
869 B
Go
47 lines
869 B
Go
package status
|
|
|
|
import (
|
|
"github.com/rivo/tview"
|
|
"github.com/wtfutil/wtf/view"
|
|
)
|
|
|
|
type Widget struct {
|
|
view.TextWidget
|
|
|
|
CurrentIcon int
|
|
|
|
settings *Settings
|
|
}
|
|
|
|
func NewWidget(app *tview.Application, settings *Settings) *Widget {
|
|
widget := Widget{
|
|
TextWidget: view.NewTextWidget(app, nil, settings.common),
|
|
|
|
CurrentIcon: 0,
|
|
|
|
settings: settings,
|
|
}
|
|
|
|
return &widget
|
|
}
|
|
|
|
/* -------------------- Exported Functions -------------------- */
|
|
|
|
func (widget *Widget) Refresh() {
|
|
widget.Redraw(widget.animation)
|
|
}
|
|
|
|
/* -------------------- Unexported Functions -------------------- */
|
|
|
|
func (widget *Widget) animation() (string, string, bool) {
|
|
icons := []string{"|", "/", "-", "\\", "|"}
|
|
next := icons[widget.CurrentIcon]
|
|
|
|
widget.CurrentIcon++
|
|
if widget.CurrentIcon == len(icons) {
|
|
widget.CurrentIcon = 0
|
|
}
|
|
|
|
return widget.CommonSettings().Title, next, false
|
|
}
|