mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
60 lines
1.3 KiB
Go
60 lines
1.3 KiB
Go
package clocks
|
|
|
|
import (
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/rivo/tview"
|
|
"github.com/wtfutil/wtf/wtf"
|
|
)
|
|
|
|
type Widget struct {
|
|
wtf.TextWidget
|
|
|
|
clockColl ClockCollection
|
|
dateFormat string
|
|
timeFormat string
|
|
settings *Settings
|
|
}
|
|
|
|
func NewWidget(app *tview.Application, settings *Settings) *Widget {
|
|
widget := Widget{
|
|
TextWidget: wtf.NewTextWidget(app, "World Clocks", "clocks", false),
|
|
|
|
settings: settings,
|
|
dateFormat: settings.dateFormat,
|
|
timeFormat: settings.timeFormat,
|
|
}
|
|
|
|
widget.clockColl = widget.buildClockCollection(settings.locations)
|
|
|
|
return &widget
|
|
}
|
|
|
|
/* -------------------- Exported Functions -------------------- */
|
|
|
|
func (widget *Widget) Refresh() {
|
|
widget.display(widget.clockColl.Sorted(widget.settings.sort), widget.dateFormat, widget.timeFormat)
|
|
}
|
|
|
|
/* -------------------- Unexported Functions -------------------- */
|
|
|
|
func (widget *Widget) buildClockCollection(locData map[string]interface{}) ClockCollection {
|
|
clockColl := ClockCollection{}
|
|
|
|
for label, locStr := range locData {
|
|
timeLoc, err := time.LoadLocation(widget.sanitizeLocation(locStr.(string)))
|
|
if err != nil {
|
|
continue
|
|
}
|
|
|
|
clockColl.Clocks = append(clockColl.Clocks, NewClock(label, timeLoc))
|
|
}
|
|
|
|
return clockColl
|
|
}
|
|
|
|
func (widget *Widget) sanitizeLocation(locStr string) string {
|
|
return strings.Replace(locStr, " ", "_", -1)
|
|
}
|