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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
package eventstream
import (
"strings"
"charm.land/bubbles/v2/textinput"
tea "charm.land/bubbletea/v2"
"charm.land/lipgloss/v2"
)
type ExportModal struct {
visible bool
textInput textinput.Model
err string
}
func NewExportModal() ExportModal {
input := textinput.New()
input.Prompt = ""
input.CharLimit = 0
input.SetWidth(44)
input.SetStyles(textinput.DefaultStyles(true))
return ExportModal{textInput: input}
}
func (m ExportModal) Visible() bool {
return m.visible
}
// SetDarkMode updates export modal text input styles.
func (m ExportModal) SetDarkMode(isDark bool) ExportModal {
m.textInput.SetStyles(textinput.DefaultStyles(isDark))
return m
}
func (m ExportModal) Open(defaultName string) ExportModal {
m.visible = true
m.err = ""
m.textInput.SetValue(defaultName)
m.textInput.CursorEnd()
m.textInput.Focus()
return m
}
func (m ExportModal) Close() ExportModal {
m.visible = false
m.err = ""
m.textInput.Blur()
return m
}
// Update returns updated modal, submitted filename, and whether submit occurred.
func (m ExportModal) Update(msg tea.Msg) (ExportModal, string, bool) {
if !m.visible {
return m, "", false
}
if keyMsg, ok := msg.(tea.KeyPressMsg); ok {
switch keyMsg.String() {
case "esc":
return m.Close(), "", false
case "enter":
filename := strings.TrimSpace(m.textInput.Value())
if filename == "" {
m.err = "filename is required"
return m, "", false
}
return m.Close(), filename, true
}
}
var cmd tea.Cmd
m.textInput, cmd = m.textInput.Update(msg)
_ = cmd
return m, "", false
}
func (m ExportModal) View(width, height int) string {
if !m.visible {
return ""
}
if width <= 0 {
width = 80
}
if height <= 0 {
height = 24
}
modalWidth := 74
if width < modalWidth+4 {
modalWidth = width - 4
if modalWidth < 44 {
modalWidth = 44
}
}
lines := []string{
"Export Stream CSV",
"",
"Filename:",
m.textInput.View(),
}
if m.err != "" {
lines = append(lines, "Error: "+m.err)
}
lines = append(lines, "", "Enter save • Esc cancel")
box := lipgloss.NewStyle().
Border(lipgloss.RoundedBorder()).
Padding(1, 2).
Width(modalWidth).
Render(strings.Join(lines, "\n"))
return lipgloss.Place(width, height, lipgloss.Center, lipgloss.Center, box)
}
|