-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfirm.go
66 lines (59 loc) · 1.28 KB
/
confirm.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package tui
import (
"fmt"
"github.com/charmbracelet/bubbles/textinput"
tea "github.com/charmbracelet/bubbletea"
"strings"
)
func NewConfirm(title string) *ConfirmModel {
ti := textinput.New()
ti.Placeholder = "y/n"
ti.Focus()
return &ConfirmModel{
textInput: ti,
Title: title,
}
}
type ConfirmModel struct {
textInput textinput.Model
Title string
quitting bool
Confirmed bool
}
func (m ConfirmModel) Init() tea.Cmd {
return textinput.Blink
}
func (m ConfirmModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
switch msg := msg.(type) {
case tea.KeyMsg:
switch msg.Type {
case tea.KeyEsc, tea.KeyCtrlC, tea.KeyCtrlQ:
m.quitting = true
return m, tea.Quit
case tea.KeyEnter:
input := strings.ToLower(strings.TrimSpace(m.textInput.Value()))
if input == "yes" || input == "y" {
m.Confirmed = true
m.quitting = true
return m, tea.Quit
} else if input == "no" || input == "n" {
m.Confirmed = false
m.quitting = true
return m, tea.Quit
}
}
}
var cmd tea.Cmd
m.textInput, cmd = m.textInput.Update(msg)
return m, cmd
}
func (m ConfirmModel) View() string {
if m.quitting {
if m.Confirmed {
return "You chose: Yes\n"
}
return "You chose: No\n"
}
return fmt.Sprintf(
"%s(yes/no)\n\n%s\n", m.Title, m.textInput.View())
}