gum/confirm/command.go

34 lines
710 B
Go
Raw Normal View History

2022-07-26 21:43:26 +02:00
package confirm
import (
"os"
tea "github.com/charmbracelet/bubbletea"
)
// Run provides a shell script interface for prompting a user to confirm an
// action with an affirmative or negative answer.
func (o Options) Run() error {
m, err := tea.NewProgram(model{
affirmative: o.Affirmative,
negative: o.Negative,
confirmation: o.Default,
2022-07-26 21:43:26 +02:00
prompt: o.Prompt,
selectedStyle: o.SelectedStyle.ToLipgloss(),
unselectedStyle: o.UnselectedStyle.ToLipgloss(),
promptStyle: o.PromptStyle.ToLipgloss(),
}, tea.WithOutput(os.Stderr)).StartReturningModel()
if err != nil {
return err
}
if m.(model).confirmation {
os.Exit(0)
} else {
os.Exit(1)
}
2022-07-26 21:43:26 +02:00
return nil
}