-
Notifications
You must be signed in to change notification settings - Fork 0
/
result_list.go
252 lines (219 loc) · 5.96 KB
/
result_list.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
242
243
244
245
246
247
248
249
250
251
252
package minidoc
import (
"fmt"
"github.com/gdamore/tcell"
"github.com/rivo/tview"
"reflect"
"strings"
)
type ResultList struct {
*tview.Table
Search *Search
}
func NewResultList(s *Search) *ResultList {
rl := &ResultList{
tview.NewTable(),
s,
}
rl.SetBorders(false).
SetSeparator(' ').
SetSelectedStyle(tcell.ColorGray, tcell.ColorWhite, tcell.AttrNone).
SetTitle("Results")
rl.SetBorder(true)
rl.SetBorderPadding(1, 1, 2, 2)
rl.SetInputCapture(rl.InputCapture())
return rl
}
func (rl *ResultList) InsertColumns(size int) {
for i := 0; i < size; i++ {
rl.InsertColumn(0)
}
}
func (rl *ResultList) InputCapture() func(event *tcell.EventKey) *tcell.EventKey {
return func(event *tcell.EventKey) *tcell.EventKey {
s := rl.Search
//log.Debug("EventKey: " + event.Name())
eventKey := event.Key()
switch eventKey {
case tcell.KeyRune:
switch event.Rune() {
case 'c':
s.ClipboardCopy()
return nil
case 'i':
s.Edit()
case 'j':
// if the current mode is edit then remove edit and load detail
s.Preview(DOWN)
case 'k':
s.Preview(UP)
case 'e':
doc, err := s.LoadMiniDocFromDB(s.CurrentRowIndex)
if err != nil {
log.Debugf("error getting json from curr row: %v", err)
return event
}
doc, changed := EditWithVim(rl.Search.App, doc)
if changed {
_, err = s.App.DataHandler.Write(doc)
if err != nil {
log.Errorf("error writing: %v", err)
}
}
s.Preview(DIRECTION_NONE)
return nil
case ' ':
s.ToggleSelected()
case 't':
s.ToggleTogglable()
s.Preview(DIRECTION_NONE)
default:
return s.DelegateEventHandlingMiniDoc(event)
}
case tcell.KeyCtrlA:
s.SelectAllRows()
return nil
case tcell.KeyCtrlK:
rl.MoveRow(UP)
return nil
case tcell.KeyCtrlJ:
rl.MoveRow(DOWN)
return nil
case tcell.KeyCtrlT:
s.ToggleAllRows()
return nil
case tcell.KeyTab:
s.GoToPreview()
return nil
case tcell.KeyBacktab:
s.GoToSearchBar(false, "")
return nil
case tcell.KeyEnter:
s.Preview(DIRECTION_NONE)
return nil
case tcell.KeyCtrlD:
s.BatchDeleteConfirmation()
case tcell.KeyCtrlSpace:
s.GoToSearchBar(true, "")
default:
return s.DelegateEventHandlingMiniDoc(event)
}
return event
}
}
func NewCellWithBG(reference interface{}, text string, color, bg tcell.Color) *tview.TableCell {
return &tview.TableCell{
Reference: reference,
Text: text,
Align: tview.AlignLeft,
Color: color,
BackgroundColor: bg,
}
}
func NewCell(reference interface{}, text string, color tcell.Color) *tview.TableCell {
return &tview.TableCell{
Reference: reference,
Text: text,
Align: tview.AlignLeft,
Color: color,
BackgroundColor: tcell.ColorGray,
}
}
type CellData struct {
ref interface{}
text string
}
func (rl *ResultList) SetColumnCells(rowIndex int, cd []CellData) {
for i, c := range cd {
rl.SetCell(rowIndex, i, NewCell(c.ref, c.text, tcell.ColorWhite))
}
}
// pad empty space to keep the result row width wider than few character wide
const cellpadding = " "
func (rl *ResultList) GetCellRefUint32(rowIndex, colIndex int) (uint32, error) {
ref := rl.GetCell(rowIndex, colIndex).GetReference()
v, ok := ref.(uint32)
if !ok {
msg := fmt.Sprintf("ref for row index[%d] column not uint32 but is %v", rowIndex, reflect.TypeOf(ref))
log.Errorf(msg)
return 0, fmt.Errorf(msg)
}
return v, nil
}
func (rl *ResultList) GetCellRefString(rowIndex, colIndex int) (string, error) {
ref := rl.GetCell(rowIndex, colIndex).GetReference()
v, ok := ref.(string)
if !ok {
msg := fmt.Sprintf("ref for row index[%d] column not string but is %v", rowIndex, reflect.TypeOf(ref))
log.Errorf(msg)
return "", fmt.Errorf(msg)
}
return v, nil
}
func (rl *ResultList) GetCellRefBool(rowIndex, colIndex int) (bool, error) {
ref := rl.GetCell(rowIndex, colIndex).GetReference()
v, ok := ref.(bool)
if !ok {
msg := fmt.Sprintf("ref for row index[%d] column not string but is %v", rowIndex, reflect.TypeOf(ref))
log.Errorf(msg)
return false, fmt.Errorf(msg)
}
return v, nil
}
func (rl *ResultList) LoadMiniDocFromDB(rowIndex int) (MiniDoc, error) {
id, _ := rl.GetCellRefUint32(rowIndex, idColumnIndex)
doctype, _ := rl.GetCellRefString(rowIndex, typeColumnIndex)
fragments, _ := rl.GetCellRefString(rowIndex, fragmentsColumnIndex)
isSelected, _ := rl.GetCellRefBool(rowIndex, selectedColumnIndex)
doc, err := rl.Search.App.BucketHandler.Read(id, doctype)
if err != nil {
log.Debugf("read error: %v", err)
return nil, err
}
doc.SetIsSelected(isSelected)
doc.SetSearchFragments(fragments)
return doc, nil
}
func (rl *ResultList) UpdateRow(row int, doc MiniDoc) {
doctype := doc.GetType()
doctype = strings.TrimSpace(doctype)
fragments := doc.GetSearchFragments()
selected := doc.IsSelected()
if doc.IsTogglable() {
// swap it out with the one from db
docFromDB, _ := rl.Search.App.DataHandler.BucketHandler.Read(doc.GetID(), doc.GetType())
doc = docFromDB
doc.SetSearchFragments(fragments)
doc.SetIsSelected(selected)
}
cd := []CellData{
CellData{doctype, doc.GetIDString()},
CellData{doc.IsSelected(), doc.IsSelectedString()},
CellData{doc.GetToggle(), doc.GetToggleValueAsString()},
CellData{fragments + cellpadding, fragments + cellpadding},
CellData{doc.GetID(), ""},
}
rl.SetColumnCells(row, cd)
}
func (rl *ResultList) MoveRow(direction int) {
prevRow := rl.Search.CurrentRowIndex
doc, err := rl.Search.LoadMiniDocFromDB(rl.Search.CurrentRowIndex)
if err != nil {
log.Debugf("error getting json from curr row: %v", err)
return
}
rl.Search.UpdateCurrRowIndexFromSelectedRow(direction)
row := rl.Search.CurrentRowIndex
switch direction {
case UP:
rl.InsertRow(row)
rl.UpdateRow(row, doc)
rl.RemoveRow(prevRow + 1)
rl.Search.SelectRow(row)
case DOWN:
rl.InsertRow(row + 1)
rl.UpdateRow(row+1, doc)
rl.RemoveRow(prevRow)
rl.Search.SelectRow(row)
}
}