summaryrefslogtreecommitdiff
path: root/internal/tui/report.go
blob: 205e3e962f8ae502d6e50fce26a5a5ba6818576f (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
package tui

import (
	"fmt"
	"strings"

	"codeberg.org/snonux/timr/internal/worktime"
	tea "github.com/charmbracelet/bubbletea"
)

// ReportModel is a weekly report browser screen.
type ReportModel struct {
	weeks []worktime.WeekReport

	weekIndex int
	cursor    int
	offset    int
	width     int
	height    int

	verbose bool

	pendingG       bool
	pendingBracket int
}

// NewReportModel creates a report screen model.
func NewReportModel(weeks []worktime.WeekReport) ReportModel {
	model := ReportModel{
		height: 16,
	}
	model.SetWeeks(weeks)
	return model
}

// SetSize updates viewport dimensions.
func (m *ReportModel) SetSize(width, height int) {
	m.width = width
	if height > 0 {
		m.height = height
	}
	m.ensureCursorVisible()
}

// SetWeeks replaces report data.
func (m *ReportModel) SetWeeks(weeks []worktime.WeekReport) {
	m.weeks = append([]worktime.WeekReport(nil), weeks...)
	if len(m.weeks) == 0 {
		m.weekIndex = 0
		m.cursor = 0
		m.offset = 0
		return
	}
	if m.weekIndex >= len(m.weeks) {
		m.weekIndex = len(m.weeks) - 1
	}
	m.cursor = 0
	m.offset = 0
}

// Update handles keyboard interaction.
func (m *ReportModel) Update(msg tea.Msg) (ReportModel, tea.Cmd) {
	keyMsg, ok := msg.(tea.KeyMsg)
	if !ok {
		return *m, nil
	}

	if m.pendingBracket != 0 {
		if keyMsg.String() == "w" {
			if m.pendingBracket > 0 {
				m.nextWeek()
			} else {
				m.prevWeek()
			}
			m.pendingBracket = 0
			return *m, nil
		}
		m.pendingBracket = 0
	}

	switch keyMsg.String() {
	case "j", "down":
		m.moveCursor(1)
		m.pendingG = false
	case "k", "up":
		m.moveCursor(-1)
		m.pendingG = false
	case "G":
		m.cursor = m.rowCount() - 1
		m.ensureCursorVisible()
		m.pendingG = false
	case "g":
		if m.pendingG {
			m.cursor = 0
			m.ensureCursorVisible()
			m.pendingG = false
			return *m, nil
		}
		m.pendingG = true
	case "]":
		m.pendingBracket = 1
		m.pendingG = false
	case "[":
		m.pendingBracket = -1
		m.pendingG = false
	case "v":
		m.verbose = !m.verbose
		m.pendingG = false
	default:
		m.pendingG = false
	}

	return *m, nil
}

// View renders the report screen.
func (m *ReportModel) View(styles Styles) string {
	if len(m.weeks) == 0 {
		return styles.Body.Render("Report\n\nNo report data.")
	}

	week := &m.weeks[m.weekIndex]
	header := fmt.Sprintf(
		"Report  Week %s  [%d/%d]  verbose:%t",
		week.WeekLabel,
		m.weekIndex+1,
		len(m.weeks),
		m.verbose,
	)

	rows := m.dayRows(week)
	maxRows := m.listRows()
	end := minInt(len(rows), m.offset+maxRows)

	lines := make([]string, 0, end-m.offset)
	for idx := m.offset; idx < end; idx++ {
		cursor := " "
		if idx == m.cursor {
			cursor = ">"
		}
		lines = append(lines, cursor+" "+rows[idx])
	}

	summary := fmt.Sprintf(
		"Balance:%+.2fh  Work:%+.2fh  Buffer:%+.2fh",
		toHours(week.CumulativeBalanceSeconds),
		toHours(week.Values["work"]),
		toHours(week.BufferSeconds),
	)
	hint := "j/k scroll, gg/G top/bottom, ]w/[w week nav, v verbose"

	body := header + "\n\n" + strings.Join(lines, "\n") + "\n\n" + summary + "\n" + hint
	return styles.Body.Render(body)
}

func (m *ReportModel) dayRows(week *worktime.WeekReport) []string {
	rows := make([]string, 0, len(week.Days))
	for _, day := range week.Days {
		row := fmt.Sprintf(
			"%-1s %-18s work:%+6.2fh lunch:%+6.2fh off:%+6.2fh bank:%+6.2fh",
			day.Marker,
			day.DayLabel,
			toHours(day.Values["work"]),
			toHours(day.Values["lunch"]),
			toHours(day.Values["off"]),
			toHours(day.Values["bank"]),
		)
		if m.verbose {
			row += fmt.Sprintf(" epoch:%d", day.Epoch)
		}
		rows = append(rows, row)
	}
	if len(rows) == 0 {
		rows = append(rows, "No days in this week.")
	}
	return rows
}

func (m *ReportModel) moveCursor(delta int) {
	if m.rowCount() == 0 {
		m.cursor = 0
		m.offset = 0
		return
	}

	m.cursor += delta
	if m.cursor < 0 {
		m.cursor = 0
	}
	if m.cursor >= m.rowCount() {
		m.cursor = m.rowCount() - 1
	}
	m.ensureCursorVisible()
}

func (m *ReportModel) ensureCursorVisible() {
	if m.rowCount() == 0 {
		m.cursor = 0
		m.offset = 0
		return
	}

	if m.cursor < m.offset {
		m.offset = m.cursor
	}

	maxRows := m.listRows()
	if maxRows <= 0 {
		return
	}
	if m.cursor >= m.offset+maxRows {
		m.offset = m.cursor - maxRows + 1
	}
	if m.offset < 0 {
		m.offset = 0
	}
}

func (m *ReportModel) nextWeek() {
	if len(m.weeks) == 0 {
		return
	}
	if m.weekIndex < len(m.weeks)-1 {
		m.weekIndex++
	}
	m.cursor = 0
	m.offset = 0
}

func (m *ReportModel) prevWeek() {
	if len(m.weeks) == 0 {
		return
	}
	if m.weekIndex > 0 {
		m.weekIndex--
	}
	m.cursor = 0
	m.offset = 0
}

func (m *ReportModel) listRows() int {
	rows := m.height - 7
	if rows < 1 {
		return 1
	}
	return rows
}

func (m *ReportModel) rowCount() int {
	if len(m.weeks) == 0 {
		return 0
	}
	return len(m.dayRows(&m.weeks[m.weekIndex]))
}

func toHours(seconds int64) float64 {
	return float64(seconds) / 3600
}