Update spinner to use proper tea.Tick subscription

This commit is contained in:
Christian Rocha 2020-05-11 17:33:28 -04:00
parent 5179df1982
commit a72bf9128d
No known key found for this signature in database
GPG Key ID: D6CC7A16E5878018

View File

@ -50,7 +50,7 @@ func NewModel() Model {
}
// TickMsg indicates that the timer has ticked and we should render a frame
type TickMsg struct{}
type TickMsg time.Time
// Update is the Tea update function
func Update(msg tea.Msg, m Model) (Model, tea.Cmd) {
@ -94,8 +94,7 @@ func MakeSub(model tea.Model) (tea.Sub, error) {
if !ok {
return nil, assertionErr
}
return func() tea.Msg {
time.Sleep(time.Second / time.Duration(m.FPS))
return TickMsg{}
}, nil
return tea.Tick(time.Second/time.Duration(m.FPS), func(t time.Time) tea.Msg {
return TickMsg(t)
}), nil
}