mirror of
https://github.com/taigrr/bubbletea.git
synced 2026-04-02 02:59:09 -07:00
feat: add Sequence for running commands in order. Closes #413.
This deprecates Sequentially.
This commit is contained in:
22
tea.go
22
tea.go
@@ -532,6 +532,17 @@ func (p *Program) StartReturningModel() (Model, error) {
|
||||
case execMsg:
|
||||
// NB: this blocks.
|
||||
p.exec(msg.cmd, msg.fn)
|
||||
|
||||
case sequenceMsg:
|
||||
go func() {
|
||||
// Execute commands one at a time, in order.
|
||||
for _, cmd := range msg {
|
||||
select {
|
||||
case p.msgs <- cmd():
|
||||
case <-p.ctx.Done():
|
||||
}
|
||||
}
|
||||
}()
|
||||
}
|
||||
|
||||
// Process internal messages for the renderer.
|
||||
@@ -736,3 +747,14 @@ func (p *Program) Printf(template string, args ...interface{}) {
|
||||
messageBody: fmt.Sprintf(template, args...),
|
||||
}
|
||||
}
|
||||
|
||||
// sequenceMsg is used interally to run the the given commands in order.
|
||||
type sequenceMsg []Cmd
|
||||
|
||||
// Sequence runs the given commands one at a time, in order. Contrast this with
|
||||
// Batch, which runs commands concurrently.
|
||||
func Sequence(cmds ...Cmd) Cmd {
|
||||
return func() Msg {
|
||||
return sequenceMsg(cmds)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user