forked from chainreactors/tui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfirm.go
More file actions
93 lines (83 loc) · 1.73 KB
/
confirm.go
File metadata and controls
93 lines (83 loc) · 1.73 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
package tui
import (
"bytes"
"fmt"
"github.com/charmbracelet/bubbles/textinput"
tea "github.com/charmbracelet/bubbletea"
"os"
"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
handle func()
*bytes.Buffer
}
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" {
if m.handle != nil {
m.handle()
}
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())
}
func (m *ConfirmModel) Run() error {
p := tea.NewProgram(m)
_, err := p.Run()
if err != nil {
return err
}
fmt.Printf(HelpStyle("<Press enter to exit>\n"))
os.Stdin.Write([]byte("\n"))
ClearLines(1)
return nil
}
func (m *ConfirmModel) SetHandle(handle func()) {
m.handle = handle
}
func (m *ConfirmModel) GetConfirmed() bool {
return m.confirmed
}