-
Notifications
You must be signed in to change notification settings - Fork 27
/
wishlist.go
241 lines (217 loc) · 5.19 KB
/
wishlist.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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
package wishlist
import (
"errors"
"fmt"
"net"
"github.com/charmbracelet/bubbles/key"
"github.com/charmbracelet/bubbles/list"
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
"github.com/charmbracelet/log"
"github.com/muesli/termenv"
)
var (
copyIPAddr = key.NewBinding(
key.WithKeys("y"),
key.WithHelp("y", "copy address"),
)
enter = key.NewBinding(
key.WithKeys("enter", "o"),
key.WithHelp("enter/o", "connect"),
)
)
// NewListing creates a new listing model for the given endpoints and SSH session.
// If session is nil, it is assume to be a local listing.
func NewListing(endpoints []*Endpoint, client SSHClient, r *lipgloss.Renderer) *ListModel {
l := list.New(nil, list.NewDefaultDelegate(), 0, 0)
l.Title = "Directory Listing"
l.AdditionalFullHelpKeys = func() []key.Binding {
return []key.Binding{copyIPAddr}
}
l.AdditionalShortHelpKeys = func() []key.Binding {
return []key.Binding{enter}
}
m := &ListModel{
list: l,
endpoints: endpoints,
client: client,
styles: makeStyles(r),
}
m.SetItems(endpoints)
return m
}
// ListModel main wishlist model.
type ListModel struct {
list list.Model
endpoints []*Endpoint
client SSHClient
quitting bool
width int
err error
styles styles
}
// SetItems allows to update the listing items.
func (m *ListModel) SetItems(endpoints []*Endpoint) tea.Cmd {
descriptors := features(endpoints)
h := len(descriptors) + 1 // desc lines + title
d := list.NewDefaultDelegate()
d.SetHeight(h)
m.list.SetDelegate(d)
log.Debug("setting delegate height", "height", h)
return m.list.SetItems(endpointsToListItems(endpoints, descriptors, m.styles))
}
func features(endpoints []*Endpoint) []descriptor {
var hasDesc bool
var hasLink bool
for _, endpoint := range endpoints {
if !endpoint.Valid() {
continue
}
if endpoint.Desc != "" {
hasDesc = true
}
if endpoint.Link.URL != "" {
hasLink = true
}
if hasDesc && hasLink {
break
}
}
var descriptors []descriptor
if hasDesc {
descriptors = append(descriptors, withDescription)
}
if hasLink {
descriptors = append(descriptors, withLink)
}
return append(descriptors, withSSHURL)
}
func endpointsToListItems(endpoints []*Endpoint, descriptors []descriptor, styles styles) []list.Item {
var items []list.Item //nolint: prealloc
for _, endpoint := range endpoints {
if !endpoint.Valid() {
continue
}
items = append(items, ItemWrapper{
endpoint: endpoint,
descriptors: descriptors,
styles: styles,
})
}
return items
}
// Init comply with tea.Model interface.
func (m *ListModel) Init() tea.Cmd {
return nil
}
type errMsg struct {
err error
}
// SetEndpointsMsg can be used to update the listed wishlist endpoints.
type SetEndpointsMsg struct {
Endpoints []*Endpoint
}
// Update comply with tea.Model interface.
func (m *ListModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
switch msg := msg.(type) {
case tea.KeyMsg:
if m.err != nil {
m.err = nil
return m, nil
}
if key.Matches(msg, list.DefaultKeyMap().Quit) && !m.list.SettingFilter() && m.list.FilterState() != list.FilterApplied {
m.quitting = true
}
if key.Matches(msg, copyIPAddr) && !m.list.SettingFilter() {
if w := m.selected(); w != nil {
host, _, _ := net.SplitHostPort(w.endpoint.Address)
termenv.Copy(host)
return m, m.list.NewStatusMessage(fmt.Sprintf("copied %q to the clipboard", host))
}
return m, nil
}
if key.Matches(msg, enter) {
if m.list.SettingFilter() {
break
}
w := m.selected()
if w == nil {
return m, nil
}
cmd := m.client.For(w.endpoint)
return m, tea.Exec(cmd, func(err error) tea.Msg {
return errMsg{err}
})
}
case tea.WindowSizeMsg:
top, right, bottom, left := m.styles.Doc.GetMargin()
m.width = msg.Width
m.list.SetSize(msg.Width-left-right, msg.Height-top-bottom)
case SetEndpointsMsg:
if cmd := m.SetItems(msg.Endpoints); cmd != nil {
return m, cmd
}
case errMsg:
if msg.err != nil {
log.Warn("got an error", "err", msg.err)
m.err = msg.err
return m, nil
}
}
var cmd tea.Cmd
m.list, cmd = m.list.Update(msg)
return m, cmd
}
func (m *ListModel) selected() *ItemWrapper {
selectedItem := m.list.SelectedItem()
if selectedItem == nil {
return nil
}
w, ok := selectedItem.(ItemWrapper)
if !ok {
// this should never happen
return nil
}
return &w
}
// View comply with tea.Model interface.
func (m *ListModel) View() string {
if m.quitting {
return ""
}
if m.err != nil {
header := lipgloss.NewStyle().
Width(m.width).
Render("Something went wrong:")
errstr := m.styles.Err.
Width(m.width).
Render(rootCause(m.err).Error())
footer := m.styles.Footer.
Width(m.width).
Render("Press any key to go back to the list.")
return m.styles.Logo.String() + "\n\n" +
header + "\n\n" +
errstr + "\n\n" +
footer + "\n"
}
return m.styles.Doc.Render(m.list.View())
}
func rootCause(err error) error {
log.Warn("root cause", "err", err)
for {
e := errors.Unwrap(err)
if e == nil {
return err
}
err = e
}
}
// FirstNonEmpty returns the first non-empty string of the list.
func FirstNonEmpty(ss ...string) string {
for _, s := range ss {
if s != "" {
return s
}
}
return ""
}