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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
|
package app
import (
"fmt"
"path/filepath"
"runtime"
"strings"
"github.com/charmbracelet/bubbles/table"
"github.com/charmbracelet/bubbles/textinput"
tea "github.com/charmbracelet/bubbletea"
)
type sortField int
const (
sortByName sortField = iota
sortByDuration
sortByAge
)
const (
preferredNameColumnWidth = 40
preferredDurationColumnWidth = 12
preferredAgeColumnWidth = 14
preferredTagsColumnWidth = 28
nameColumnFloorWidth = 16
durationColumnFloorWidth = 8
ageColumnFloorWidth = 10
tagsColumnFloorWidth = 12
)
type model struct {
table table.Model
videos []video
filtered []video
filters filterState
inputs filterInputs
showFilters bool
editingTags bool
sortField sortField
sortAscending bool
statusMessage string
loading bool
err error
root string
progress *loadProgress
cachePath string
cache *durationCache
pendingDurations []string
durationTotal int
durationDone int
durationInFlight int
cropValue string
cropEnabled bool
tagInput textinput.Model
tagEditPath string
baseStatus string
showHelp bool
viewportWidth int
}
func newModel(opts Options) (model, error) {
tbl := buildTable()
inputs := buildFilterInputs()
inputs.fields[0].Focus()
tagInput := buildTagInput()
progress := &loadProgress{}
cachePath := filepath.Join(opts.Root, ".video_duration_cache.json")
return model{
table: tbl,
inputs: inputs,
tagInput: tagInput,
sortField: sortByName,
sortAscending: true,
statusMessage: "Scanning for videos...",
loading: true,
root: opts.Root,
progress: progress,
cachePath: cachePath,
cropValue: opts.Crop,
cropEnabled: opts.Crop != "",
showHelp: true,
}, nil
}
func buildTable() table.Model {
columns := makeColumns(
preferredNameColumnWidth,
preferredDurationColumnWidth,
preferredAgeColumnWidth,
preferredTagsColumnWidth,
)
tbl := table.New(
table.WithColumns(columns),
table.WithFocused(true),
table.WithHeight(15),
)
tbl.SetStyles(table.DefaultStyles())
return tbl
}
func buildFilterInputs() filterInputs {
nameInput := textinput.New()
nameInput.Placeholder = "substring"
nameInput.Prompt = "Name: "
nameInput.CharLimit = 256
minInput := textinput.New()
minInput.Placeholder = "min minutes"
minInput.Prompt = "Min minutes: "
minInput.CharLimit = 4
maxInput := textinput.New()
maxInput.Placeholder = "max minutes"
maxInput.Prompt = "Max minutes: "
maxInput.CharLimit = 4
tagInput := textinput.New()
tagInput.Placeholder = "tag substring"
tagInput.Prompt = "Tags: "
tagInput.CharLimit = 256
return filterInputs{
fields: []textinput.Model{nameInput, minInput, maxInput, tagInput},
focus: 0,
}
}
func buildTagInput() textinput.Model {
input := textinput.New()
input.Placeholder = "comma-separated tags"
input.Prompt = "Tags: "
input.CharLimit = 512
return input
}
func makeColumns(nameWidth, durationWidth, ageWidth, tagsWidth int) []table.Column {
return []table.Column{
{Title: headerStyle.Render("Name"), Width: nameWidth},
{Title: headerStyle.Render("Duration"), Width: durationWidth},
{Title: headerStyle.Render("Age"), Width: ageWidth},
{Title: headerStyle.Render("Tags"), Width: tagsWidth},
}
}
func (m model) Init() tea.Cmd {
if m.progress != nil {
m.progress.Reset()
}
loadCmd := loadVideosCmd(m.root, m.cachePath, m.progress)
if m.progress != nil {
return tea.Batch(loadCmd, progressTickerCmd(m.progress))
}
return loadCmd
}
func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
switch typed := msg.(type) {
case tea.KeyMsg:
return m.handleKeyMsg(typed)
case progressUpdateMsg:
return m.handleProgressUpdate(typed)
case durationUpdateMsg:
return m.handleDurationUpdate(typed)
case videosLoadedMsg:
return m.handleVideosLoaded(typed)
case playVideoMsg:
return m.handlePlayVideo(typed), nil
case reindexVideosMsg:
return m.handleReindexVideos(typed)
case tagsSavedMsg:
return m.handleTagsSaved(typed)
case tea.WindowSizeMsg:
return m.handleWindowSize(typed)
default:
return m.updateTable(msg)
}
}
func (m model) View() string {
if m.loading {
return statusStyle.Render("Loading videos, please wait...")
}
body := m.renderBody()
if m.editingTags {
return body + "\n\n" + m.renderTagModal()
}
if m.showFilters {
return body + "\n\n" + m.renderFilterModal()
}
return body
}
func (m model) renderBody() string {
helpLines := []string{
"↑/↓ navigate • enter play • s sort • / filter • c crop • t edit tags • i re-index • q quit",
}
info := statusStyle.Render(m.statusText())
progressLine := m.renderProgressLine()
content := tableStyle.Render(m.table.View())
parts := []string{content}
if progressLine != "" {
parts = append(parts, progressLine)
}
parts = append(parts, info)
if m.showHelp {
help := strings.Join(helpLines, "\n")
parts = append(parts, help)
}
return strings.Join(parts, "\n")
}
func (m model) statusText() string {
status := strings.TrimSpace(m.statusMessage)
base := strings.TrimSpace(m.baseStatus)
if base == "" {
return status
}
if status == "" || status == base {
return base
}
return fmt.Sprintf("%s • %s", base, status)
}
func (m model) showHelpBar() (tea.Model, tea.Cmd) {
if m.showHelp {
return m, nil
}
m.showHelp = true
if strings.Contains(m.statusMessage, "Help hidden") {
m.statusMessage = ""
}
return m, nil
}
func (m model) hideHelpBar() (tea.Model, tea.Cmd) {
if !m.showHelp {
return m, nil
}
m.showHelp = false
m.statusMessage = "Help hidden (press h to show)"
return m, nil
}
func (m model) handleWindowSize(msg tea.WindowSizeMsg) (tea.Model, tea.Cmd) {
m.viewportWidth = msg.Width
m.resizeColumns(msg.Width)
tbl, cmd := m.table.Update(msg)
m.table = tbl
if cmd == nil {
return m, nil
}
return m, cmd
}
func (m *model) resizeColumns(totalWidth int) {
if totalWidth <= 0 {
return
}
frame := tableStyle.GetHorizontalFrameSize()
contentWidth := totalWidth - frame
minWidth := nameColumnFloorWidth + durationColumnFloorWidth + ageColumnFloorWidth + tagsColumnFloorWidth
if contentWidth < minWidth {
contentWidth = minWidth
}
preferred := preferredNameColumnWidth + preferredDurationColumnWidth + preferredAgeColumnWidth + preferredTagsColumnWidth
nameWidth := preferredNameColumnWidth
durationWidth := preferredDurationColumnWidth
ageWidth := preferredAgeColumnWidth
tagsWidth := preferredTagsColumnWidth
if contentWidth >= preferred {
extra := contentWidth - preferred
nameWidth += extra
} else {
deficit := preferred - contentWidth
if deficit > 0 {
reduce := min(deficit, nameWidth-nameColumnFloorWidth)
nameWidth -= reduce
deficit -= reduce
}
if deficit > 0 {
reduce := min(deficit, tagsWidth-tagsColumnFloorWidth)
tagsWidth -= reduce
deficit -= reduce
}
if deficit > 0 {
reduce := min(deficit, ageWidth-ageColumnFloorWidth)
ageWidth -= reduce
deficit -= reduce
}
if deficit > 0 {
reduce := min(deficit, durationWidth-durationColumnFloorWidth)
durationWidth -= reduce
}
}
m.table.SetColumns(makeColumns(nameWidth, durationWidth, ageWidth, tagsWidth))
m.table.SetWidth(contentWidth)
}
func min(a, b int) int {
if a < b {
return a
}
return b
}
func (m model) renderProgressLine() string {
if m.durationTotal == 0 {
return ""
}
bar := renderProgressBar(m.durationDone, m.durationTotal, 24)
return statusStyle.Render(fmt.Sprintf("Duration scan %s %d/%d", bar, m.durationDone, m.durationTotal))
}
func (m model) updateTable(msg tea.Msg) (tea.Model, tea.Cmd) {
tbl, cmd := m.table.Update(msg)
m.table = tbl
return m, cmd
}
func (m model) handlePlayVideo(msg playVideoMsg) model {
if msg.err != nil {
m.statusMessage = fmt.Sprintf("Failed to launch VLC: %v", msg.err)
return m
}
m.statusMessage = fmt.Sprintf("Playing via VLC: %s", trimPath(msg.path))
return m
}
func (m model) handleReindexVideos(msg reindexVideosMsg) (tea.Model, tea.Cmd) {
m.statusMessage = "Re-indexing videos..."
return m, loadVideosCmd(m.root, m.cachePath, m.progress)
}
func (m model) handleVideosLoaded(msg videosLoadedMsg) (tea.Model, tea.Cmd) {
m.loading = false
if msg.err != nil {
m.err = msg.err
m.statusMessage = fmt.Sprintf("error: %v", msg.err)
}
if len(m.videos) == 0 {
m.videos = msg.videos
} else {
existingVideos := make(map[string]int)
for i, v := range m.videos {
existingVideos[v.Path] = i
}
for _, newVideo := range msg.videos {
if i, ok := existingVideos[newVideo.Path]; ok {
m.videos[i] = newVideo
} else {
m.videos = append(m.videos, newVideo)
}
}
}
m.cache = msg.cache
m.pendingDurations = msg.pending
m.durationTotal = len(msg.pending)
m.durationDone = 0
m.applyFiltersAndSort()
m.updateStatusAfterLoad(msg)
m.durationInFlight = 0
if len(msg.pending) == 0 {
return m, nil
}
cmd := m.startDurationWorkers()
return m, cmd
}
func (m *model) updateStatusAfterLoad(msg videosLoadedMsg) {
if len(m.filtered) == 0 {
m.baseStatus = "No videos found"
m.statusMessage = m.baseStatus
return
}
status := ""
if len(msg.pending) > 0 {
status = fmt.Sprintf("Loaded %d videos, probing durations...", len(m.filtered))
if msg.cacheErr != nil {
status = fmt.Sprintf("Loaded %d videos (cache warning: %v), probing durations...", len(m.filtered), msg.cacheErr)
}
} else {
status = fmt.Sprintf("Loaded %d videos", len(m.filtered))
if msg.cacheErr != nil {
status = fmt.Sprintf("Loaded %d videos (cache warning: %v)", len(m.filtered), msg.cacheErr)
}
}
if msg.tagErr != nil {
status = fmt.Sprintf("%s (tag warning: %v)", status, msg.tagErr)
}
m.baseStatus = status
m.statusMessage = status
}
func (m *model) startDurationWorkers() tea.Cmd {
if len(m.pendingDurations) == 0 {
return nil
}
workers := runtime.NumCPU()
if workers < 1 {
workers = 1
}
if workers > 6 {
workers = 6
}
if workers > len(m.pendingDurations) {
workers = len(m.pendingDurations)
}
cmds := make([]tea.Cmd, 0, workers)
for i := 0; i < workers; i++ {
cmd := m.dequeueDurationCmd()
if cmd != nil {
cmds = append(cmds, cmd)
}
}
if len(cmds) == 0 {
return nil
}
return tea.Batch(cmds...)
}
func (m *model) dequeueDurationCmd() tea.Cmd {
if len(m.pendingDurations) == 0 {
return nil
}
path := m.pendingDurations[0]
m.pendingDurations = m.pendingDurations[1:]
m.durationInFlight++
return probeDurationsCmd(path, m.cache)
}
func (m model) activeCrop() string {
if m.cropEnabled && m.cropValue != "" {
return m.cropValue
}
return ""
}
func (m model) handleProgressUpdate(msg progressUpdateMsg) (tea.Model, tea.Cmd) {
if !m.loading {
return m, nil
}
if msg.total == 0 && msg.done {
m.statusMessage = "No videos found"
return m, nil
}
if msg.done {
m.statusMessage = fmt.Sprintf("Loaded %d videos", msg.total)
return m, nil
}
m.statusMessage = fmt.Sprintf("Loading videos %d/%d...", msg.processed, msg.total)
return m, progressTickerCmd(m.progress)
}
|