aboutsummaryrefslogtreecommitdiff
path: root/internal/tui/tui.go
blob: a4c14b97bb2f33bdc90abe1028f8b4ffa0dc65b7 (plain) (blame)
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
// Package tui is lectio's interactive Bubble Tea reader: a colored,
// scrollable full-day view of the liturgy with version cycling and date
// navigation. It re-styles the same render.GatherVersion data the CLI
// prints as plain text.
package tui

import (
	"fmt"
	"regexp"
	"strings"
	"time"

	tea "github.com/charmbracelet/bubbletea"

	"github.com/lukaszkasprzak/lectio/internal/config"
	"github.com/lukaszkasprzak/lectio/internal/i18n"
	"github.com/lukaszkasprzak/lectio/internal/liturgy"
	"github.com/lukaszkasprzak/lectio/internal/readings"
	"github.com/lukaszkasprzak/lectio/internal/render"
)

// Model is the TUI's state: it implements tea.Model.
type Model struct {
	cfg      config.Config
	versions []string
	verIdx   int
	date     string
	sections []liturgy.Section
	scroll   int
	width    int
	height   int
	loading  bool
	err      error
}

// readingsMsg carries a successful fetch's sections back to Update.
type readingsMsg struct {
	sections []liturgy.Section
}

// errMsg carries a failed fetch's error back to Update.
type errMsg struct {
	err error
}

// New builds the initial model: cfg.Offline drops "pl" from the version
// list (render.OfflineVersions), the active version starts at
// cfg.DefaultVersion (falling back to the first version if not found, or
// "" if there are none), and the date starts at today. The first fetch is
// issued by Init, not here.
func New(cfg config.Config) Model {
	versions := render.EffectiveVersions(append([]string(nil), cfg.Versions...), cfg.Lectionary, cfg.Offline)

	idx := indexOf(versions, cfg.DefaultVersion)
	if idx < 0 {
		idx = 0
	}
	idx = clampIndex(idx, len(versions))

	return Model{
		cfg:      cfg,
		versions: versions,
		verIdx:   idx,
		date:     time.Now().Format("2006-01-02"),
		loading:  true,
	}
}

// version returns the active version code, or "" if there are none.
func (m Model) version() string {
	if m.verIdx < 0 || m.verIdx >= len(m.versions) {
		return ""
	}
	return m.versions[m.verIdx]
}

// cycleVersion moves the active version by d steps, wrapping around the
// list (tab = +1, shift+tab = -1). A pure, unit-tested helper.
func (m Model) cycleVersion(d int) Model {
	n := len(m.versions)
	if n == 0 {
		return m
	}
	m.verIdx = ((m.verIdx+d)%n + n) % n
	return m
}

// indexOf returns the index of v in list, or -1 if not present.
func indexOf(list []string, v string) int {
	for i, s := range list {
		if s == v {
			return i
		}
	}
	return -1
}

// clampIndex clamps i into [0, n-1], returning 0 when n == 0.
func clampIndex(i, n int) int {
	if n == 0 {
		return 0
	}
	if i < 0 {
		return 0
	}
	if i >= n {
		return n - 1
	}
	return i
}

// shiftDate adds days to date (YYYY-MM-DD); an unparsable date is returned
// unchanged.
func shiftDate(date string, days int) string {
	t, err := time.Parse("2006-01-02", date)
	if err != nil {
		return date
	}
	return t.AddDate(0, 0, days).Format("2006-01-02")
}

// fetchCmd issues the readings.Load fetch for the model's current date as a
// tea.Cmd, resolving to readingsMsg or errMsg. It is a full-day reader, so
// All is always true; Offline follows cfg.Offline.
func (m Model) fetchCmd() tea.Cmd {
	cfg := m.cfg
	date := m.date
	return func() tea.Msg {
		secs, err := readings.Load(cfg, readings.Options{
			Date:    date,
			Offline: cfg.Offline,
			All:     true,
		})
		if err != nil {
			return errMsg{err}
		}
		return readingsMsg{secs}
	}
}

// Init issues the first load.
func (m Model) Init() tea.Cmd {
	return m.fetchCmd()
}

// Update handles key input and fetch results.
func (m Model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
	switch msg := msg.(type) {
	case tea.WindowSizeMsg:
		m.width = msg.Width
		m.height = msg.Height
		return m, nil

	case readingsMsg:
		m.loading = false
		m.err = nil
		m.sections = msg.sections
		m.scroll = 0
		return m, nil

	case errMsg:
		m.loading = false
		m.err = msg.err
		return m, nil

	case tea.KeyMsg:
		switch msg.String() {
		case "q", "ctrl+c":
			return m, tea.Quit
		case "tab":
			return m.cycleVersion(+1), nil
		case "shift+tab":
			return m.cycleVersion(-1), nil
		case "left":
			m.date = shiftDate(m.date, -1)
			m.loading = true
			m.err = nil
			return m, m.fetchCmd()
		case "right":
			m.date = shiftDate(m.date, +1)
			m.loading = true
			m.err = nil
			return m, m.fetchCmd()
		case "r":
			m.loading = true
			m.err = nil
			return m, m.fetchCmd()
		case "j", "down":
			m.scroll++
			return m, nil
		case "k", "up":
			if m.scroll > 0 {
				m.scroll--
			}
			return m, nil
		case " ":
			m.scroll += pageSize(m.height)
			return m, nil
		case "b":
			m.scroll -= pageSize(m.height)
			if m.scroll < 0 {
				m.scroll = 0
			}
			return m, nil
		case "g":
			m.scroll = 0
			return m, nil
		case "G":
			m.scroll = 1 << 30 // clamped to the last page in View
			return m, nil
		}
	}
	return m, nil
}

// pageSize is how many reading lines fit between the header and footer bars
// for a given terminal height; it falls back to a sane default before the
// first tea.WindowSizeMsg arrives (height == 0).
func pageSize(height int) int {
	const chrome = 4 // header + blank + footer + margin
	if height <= chrome {
		return 10
	}
	return height - chrome
}

// clampScroll keeps scroll within [0, total-visible] (never negative).
func clampScroll(scroll, total, visible int) int {
	max := total - visible
	if max < 0 {
		max = 0
	}
	if scroll > max {
		scroll = max
	}
	if scroll < 0 {
		scroll = 0
	}
	return scroll
}

// View renders the header (date + active version label), the scrolling
// reading, and the footer keybar.
func (m Model) View() string {
	w := m.width
	if w <= 0 {
		w = 80
	}
	innerW := w - 2
	if innerW < 20 {
		innerW = 20
	}

	header := headerStyle.Width(w).Render(m.headerText())
	footer := footerStyle.Width(w).Render(i18n.Get(m.cfg.UILanguage).FooterKeys)

	bodyLines := m.bodyLines(innerW)

	visible := pageSize(m.height)
	scroll := clampScroll(m.scroll, len(bodyLines), visible)
	end := scroll + visible
	if end > len(bodyLines) {
		end = len(bodyLines)
	}

	return header + "\n" + strings.Join(bodyLines[scroll:end], "\n") + "\n" + footer
}

// headerText is "lectio  DATE  [version label]"; the label comes from the
// active section's render.GatherVersion when sections are loaded, else the
// bare version code.
func (m Model) headerText() string {
	label := m.version()
	if len(m.sections) > 0 {
		if l, _ := render.GatherVersion(m.version(), m.sections[0], m.cfg.Lectionary, m.cfg.UILanguage); l != "" {
			label = l
		}
	}
	return fmt.Sprintf("lectio  %s  [%s]", m.date, label)
}

// bodyLines returns the styled, wrapped lines the reading pane scrolls
// through: a loading/error/empty notice, or each section's heading +
// render.GatherVersion blocks for the active version.
func (m Model) bodyLines(w int) []string {
	ui := i18n.Get(m.cfg.UILanguage)

	switch {
	case m.err != nil:
		return []string{
			errStyle.Render(ui.ErrorPrefix + m.err.Error()),
			"",
			citationStyle.Render(ui.ErrorHint),
		}
	case m.loading:
		return []string{citationStyle.Render(ui.Loading)}
	case len(m.sections) == 0:
		return []string{citationStyle.Render(ui.NoReadingsFor + m.date)}
	}

	ver := m.version()
	var lines []string
	for i, sec := range m.sections {
		if i > 0 {
			lines = append(lines, "")
		}
		heading := render.LocalizeHeading(sec.Heading, sec.PartID, m.cfg.UILanguage)
		lines = append(lines, headingStyle.Render(heading))
		lines = append(lines, "")

		_, blocks := render.GatherVersion(ver, sec, m.cfg.Lectionary, m.cfg.UILanguage)
		numW := maxNumWidth(blocks)
		// The refrain-italic only applies to the pl responsorial-psalm block
		// (its first, deduped paragraph); bible versions have no refrain block.
		isPsalm := sec.PartID == "psalm" && ver == "pl"
		for bi, b := range blocks {
			refrain := isPsalm && bi == 0
			lines = append(lines, styleBlock(b, refrain, w, numW)...)
			lines = append(lines, "")
		}
	}
	return lines
}

// verseNumRe matches a bible verse block's "chapter:verse  " prefix, as
// produced by render.GatherVersion (e.g. "3:16  Tak bowiem...").
var verseNumRe = regexp.MustCompile(`^(\d+:\d+)  (.*)$`)

// styleBlock wraps and colors one render.GatherVersion block: a verse
// block gets its "chapter:verse" prefix in the muted verse-number style and
// its text in the default verse style; a psalm's first (refrain) block
// renders italic; everything else renders in the default verse style.
func styleBlock(b string, refrain bool, w, numW int) []string {
	if w < 1 {
		w = 1
	}
	if g := verseNumRe.FindStringSubmatch(b); g != nil {
		num, text := g[1], g[2]
		col := numW + 2 // verse-number column: widest "chapter:verse" + 2 spaces
		indent := strings.Repeat(" ", col)
		tw := w - col
		if tw < 1 {
			tw = 1
		}
		lines := strings.Split(render.Wrap(text, tw), "\n")
		out := make([]string, 0, len(lines))
		for i, ln := range lines {
			if i == 0 {
				pad := strings.Repeat(" ", col-len([]rune(num)))
				out = append(out, verseNumStyle.Render(num)+pad+verseTextStyle.Render(ln))
			} else {
				out = append(out, indent+verseTextStyle.Render(ln))
			}
		}
		return out
	}

	style := verseTextStyle
	if refrain {
		style = refrainStyle
	}
	lines := strings.Split(render.Wrap(b, w), "\n")
	out := make([]string, 0, len(lines))
	for _, ln := range lines {
		out = append(out, style.Render(ln))
	}
	return out
}

// maxNumWidth returns the widest "chapter:verse" prefix rune-width among the
// verse blocks, so styleBlock can align every verse's text to one column.
func maxNumWidth(blocks []string) int {
	m := 0
	for _, b := range blocks {
		if g := verseNumRe.FindStringSubmatch(b); g != nil {
			if n := len([]rune(g[1])); n > m {
				m = n
			}
		}
	}
	return m
}