gitstack

grindlemire/go-tui code browser

17.0 KB Go 666 lines 2026-06-19 ยท 6a5fd25 raw
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
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
package tui

import (
	"strings"
	"time"
	"unicode/utf8"
)

// TextArea is a multi-line text input with word wrapping and cursor management.
// It implements Component, KeyListener, WatcherProvider, and Focusable interfaces.
type TextArea struct {
	// Configuration (set via options, immutable after construction)
	width             int
	maxHeight         int
	border            BorderStyle
	textStyle         Style
	placeholder       string
	placeholderStyle  Style
	cursorRune        rune
	hideVirtualCursor bool
	focusColor        *Color
	borderGradient    *Gradient
	focusGradient     *Gradient
	autoFocus         bool
	submitKey         Key
	onSubmit          func(string)

	// Reactive state
	text      *State[string]
	cursorPos *State[int]
	blink     *State[bool]
	focused   *State[bool]
}

// Interface assertions
var (
	_ Component       = (*TextArea)(nil)
	_ KeyListener     = (*TextArea)(nil)
	_ WatcherProvider = (*TextArea)(nil)
	_ Focusable       = (*TextArea)(nil)
	_ AppBinder       = (*TextArea)(nil)
)

// BindApp binds this TextArea's internal States to the given app.
func (t *TextArea) BindApp(app *App) {
	t.text.BindApp(app)
	t.cursorPos.BindApp(app)
	t.blink.BindApp(app)
	t.focused.BindApp(app)
}

// NewTextArea creates a new multi-line text input.
func NewTextArea(opts ...TextAreaOption) *TextArea {
	t := &TextArea{
		// Defaults
		width:            40,
		maxHeight:        0, // unlimited
		border:           BorderNone,
		textStyle:        Style{},
		placeholder:      "",
		placeholderStyle: Style{}.Dim(),
		cursorRune:       'โ–Œ',
		submitKey:        KeyEnter,

		// State
		text:      NewState(""),
		cursorPos: NewState(0),
		blink:     NewState(true),
		focused:   NewState(false),
	}
	for _, opt := range opts {
		opt(t)
	}
	return t
}

// --- State Access ---

// Text returns the current text content.
func (t *TextArea) Text() string {
	return t.text.Get()
}

// SetText sets the text and moves cursor to end.
func (t *TextArea) SetText(s string) {
	t.text.Set(s)
	t.cursorPos.Set(utf8.RuneCountInString(s))
}

// Clear clears the text area.
func (t *TextArea) Clear() {
	t.text.Set("")
	t.cursorPos.Set(0)
}

// contentRows returns the number of content rows to render: the wrapped
// lines plus the phantom cursor row, clamped to maxHeight. Note that when
// content exceeds maxHeight the rows below the clamp (including the cursor's
// row) are clipped; the textarea has no scroll-to-cursor.
func (t *TextArea) contentRows(lines []string) int {
	rows := len(lines)
	if t.phantomCursorRow(lines) {
		rows++
	}
	rows = max(rows, 1)
	if t.maxHeight > 0 && rows > t.maxHeight {
		rows = t.maxHeight
	}
	return rows
}

// Height returns the total rendered height including border.
func (t *TextArea) Height() int {
	height := t.contentRows(t.wrapText())
	if t.border != BorderNone {
		height += 2
	}
	return height
}

// --- Component Interface ---

// Render returns the element tree for the text area.
func (t *TextArea) Render(app *App) *Element {
	lines := t.wrapText()
	rows := t.contentRows(lines)

	// Account for border
	totalHeight := rows
	if t.border != BorderNone {
		totalHeight += 2
	}

	opts := []Option{
		WithDirection(Column),
		WithHeight(totalHeight),
		WithFocusable(true),
		WithAutoFocus(t.autoFocus),
	}
	if t.width > 0 {
		opts = append(opts, WithWidth(t.width))
	}
	if t.border != BorderNone {
		opts = append(opts, WithBorder(t.border))
		if t.focused.Get() {
			if t.focusGradient != nil {
				opts = append(opts, WithBorderGradient(*t.focusGradient))
			} else if t.focusColor != nil {
				opts = append(opts, WithBorderStyle(NewStyle().Foreground(*t.focusColor)))
			}
		} else if t.borderGradient != nil {
			opts = append(opts, WithBorderGradient(*t.borderGradient))
		}
	}
	root := New(opts...)

	// Wire Element focus/blur to component focus/blur
	root.SetOnFocus(func(e *Element) {
		t.Focus()
	})
	root.SetOnBlur(func(e *Element) {
		t.Blur()
	})

	// Render placeholder or content
	if t.text.Get() == "" && t.placeholder != "" && !t.focused.Get() {
		root.AddChild(New(WithText(t.placeholder), WithTextStyle(t.placeholderStyle)))
	} else {
		for i := range rows {
			root.AddChild(New(WithText(t.lineWithCursor(i)), WithTextStyle(t.textStyle), WithWrap(false)))
		}
	}

	return root
}

// --- Focusable Interface ---

// IsFocusable returns true since TextArea can receive focus.
func (t *TextArea) IsFocusable() bool {
	return true
}

// IsTabStop returns true since TextArea participates in Tab navigation.
func (t *TextArea) IsTabStop() bool {
	return true
}

// Focus is called when the text area gains focus. Idempotent.
func (t *TextArea) Focus() {
	if t.focused.Get() {
		return
	}
	t.focused.Set(true)
	t.blink.Set(true)
}

// Blur is called when the text area loses focus. Idempotent.
func (t *TextArea) Blur() {
	if !t.focused.Get() {
		return
	}
	t.focused.Set(false)
}

// IsFocused returns whether this text area is currently focused.
func (t *TextArea) IsFocused() bool {
	return t.focused.Get()
}

// HandleEvent processes keyboard events.
func (t *TextArea) HandleEvent(e Event) bool {
	ke, ok := e.(KeyEvent)
	if !ok {
		return false
	}

	for _, binding := range t.KeyMap() {
		entry := dispatchEntry{pattern: binding.Pattern}
		if entry.matchesKey(ke) {
			binding.Handler(ke)
			return binding.Stop
		}
	}
	return false
}

// --- KeyListener Interface ---

// KeyMap returns the key bindings for the text area.
func (t *TextArea) KeyMap() KeyMap {
	km := KeyMap{
		OnFocused(AnyRune, t.insertChar),
		OnFocused(KeyBackspace, t.backspace),
		OnFocused(KeyDelete, t.delete),
		OnFocused(KeyLeft, t.moveLeft),
		OnFocused(KeyRight, t.moveRight),
		OnFocused(KeyUp, t.moveUp),
		OnFocused(KeyDown, t.moveDown),
		OnFocused(KeyHome, t.moveHome),
		OnFocused(KeyEnd, t.moveEnd),
	}

	if t.submitKey == KeyEnter {
		km = append(km,
			OnFocused(Rune('j').Ctrl(), t.insertNewline),
			OnFocused(KeyEnter, t.submit),
		)
	} else {
		km = append(km,
			OnFocused(KeyEnter, t.insertNewline),
			OnFocused(t.submitKey, t.submit),
		)
	}

	km = append(km,
		OnFocused(KeyEscape, func(ke KeyEvent) {
			if app := ke.App(); app != nil {
				app.BlurFocused()
			}
		}),
	)

	return km
}

// --- WatcherProvider Interface ---

// Watchers returns watchers for cursor blink.
func (t *TextArea) Watchers() []Watcher {
	return []Watcher{
		OnTimer(500*time.Millisecond, func() {
			if t.focused.Get() {
				t.blink.Set(!t.blink.Get())
			}
		}),
	}
}

// --- Key Handlers ---

// insertChar inserts a character at the cursor position. The cursor then lands
// on the cluster boundary after the resulting cluster (a combining mark merges
// into the preceding cluster; see Input.insertChar).
func (t *TextArea) insertChar(ke KeyEvent) {
	runes := []rune(t.text.Get())
	pos := t.clampCursorPos()
	newRunes := append(runes[:pos], append([]rune{ke.Rune}, runes[pos:]...)...)
	newText := string(newRunes)
	t.text.Set(newText)
	t.cursorPos.Set(clusterEndAfterInsert(newText, pos))
	t.blink.Set(true)
}

// insertNewline inserts a newline character at the cursor position.
func (t *TextArea) insertNewline(ke KeyEvent) {
	runes := []rune(t.text.Get())
	pos := t.clampCursorPos()
	newRunes := append(runes[:pos], append([]rune{'\n'}, runes[pos:]...)...)
	t.text.Set(string(newRunes))
	t.cursorPos.Set(pos + 1)
	t.blink.Set(true)
}

// backspace deletes the cluster before the cursor.
func (t *TextArea) backspace(ke KeyEvent) {
	runes := []rune(t.text.Get())
	pos := t.clampCursorPos()
	if pos > 0 {
		prev := t.prevClusterBoundary(pos)
		newRunes := append(runes[:prev], runes[pos:]...)
		t.text.Set(string(newRunes))
		t.cursorPos.Set(prev)
	}
}

// delete deletes the cluster at the cursor.
func (t *TextArea) delete(ke KeyEvent) {
	runes := []rune(t.text.Get())
	pos := t.clampCursorPos()
	if pos < len(runes) {
		next := t.nextClusterBoundary(pos)
		newRunes := append(runes[:pos], runes[next:]...)
		t.text.Set(string(newRunes))
	}
}

// moveLeft moves cursor to the previous cluster boundary.
func (t *TextArea) moveLeft(ke KeyEvent) {
	pos := t.clampCursorPos()
	if pos > 0 {
		t.cursorPos.Set(t.prevClusterBoundary(pos))
		t.blink.Set(true)
	}
}

// moveRight moves cursor to the next cluster boundary.
func (t *TextArea) moveRight(ke KeyEvent) {
	pos := t.clampCursorPos()
	if pos < utf8.RuneCountInString(t.text.Get()) {
		t.cursorPos.Set(t.nextClusterBoundary(pos))
		t.blink.Set(true)
	}
}

// prevClusterBoundary returns the rune index of the cluster boundary immediately
// before the given (cluster-aligned) rune position.
func (t *TextArea) prevClusterBoundary(pos int) int {
	starts := clusterRuneStarts(t.text.Get())
	prev := 0
	for _, st := range starts {
		if st >= pos {
			break
		}
		prev = st
	}
	return prev
}

// nextClusterBoundary returns the rune index of the cluster boundary immediately
// after the given (cluster-aligned) rune position.
func (t *TextArea) nextClusterBoundary(pos int) int {
	starts := clusterRuneStarts(t.text.Get())
	for _, st := range starts {
		if st > pos {
			return st
		}
	}
	return starts[len(starts)-1]
}

// moveUp moves cursor up one line, preserving the cursor's rune column.
func (t *TextArea) moveUp(ke KeyEvent) {
	lines := t.wrapText()
	row, col := t.cursorRowCol(lines)
	if row > 0 {
		prevLen := utf8.RuneCountInString(lines[row-1])
		if col > prevLen {
			col = prevLen
		}
		t.cursorPos.Set(t.posFromRowCol(lines, row-1, col))
		t.blink.Set(true)
	}
}

// moveDown moves cursor down one line, preserving the cursor's rune column.
func (t *TextArea) moveDown(ke KeyEvent) {
	lines := t.wrapText()
	row, col := t.cursorRowCol(lines)
	if row < len(lines)-1 {
		nextLen := utf8.RuneCountInString(lines[row+1])
		if col > nextLen {
			col = nextLen
		}
		t.cursorPos.Set(t.posFromRowCol(lines, row+1, col))
		t.blink.Set(true)
	}
}

// moveHome moves cursor to start of current line.
func (t *TextArea) moveHome(ke KeyEvent) {
	lines := t.wrapText()
	row, _ := t.cursorRowCol(lines)
	t.cursorPos.Set(t.posFromRowCol(lines, row, 0))
	t.blink.Set(true)
}

// moveEnd moves cursor to end of current line.
func (t *TextArea) moveEnd(ke KeyEvent) {
	lines := t.wrapText()
	row, _ := t.cursorRowCol(lines)
	// The cursor can sit on the phantom row one past the last line; End there
	// resolves against the last real line.
	if row >= len(lines) {
		row = len(lines) - 1
	}
	t.cursorPos.Set(t.posFromRowCol(lines, row, utf8.RuneCountInString(lines[row])))
	t.blink.Set(true)
}

// submit calls the onSubmit callback.
func (t *TextArea) submit(ke KeyEvent) {
	if t.onSubmit != nil {
		t.onSubmit(t.text.Get())
	}
}

// --- Text Wrapping and Cursor Position ---

// wrapWidth returns the display columns available for text content. Borders
// are drawn inside the element width, so they reduce the wrap width by one
// column on each side.
func (t *TextArea) wrapWidth() int {
	w := t.width
	if t.border != BorderNone {
		w -= 2
	}
	return w
}

// wrapText wraps the text to fit within the content width, respecting embedded
// newlines. Lines break at display-column boundaries on grapheme-cluster
// boundaries (CJK, emoji, flags, and ZWJ families occupy whole columns), never
// mid-cluster: a cluster that does not fit moves to the next line. Cursor math
// stays in rune indices, which remain consistent because wrapping only changes
// where lines split, not their runes.
func (t *TextArea) wrapText() []string {
	text := t.text.Get()
	if text == "" {
		return []string{""}
	}

	var lines []string
	width := t.wrapWidth()

	// Split on embedded newlines first
	paragraphs := strings.SplitSeq(text, "\n")

	for para := range paragraphs {
		if para == "" {
			lines = append(lines, "")
			continue
		}

		// Wrap this paragraph to width on cluster boundaries.
		var currentLine strings.Builder
		currentWidth := 0
		rest := para
		for len(rest) > 0 {
			cluster, cw, size := nextCluster(rest)
			if size == 0 {
				break
			}
			rest = rest[size:]
			// The non-empty guard keeps a cluster wider than the wrap width on a
			// line of its own instead of emitting empty lines before it.
			if width > 0 && currentLine.Len() > 0 && currentWidth+cw > width {
				lines = append(lines, currentLine.String())
				currentLine.Reset()
				currentWidth = 0
			}
			currentLine.WriteString(cluster)
			currentWidth += cw
		}
		lines = append(lines, currentLine.String())
	}

	return lines
}

// cursorRowCol returns the row and column (a rune index within the wrapped line)
// of the cursor. Because navigation and editing keep cursorPos on a cluster
// boundary, the reported column always lands between clusters, so a wide or
// multi-rune cluster is never split by the cursor.
//
// A cursor at the end of a display-full line has no column left to render in,
// so it moves to the start of the next visual line (downstream affinity). This
// applies at soft wrap boundaries and at end of text, where the reported row
// is one past the last wrapped line (a phantom row that Render and Height
// account for). A full line ended by a hard newline keeps the cursor at its
// end, since the next row starts a different paragraph.
func (t *TextArea) cursorRowCol(lines []string) (row, col int) {
	text := t.text.Get()
	pos := t.clampCursorPos()
	textRunes := []rune(text)

	currentRow := 0
	currentCol := 0
	lineIdx := 0
	width := t.wrapWidth()
	wrapping := width > 0

	for i := 0; i < len(textRunes) && i < pos; i++ {
		if textRunes[i] == '\n' {
			currentRow++
			currentCol = 0
			lineIdx++
		} else {
			currentCol++
			if wrapping && lineIdx < len(lines) && currentCol > utf8.RuneCountInString(lines[lineIdx]) {
				currentRow++
				currentCol = 1
				lineIdx++
			}
		}
	}

	if wrapping && lineIdx < len(lines) && currentCol > 0 &&
		currentCol == utf8.RuneCountInString(lines[lineIdx]) &&
		stringWidth(lines[lineIdx]) >= width &&
		(pos == len(textRunes) || textRunes[pos] != '\n') {
		return currentRow + 1, 0
	}

	return currentRow, currentCol
}

// posFromRowCol converts row/col (a rune index within the line) back to an
// absolute rune position.
func (t *TextArea) posFromRowCol(lines []string, targetRow, targetCol int) int {
	text := t.text.Get()
	textRunes := []rune(text)

	currentRow := 0
	currentCol := 0
	lineIdx := 0
	wrapping := t.wrapWidth() > 0

	for i := range textRunes {
		if currentRow == targetRow && currentCol == targetCol {
			return i
		}

		if textRunes[i] == '\n' {
			if currentRow == targetRow {
				return i
			}
			currentRow++
			currentCol = 0
			lineIdx++
		} else {
			currentCol++
			if wrapping && lineIdx < len(lines) && currentCol > utf8.RuneCountInString(lines[lineIdx]) {
				if currentRow == targetRow {
					return i
				}
				currentRow++
				currentCol = 1
				lineIdx++
				// The position before rune i is the start of the new line, so
				// (row, 0) targets on soft-wrapped lines resolve here. Without
				// this, column-0 targets after a soft wrap fall through the
				// loop and land at the end of the text.
				if currentRow == targetRow && targetCol == 0 {
					return i
				}
			}
		}
	}

	return len(textRunes)
}

// phantomCursorRow reports whether the cursor sits one row past the last
// wrapped line (end of text on a display-full line), which needs an extra
// rendered row to host the cursor.
func (t *TextArea) phantomCursorRow(lines []string) bool {
	if !t.focused.Get() || t.hideVirtualCursor {
		return false
	}
	row, _ := t.cursorRowCol(lines)
	return row >= len(lines)
}

// lineWithCursor returns a line with the cursor character inserted.
func (t *TextArea) lineWithCursor(lineIdx int) string {
	lines := t.wrapText()
	row, col := t.cursorRowCol(lines)

	if lineIdx >= len(lines) {
		// Phantom row hosting the cursor past a display-full last line.
		if lineIdx == row && t.focused.Get() && !t.hideVirtualCursor && t.blink.Get() {
			return string(t.cursorRune)
		}
		return " "
	}

	line := lines[lineIdx]

	if lineIdx == row && t.focused.Get() {
		// Skip virtual cursor when hardware cursor mode is enabled
		if t.hideVirtualCursor {
			if line == "" {
				return " "
			}
			return line
		}
		cursor := string(t.cursorRune)
		if !t.blink.Get() {
			cursor = " "
		}
		// col is a rune index within the line (always on a cluster boundary).
		runes := []rune(line)
		if col >= len(runes) {
			// A display-full line ended by a hard newline keeps the cursor at
			// its end (see cursorRowCol), where an appended cursor would be
			// clipped. Overlay the last cell instead, like a block cursor
			// sitting on the character.
			if w := t.wrapWidth(); w > 0 && stringWidth(line) >= w && len(runes) > 0 {
				if !t.blink.Get() {
					return line
				}
				// Overlay the whole final grapheme cluster, not just its last
				// rune, so a flag or ZWJ family at the line end is not split.
				starts := clusterRuneStarts(line)
				lastStart := starts[len(starts)-2]
				return string(runes[:lastStart]) + string(t.cursorRune)
			}
			return line + cursor
		}
		withCursor := append(runes[:col], append([]rune{t.cursorRune}, runes[col:]...)...)
		if !t.blink.Get() {
			withCursor[col] = ' '
		}
		return string(withCursor)
	}

	if line == "" {
		return " "
	}
	return line
}

func (t *TextArea) clampCursorPos() int {
	pos := t.cursorPos.Get()
	text := t.text.Get()
	if pos < 0 {
		return 0
	}
	max := utf8.RuneCountInString(text)
	if pos > max {
		return max
	}
	// Snap to a cluster boundary so the cursor never sits inside a cluster.
	return snapRuneToClusterStart(text, pos)
}