summaryrefslogtreecommitdiff
path: root/internal/app/model.go
blob: 76ab358e37813b288b5f3dc171a980ba20bdcd22 (plain)
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
package app

import (
	"fmt"
	"path/filepath"
	"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 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  •  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) 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)
}