mirror of
https://github.com/maaslalani/confetty.git
synced 2024-11-21 23:26:40 +00:00
wait simplify
This commit is contained in:
parent
ebb2591f66
commit
46edff14e5
@ -30,9 +30,9 @@ func animate() tea.Cmd {
|
||||
})
|
||||
}
|
||||
|
||||
func waitASec(ms int) tea.Cmd {
|
||||
func wait(d time.Duration) tea.Cmd {
|
||||
return func() tea.Msg {
|
||||
time.Sleep(time.Millisecond * time.Duration(ms))
|
||||
time.Sleep(d)
|
||||
return nil
|
||||
}
|
||||
}
|
||||
@ -79,7 +79,7 @@ func InitialModel() model {
|
||||
}
|
||||
|
||||
func (m model) Init() tea.Cmd {
|
||||
return tea.Sequentially(waitASec(500), animate())
|
||||
return tea.Sequentially(wait(time.Second), animate())
|
||||
}
|
||||
|
||||
func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
|
||||
|
Loading…
Reference in New Issue
Block a user