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
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
use std::hash::{Hash, Hasher};
use ratatui::{
buffer::Buffer,
layout::Rect,
style::{Modifier, Style},
text::{Line, Span},
widgets::{
Block, Paragraph, Scrollbar, ScrollbarOrientation, ScrollbarState, StatefulWidget, Widget,
},
};
use rustc_hash::FxHashMap;
use unicode_width::{UnicodeWidthChar, UnicodeWidthStr};
use crate::domain::{ActionDetails, ActionDisplay, ActionResult, format_compact_count};
use crate::models::ChatMessageKind;
use crate::models::{ChatMessage, MessageRole};
use crate::render::diff::{DiffLineKind, parse_diff_line};
use crate::render::markdown::parse_markdown;
use crate::render::theme::Theme;
use crate::utils::format_relative_timestamp;
/// Entry in the click map: maps a content line to an image in chat history
#[derive(Debug, Clone)]
pub struct ImageClickTarget {
/// Index into session_state.messages
pub message_index: usize,
/// Index into that message's images vec
pub image_index: usize,
}
/// State for the chat widget
#[derive(Debug, Clone)]
pub struct ChatState {
/// Manual scroll offset (only used when is_user_scrolling = true)
scroll_offset: u16,
/// Whether user is manually scrolling (not following bottom)
is_user_scrolling: bool,
/// Click map: content line number → image target (rebuilt every render)
pub image_click_map: Vec<(u16, ImageClickTarget)>,
/// Scroll position used in last render (for coordinate mapping)
pub last_scroll_position: u16,
/// Chat area rect from last render
pub last_chat_area: Option<(u16, u16, u16, u16)>, // (x, y, width, height)
/// Active drag-selection in CONTENT coordinates: `(anchor, cursor)` where
/// each is `(content_line, col_cells)`. Highlight + copy derive from it.
selection: Option<((usize, usize), (usize, usize))>,
/// Plain text of each rendered content row, captured every frame so the
/// selection can be extracted by display-cell range. Indexed by content
/// line (the same index the selection uses).
last_rendered_rows: Vec<String>,
}
impl ChatState {
/// Create a new chat state (starts in auto-follow mode)
pub fn new() -> Self {
Self {
scroll_offset: 0,
is_user_scrolling: false,
image_click_map: Vec::new(),
last_scroll_position: 0,
last_chat_area: None,
selection: None,
last_rendered_rows: Vec::new(),
}
}
/// Get the scroll position for rendering
/// scroll_offset represents distance from bottom, convert to ratatui scroll position
pub fn get_scroll_position(&self, content_height: u16, viewport_height: u16) -> u16 {
let max_scroll = content_height.saturating_sub(viewport_height);
if self.is_user_scrolling {
// Manual scroll: convert "distance from bottom" to scroll position
// scroll_offset=0 → show bottom (max_scroll), scroll_offset=max → show top (0)
let capped_offset = self.scroll_offset.min(max_scroll);
max_scroll.saturating_sub(capped_offset)
} else {
// Auto-scroll: show bottom of content
max_scroll
}
}
/// Scroll viewport up (shows older messages further from bottom)
pub fn scroll_up(&mut self, amount: u16) {
self.is_user_scrolling = true;
self.scroll_offset = self.scroll_offset.saturating_add(amount);
// A selection's content-line anchors don't track scrolling; drop it
// rather than leave a highlight stranded on the wrong rows.
self.selection = None;
}
/// Scroll viewport down (shows newer messages closer to bottom)
/// Automatically resumes auto-scroll when reaching the bottom
pub fn scroll_down(&mut self, amount: u16) {
self.scroll_offset = self.scroll_offset.saturating_sub(amount);
if self.scroll_offset == 0 {
// Reached bottom — resume auto-follow mode
self.is_user_scrolling = false;
}
self.selection = None;
}
/// Force resume auto-scroll mode (jump to bottom)
pub fn resume_auto_scroll(&mut self) {
self.is_user_scrolling = false;
self.scroll_offset = 0;
}
/// Check if user is manually scrolling (not following bottom)
pub fn is_manually_scrolling(&self) -> bool {
self.is_user_scrolling
}
/// Find an image click target at the given screen coordinates.
/// Returns Some((message_index, image_index)) if an image indicator was clicked.
pub fn find_image_at_screen_pos(&self, screen_row: u16) -> Option<&ImageClickTarget> {
let (_, area_y, _, area_height) = self.last_chat_area?;
// Check if click is within chat area
if screen_row < area_y || screen_row >= area_y + area_height {
return None;
}
// Convert screen row to content line
let viewport_row = screen_row - area_y;
let content_line = viewport_row + self.last_scroll_position;
// Look up in click map
self.image_click_map
.iter()
.find(|(line, _)| *line == content_line)
.map(|(_, target)| target)
}
/// Map a screen `(row, col)` to content `(line, col_cells)`, or `None`
/// when the point is outside the chat area. `col` is clamped to the chat
/// area's left edge so a drag past the gutter still maps to column 0.
fn screen_to_content(&self, screen_row: u16, screen_col: u16) -> Option<(usize, usize)> {
let (area_x, area_y, _, area_height) = self.last_chat_area?;
if screen_row < area_y || screen_row >= area_y + area_height {
return None;
}
let content_line = (screen_row - area_y) as usize + self.last_scroll_position as usize;
let col = screen_col.saturating_sub(area_x) as usize;
Some((content_line, col))
}
/// Begin a drag selection at the given screen position (mouse-down).
/// Anchors and cursor both start here; a plain click with no drag selects
/// nothing.
pub fn begin_selection(&mut self, screen_row: u16, screen_col: u16) {
self.selection = self
.screen_to_content(screen_row, screen_col)
.map(|p| (p, p));
}
/// Extend the in-progress selection to the given screen position (drag).
pub fn update_selection(&mut self, screen_row: u16, screen_col: u16) {
if let Some((anchor, _)) = self.selection
&& let Some(cursor) = self.screen_to_content(screen_row, screen_col)
{
self.selection = Some((anchor, cursor));
}
}
/// Drop any active selection (and its highlight).
pub fn clear_selection(&mut self) {
self.selection = None;
}
/// Extract the currently-selected text from the last rendered frame, or
/// `None` if there's no selection or it's empty (e.g. a plain click).
/// Walks the retained per-row text and slices each row by display cells so
/// CJK / wide glyphs are never split mid-cell.
pub fn selected_text(&self) -> Option<String> {
let (a, b) = self.selection?;
let (start, end) = if a <= b { (a, b) } else { (b, a) };
if self.last_rendered_rows.is_empty() {
return None;
}
let last = self.last_rendered_rows.len() - 1;
let (start_line, start_col) = (start.0.min(last), start.1);
let (end_line, end_col) = (end.0.min(last), end.1);
let mut out = String::new();
for line in start_line..=end_line {
let row = &self.last_rendered_rows[line];
let c0 = if line == start_line { start_col } else { 0 };
let c1 = if line == end_line {
end_col
} else {
usize::MAX
};
let mut piece = slice_by_cells(row, c0, c1).to_string();
// Drop the rendered left margin (the "● "/" " role/continuation
// prefix — up to SELECT_MARGIN_CELLS cells of spaces) so copied
// text is clean. Only spaces inside the margin zone [c0, MARGIN)
// are removed, so a code line's own indentation is preserved.
let mut margin = SELECT_MARGIN_CELLS.saturating_sub(c0);
while margin > 0 && piece.starts_with(' ') {
piece.remove(0);
margin -= 1;
}
out.push_str(piece.trim_end());
if line != end_line {
out.push('\n');
}
}
if out.is_empty() { None } else { Some(out) }
}
}
/// Display-cell width of the role/continuation left margin ("● " or " ")
/// that the renderer prepends to chat content lines. Stripped from copied
/// selections so the clipboard gets clean text.
const SELECT_MARGIN_CELLS: usize = 2;
/// Hard-wrap a pre-formatted (code) line at `width` display cells, preserving
/// every glyph (including whitespace) and each span's style. Continuation rows
/// get a `indent`-space hanging indent. Unlike `wrap_styled_line` this never
/// collapses runs of spaces, so code indentation and alignment survive.
fn wrap_preformatted(line: Line<'static>, width: usize, indent: usize) -> Vec<Line<'static>> {
if width == 0 {
return vec![line];
}
let total: usize = line.spans.iter().map(|s| s.content.width()).sum();
if total <= width {
return vec![line];
}
let base = line.style;
let mut out: Vec<Line<'static>> = Vec::new();
let mut cur: Vec<Span<'static>> = Vec::new();
let mut cur_w = 0usize;
let mut on_first = true;
for span in line.spans {
let style = span.style;
let mut buf = String::new();
for ch in span.content.chars() {
let cw = ch.width().unwrap_or(0);
// Break before this char if it would overflow and the current row
// already holds real content (beyond the continuation indent).
let floor = if on_first { 0 } else { indent };
if cur_w + cw > width && cur_w > floor {
if !buf.is_empty() {
cur.push(Span::styled(std::mem::take(&mut buf), style));
}
out.push(Line::from(std::mem::take(&mut cur)).style(base));
on_first = false;
cur.push(Span::styled(" ".repeat(indent), base));
cur_w = indent;
}
buf.push(ch);
cur_w += cw;
}
if !buf.is_empty() {
cur.push(Span::styled(buf, style));
}
}
if !cur.is_empty() {
out.push(Line::from(cur).style(base));
}
if out.is_empty() {
vec![Line::from("").style(base)]
} else {
out
}
}
/// Byte offset in `s` at the start of display-cell `target` (clamped to
/// `s.len()`). A wide glyph straddling `target` is kept whole on the right
/// side, so slicing never lands mid-character.
fn byte_at_cell(s: &str, target: usize) -> usize {
if target == 0 {
return 0;
}
let mut width = 0usize;
for (idx, ch) in s.char_indices() {
if width >= target {
return idx;
}
width += ch.width().unwrap_or(0);
}
s.len()
}
/// Slice `s` to the display-cell range `[c0, c1)`.
fn slice_by_cells(s: &str, c0: usize, c1: usize) -> &str {
let start = byte_at_cell(s, c0);
let end = byte_at_cell(s, c1).max(start);
&s[start..end]
}
/// Pad `s` on the right with spaces until it spans `cells` display columns,
/// measured with `UnicodeWidthStr::width` (not chars/bytes) so a CJK/emoji row's
/// background bar fills to the true visual edge instead of falling short (#101).
/// Never truncates — an already-too-wide `s` is returned unchanged.
fn pad_to_cells(s: &str, cells: usize) -> String {
let w = s.width();
if w >= cells {
return s.to_string();
}
let mut out = String::with_capacity(s.len() + (cells - w));
out.push_str(s);
out.push_str(&" ".repeat(cells - w));
out
}
/// First-line spacing for a user message: the run of spaces before the
/// right-aligned timestamp. All inputs are display-cell widths so CJK/emoji
/// align correctly (#104). Returns `min_gap` plus whatever slack remains to
/// push the timestamp to `content_width`'s right edge.
fn user_timestamp_padding(
role_prefix_width: usize,
text_width: usize,
timestamp_width: usize,
min_gap: usize,
content_width: usize,
) -> usize {
let total_used = role_prefix_width + text_width + min_gap + timestamp_width;
min_gap + content_width.saturating_sub(total_used)
}
/// The plain text of a rendered line (spans concatenated, styles dropped).
fn line_plain_text(line: &Line) -> String {
line.spans.iter().map(|s| s.content.as_ref()).collect()
}
/// Apply `hl` (merged onto each span's existing style) to display cells
/// `[c0, c1)` of `line`, splitting spans at the selection boundaries so the
/// highlight lands on exactly the selected glyphs.
fn highlight_line_cells(line: &mut Line<'static>, c0: usize, c1: usize, hl: Style) {
let mut new_spans: Vec<Span<'static>> = Vec::with_capacity(line.spans.len() + 2);
let mut width = 0usize;
for span in line.spans.drain(..) {
let span_w = span.content.width();
let (span_start, span_end) = (width, width + span_w);
width = span_end;
let ov0 = c0.max(span_start);
let ov1 = c1.min(span_end);
if ov1 <= ov0 {
new_spans.push(span); // no overlap with the selection
continue;
}
let s = span.content.as_ref();
let b0 = byte_at_cell(s, ov0 - span_start);
let b1 = byte_at_cell(s, ov1 - span_start);
if b0 > 0 {
new_spans.push(Span::styled(s[..b0].to_string(), span.style));
}
new_spans.push(Span::styled(s[b0..b1].to_string(), span.style.patch(hl)));
if b1 < s.len() {
new_spans.push(Span::styled(s[b1..].to_string(), span.style));
}
}
line.spans = new_spans;
}
impl Default for ChatState {
fn default() -> Self {
Self::new()
}
}
/// Props for ChatWidget
pub struct ChatWidget<'a> {
pub messages: &'a [ChatMessage],
pub theme: &'a Theme,
/// Shared markdown parse cache: content hash → parsed lines.
pub markdown_cache: &'a mut FxHashMap<u64, Vec<Line<'static>>>,
pub show_reasoning: bool,
}
impl<'a> StatefulWidget for ChatWidget<'a> {
type State = ChatState;
fn render(self, area: Rect, buf: &mut Buffer, state: &mut Self::State) {
let mut lines: Vec<Line<'static>> = Vec::new();
// Code-block lines are tagged with this background; computed once so
// the per-message render loop and the markdown cache key can use it.
let code_bg = self.theme.colors.code_background.to_color();
let theme_seed = {
let mut h = rustc_hash::FxHasher::default();
self.theme.colors.foreground.to_color().hash(&mut h);
code_bg.hash(&mut h);
self.theme.colors.header.to_color().hash(&mut h);
h.finish()
};
// Reserve the rightmost column as a scrollbar gutter so the bar never
// paints over text. All content wrapping/rendering uses `content_area`.
let gutter: u16 = if area.width > 4 { 1 } else { 0 };
let content_width = area.width.saturating_sub(gutter);
let content_area = Rect {
width: content_width,
..area
};
// Clear click map for this render pass
state.image_click_map.clear();
state.last_chat_area = Some((area.x, area.y, area.width, area.height));
let mut hidden_reasoning_notice_shown = false;
for (idx, msg) in self.messages.iter().enumerate() {
// Skip Tool messages - they're internal to the agent loop and their
// content is already displayed inline in the assistant's action blocks
if matches!(msg.role, MessageRole::Tool) {
continue;
}
if matches!(msg.kind, ChatMessageKind::ContextCheckpoint) {
if let Some(event_lines) = render_context_checkpoint_event(msg, self.theme) {
lines.extend(event_lines);
lines.push(Line::from(""));
}
continue;
}
let (role_prefix, role_color) = match msg.role {
MessageRole::User => (">", ratatui::style::Color::White),
MessageRole::Assistant => ("●", ratatui::style::Color::White),
MessageRole::System => ("●", self.theme.colors.system_message.to_color()),
MessageRole::Tool => unreachable!("Tool messages filtered above"),
};
if matches!(msg.role, MessageRole::Assistant) {
// Render thinking block if present
if let Some(ref thinking) = msg.thinking {
// Skip rendering if thinking content is empty or literal "None"
let thinking_trimmed = thinking.trim();
if thinking_trimmed.is_empty()
|| thinking_trimmed == "None"
|| thinking_trimmed == "none"
{
// Don't render empty/null thinking blocks
} else if self.show_reasoning {
// Add "Thinking..." header in italic and dimmed with grayed white dot
lines.push(Line::from(vec![
Span::styled("● ", Style::new().fg(ratatui::style::Color::DarkGray)),
Span::styled(
"Thinking...",
Style::new()
.fg(self.theme.colors.text_secondary.to_color())
.italic()
.dim(),
),
]));
// Render thinking content with proper wrapping (2-space hanging indent)
let wrapped = wrap_text_with_indent(
thinking,
content_width as usize,
2, // first line indent (2 spaces)
2, // continuation indent (2 spaces)
);
for wrapped_line in wrapped {
lines.push(Line::from(Span::styled(
wrapped_line,
Style::new()
.fg(self.theme.colors.text_secondary.to_color())
.italic()
.dim(),
)));
}
// Add blank line after thinking block
lines.push(Line::from(""));
} else if !hidden_reasoning_notice_shown {
hidden_reasoning_notice_shown = true;
let marker = if msg.content.trim().is_empty() && msg.actions.is_empty() {
"Reasoning-only response hidden (/visible-reasoning on to show)"
} else {
"Reasoning hidden (/visible-reasoning on to show)"
};
lines.push(Line::from(vec![
Span::styled("● ", Style::new().fg(ratatui::style::Color::DarkGray)),
Span::styled(
marker,
Style::new()
.fg(self.theme.colors.text_secondary.to_color())
.italic()
.dim(),
),
]));
// Always separate the placeholder from whatever follows
// (tool actions or the visible answer) with one blank
// line — the same gap every other block gets. Without
// this, a "thought, then called a tool" turn (empty
// content + actions) rendered the placeholder flush
// against the first "● Bash(…)" line.
lines.push(Line::from(""));
if msg.content.trim().is_empty() && msg.actions.is_empty() {
continue;
}
} else if msg.content.trim().is_empty() && msg.actions.is_empty() {
continue;
}
}
// With tool calling, message content is just text (no embedded action blocks)
// Use cached parsed markdown when available (avoids re-parsing
// every frame). The theme is folded into the key so a theme
// switch can't serve stale-colored cached lines.
let mut hasher = rustc_hash::FxHasher::default();
msg.content.hash(&mut hasher);
theme_seed.hash(&mut hasher);
let cache_key = hasher.finish();
let parsed_lines = if let Some(cached) = self.markdown_cache.get(&cache_key) {
cached.clone()
} else {
let parsed = parse_markdown(&msg.content, self.theme);
self.markdown_cache.insert(cache_key, parsed.clone());
if self.markdown_cache.len() > crate::constants::MARKDOWN_CACHE_MAX_ENTRIES {
self.markdown_cache.clear();
self.markdown_cache.insert(cache_key, parsed.clone());
}
parsed
};
for (line_idx, parsed_line) in parsed_lines.into_iter().enumerate() {
// Code-block lines are tagged with the code background on
// their base style (see markdown::parse_markdown). They're
// pre-formatted: don't word-wrap (that collapses
// indentation) — let the Paragraph clip overflow instead.
let preformatted = parsed_line.style.bg == Some(code_bg);
let base_style = parsed_line.style;
// Continuation indent for wrapping: the 2-cell message gutter
// every line carries, plus this line's own content-start column
// so a wrapped list item's continuations hang under its text
// (after the marker) instead of snapping back to the gutter.
let continuation = if preformatted {
2
} else {
2 + crate::render::markdown::line_hanging_indent(&parsed_line, self.theme)
};
// Add role indicator to first line or 2-space margin to others.
let mut spans = if line_idx == 0 {
vec![Span::styled(
format!("{} ", role_prefix),
Style::new().fg(role_color).bold(),
)]
} else {
vec![Span::raw(" ")]
};
spans.extend(parsed_line.spans);
let new_line = Line::from(spans).style(base_style);
if preformatted {
// Code: hard-wrap preserving indentation (don't
// word-collapse) so wide lines stay readable.
lines.extend(wrap_preformatted(new_line, content_width as usize, 2));
} else {
lines.extend(wrap_styled_line(
new_line,
content_width as usize,
continuation,
));
}
}
// Render all actions at the end of the message
if !msg.actions.is_empty() {
// Add blank line between text content and actions
if !msg.content.trim().is_empty() {
lines.push(Line::from(""));
}
render_actions(&msg.actions, &mut lines, self.theme, content_width as usize);
}
} else {
// For User messages: format timestamp and display on right edge
let formatted_timestamp = format_relative_timestamp(msg.timestamp);
// Display cells, not bytes — a CJK/emoji timestamp (or message)
// would otherwise mis-reserve space and push the right-aligned
// timestamp off its column (#104).
let timestamp_width = formatted_timestamp.width();
let min_gap = 3; // minimum spaces between text and timestamp
// Content is clean — timestamps are injected at API call time only
let cleaned_content = &msg.content;
// Reserve space on the first line for role prefix + gap + timestamp
// so text wraps early enough to not overlap the timestamp
let role_prefix_width = role_prefix.width() + 1; // "You " = prefix + space
let first_line_reserved = role_prefix_width + min_gap + timestamp_width;
// Manually wrap the user message with hanging indent (2 spaces)
let wrapped = wrap_text_with_indent(
cleaned_content,
content_width as usize,
first_line_reserved, // reserve space for prefix + gap + timestamp on first line
2, // continuation indent
);
for (line_idx, wrapped_line) in wrapped.iter().enumerate() {
if line_idx == 0 {
// First line: add role prefix and timestamp on right
let text_content = wrapped_line.trim_start(); // Remove the indent we added
let text_width = text_content.width();
let mut spans = vec![
Span::styled(
format!("{} ", role_prefix),
Style::new().fg(role_color).bold(),
),
Span::raw(text_content.to_string()),
];
// Always add at least min_gap spaces, plus any extra from word-boundary slack.
// Align the timestamp to the content right edge (before the scrollbar gutter).
let pad = user_timestamp_padding(
role_prefix_width,
text_width,
timestamp_width,
min_gap,
content_width as usize,
);
spans.push(Span::raw(" ".repeat(pad)));
spans.push(Span::styled(
formatted_timestamp.clone(),
Style::new().fg(ratatui::style::Color::Rgb(136, 136, 136)),
));
lines.push(Line::from(spans));
} else {
// Continuation lines: already have 2-space margin from wrap_text_with_indent
lines.push(Line::from(wrapped_line.clone()));
}
}
}
// Show image indicators under user and assistant messages.
// User images come from clipboard paste (`Attachment`); assistant
// images come from tool executions that emitted `ProgressEvent::
// Artifact` during their run — screenshot captures, inline
// previews from computer-use, etc. Both land in `msg.images` as
// base64 strings and render the same way.
if matches!(msg.role, MessageRole::User | MessageRole::Assistant)
&& let Some(ref images) = msg.images
&& !images.is_empty()
{
for (i, _) in images.iter().enumerate() {
// Record this line in the click map before pushing
let content_line = lines.len() as u16;
state.image_click_map.push((
content_line,
ImageClickTarget {
message_index: idx,
image_index: i,
},
));
lines.push(Line::from(vec![
Span::styled(" ⎿ ", Style::new().fg(self.theme.colors.info.to_color())),
Span::styled(
format!("[Image #{}]", i + 1),
Style::new().fg(self.theme.colors.info.to_color()).italic(),
),
]));
}
}
lines.push(Line::from(""));
}
// NOTE: The response buffer is NOT rendered during streaming (buffering mode).
// The response is buffered invisibly and only shown when generation is complete.
// This provides a Claude Code-like experience where the complete response
// appears instantly instead of streaming character-by-character.
//
// The status line shows progress: "↑ Sending..." → "↓ Streaming..." with timer
// Capture the plain text of each rendered row for selection
// extraction. Done before the highlight pass, which only changes
// styling, not text.
state.last_rendered_rows = lines.iter().map(line_plain_text).collect();
// Paint the active drag selection (reverse video over the selected
// cells). Selection lines are content indices, matching `lines`.
if let Some((a, b)) = state.selection
&& !lines.is_empty()
{
let (start, end) = if a <= b { (a, b) } else { (b, a) };
let sel_style = Style::new().add_modifier(Modifier::REVERSED);
let last_line = lines.len() - 1;
for (line_idx, line) in lines
.iter_mut()
.enumerate()
.take(end.0.min(last_line) + 1)
.skip(start.0)
{
let c0 = if line_idx == start.0 { start.1 } else { 0 };
let c1 = if line_idx == end.0 { end.1 } else { usize::MAX };
if c1 > c0 {
highlight_line_cells(line, c0, c1, sel_style);
}
}
}
// NOTE: Wrapping is disabled because we handle it manually with hanging indents
// Calculate content height and viewport for proper scroll clamping
let content_height = lines.len() as u16;
let viewport_height = area.height;
let scroll_pos = state.get_scroll_position(content_height, viewport_height);
state.last_scroll_position = scroll_pos;
let paragraph = Paragraph::new(lines)
.block(Block::default())
.scroll((scroll_pos, 0));
paragraph.render(content_area, buf);
// Scrollbar in the reserved gutter — only when the transcript actually
// overflows the viewport. Uses ratatui's 0.30 Scrollbar widget.
if gutter == 1 && content_height > viewport_height {
let mut sb_state = ScrollbarState::new(content_height as usize)
.viewport_content_length(viewport_height as usize)
.position(scroll_pos as usize);
Scrollbar::new(ScrollbarOrientation::VerticalRight)
.begin_symbol(None)
.end_symbol(None)
.thumb_style(Style::new().fg(self.theme.colors.border.to_color()))
.track_style(Style::new().fg(self.theme.colors.text_disabled.to_color()))
.render(area, buf, &mut sb_state);
}
}
}
fn render_context_checkpoint_event(msg: &ChatMessage, theme: &Theme) -> Option<Vec<Line<'static>>> {
if !matches!(msg.role, MessageRole::User) {
return None;
}
let metadata = msg.metadata.as_ref();
let trigger = metadata
.and_then(|value| value.get("trigger"))
.and_then(|value| value.as_str())
.unwrap_or("manual");
let before_tokens = metadata.and_then(|value| metadata_usize(value, "before_tokens"));
let after_tokens = metadata.and_then(|value| metadata_usize(value, "after_tokens"));
let archived_messages =
metadata.and_then(|value| metadata_usize(value, "archived_message_count"));
let preserved_messages =
metadata.and_then(|value| metadata_usize(value, "preserved_message_count"));
let duration_secs = metadata
.and_then(|value| value.get("duration_secs"))
.and_then(|value| value.as_f64());
let verified = metadata
.and_then(|value| value.get("verified"))
.and_then(|value| value.as_bool());
let verification_error = metadata
.and_then(|value| value.get("verification_error"))
.and_then(|value| value.as_str());
let action_color = theme.colors.info.to_color();
let mut result = match (before_tokens, after_tokens) {
(Some(before), Some(after)) => {
format!(
"Success, {} -> {} tokens",
format_compact_count(before),
format_compact_count(after)
)
},
_ => "Success".to_string(),
};
if let Some(count) = archived_messages {
result.push_str(&format!(
", archived {} {}",
count,
if count == 1 { "message" } else { "messages" }
));
}
if let Some(count) = preserved_messages {
result.push_str(&format!(
", preserved {} {}",
count,
if count == 1 { "message" } else { "messages" }
));
}
if let Some(verified) = verified {
if verified {
result.push_str(", verified");
} else {
result.push_str(", draft fallback");
}
}
result = append_action_duration(result, duration_secs);
let mut lines = vec![
Line::from(vec![
Span::styled("● ", Style::new().fg(action_color).bold()),
Span::styled("Compact(", Style::new().fg(action_color).bold()),
Span::styled(
trigger.to_string(),
Style::new().fg(theme.colors.text_secondary.to_color()),
),
Span::styled(")", Style::new().fg(action_color).bold()),
]),
Line::from(vec![
Span::styled(" ⎿ ", Style::new().fg(action_color)),
Span::styled(
result,
Style::new().fg(theme.colors.text_secondary.to_color()),
),
]),
];
if let Some(error) = verification_error.filter(|error| !error.trim().is_empty()) {
lines.push(Line::from(vec![
Span::styled(" ", Style::new().fg(action_color)),
Span::styled(
format!("verification: {}", compact_inline_error(error, 180)),
Style::new().fg(theme.colors.warning.to_color()),
),
]));
}
Some(lines)
}
fn metadata_usize(value: &serde_json::Value, key: &str) -> Option<usize> {
value
.get(key)?
.as_u64()
.and_then(|value| usize::try_from(value).ok())
}
fn compact_inline_error(text: &str, max_chars: usize) -> String {
let text = text.trim();
if text.chars().count() <= max_chars {
return text.to_string();
}
let keep = max_chars.saturating_sub(3);
let mut out: String = text.chars().take(keep).collect();
out.push_str("...");
out
}
/// Render actions in Claude Code style
/// Expand tab characters to spaces on 4-column tab stops.
///
/// Tabs paint as zero cells in the terminal buffer, so a line containing them
/// has a char count larger than its painted width. Any width math done by char
/// count (e.g. padding a diff line so its background bar spans the row) would
/// then come up short by one column per tab. Expanding here keeps indentation
/// visible and makes char count match painted width.
fn expand_tabs(s: &str) -> String {
const TAB_WIDTH: usize = 4;
if !s.contains('\t') {
return s.to_string();
}
let mut out = String::with_capacity(s.len() + TAB_WIDTH);
let mut col = 0usize;
for ch in s.chars() {
if ch == '\t' {
let n = TAB_WIDTH - (col % TAB_WIDTH);
for _ in 0..n {
out.push(' ');
}
col += n;
} else {
out.push(ch);
col += UnicodeWidthChar::width(ch).unwrap_or(0);
}
}
out
}
fn render_actions(
actions: &[ActionDisplay],
lines: &mut Vec<Line>,
theme: &Theme,
viewport_width: usize,
) {
for (action_idx, action) in actions.iter().enumerate() {
if action_idx > 0 {
lines.push(Line::from(""));
}
let action_color = match action.action_type.as_str() {
"Write" | "Edit" => theme.colors.success.to_color(),
"Delete" => theme.colors.warning.to_color(),
_ => theme.colors.info.to_color(),
};
// Header: ● Type(target)
lines.push(Line::from(vec![
Span::styled("● ", Style::new().fg(action_color).bold()),
Span::styled(
format!("{}(", action.action_type),
Style::new().fg(action_color).bold(),
),
Span::styled(
action.target.clone(),
Style::new().fg(theme.colors.text_secondary.to_color()),
),
Span::styled(")", Style::new().fg(action_color).bold()),
]));
match &action.result {
ActionResult::Success { .. } => {
// Result summary from details enum
let result_msg = match &action.details {
ActionDetails::FileContent { line_count, .. } => {
let base = format!(
"Success, {} {} written",
line_count,
if *line_count == 1 { "line" } else { "lines" }
);
append_action_duration(base, action.duration_seconds)
},
ActionDetails::Diff { summary, .. } => summary.clone(),
ActionDetails::Preview { text, .. } => text.clone(),
ActionDetails::Simple => match action.action_type.as_str() {
"Delete" => append_action_duration(
format!("Success, deleted {}", action.target),
action.duration_seconds,
),
_ => append_action_duration("Success".to_string(), action.duration_seconds),
},
};
for (idx, line) in result_msg.lines().enumerate() {
let prefix = if idx == 0 { " ⎿ " } else { " " };
lines.push(Line::from(vec![
Span::styled(prefix, Style::new().fg(action_color)),
Span::styled(
line.to_string(),
Style::new().fg(theme.colors.text_secondary.to_color()),
),
]));
}
// Write: syntax-highlighted file preview
if let ActionDetails::FileContent {
content,
line_count,
} = &action.details
{
let preview_lines: Vec<&str> = content.lines().take(10).collect();
if !preview_lines.is_empty() {
lines.push(Line::from(vec![Span::styled(
" ",
Style::new().fg(action_color),
)]));
let preview_content = preview_lines.join("\n");
let mut parsed =
parse_markdown(&format!("```\n{}\n```", preview_content), theme);
for parsed_line in parsed.iter_mut() {
let mut new_spans =
vec![Span::styled(" ", Style::new().fg(action_color))];
new_spans.append(&mut parsed_line.spans);
parsed_line.spans = new_spans;
}
lines.extend(parsed);
if *line_count > 10 {
lines.push(Line::from(vec![
Span::styled(" ", Style::new().fg(action_color)),
Span::styled(
format!("... ({} more lines)", line_count - 10),
Style::new()
.fg(theme.colors.text_disabled.to_color())
.italic(),
),
]));
}
}
}
// Edit: color-coded diff
if let ActionDetails::Diff { diff, .. } = &action.details {
let diff_lines: Vec<&str> = diff.lines().collect();
let display_lines: Vec<&str> = diff_lines.iter().take(80).copied().collect();
if !display_lines.is_empty() {
let removed_bg = ratatui::style::Color::Rgb(60, 20, 20);
let added_bg = ratatui::style::Color::Rgb(20, 50, 20);
for diff_line in &display_lines {
// Expand tabs first: the TUI paints a tab as zero
// cells, so a tab-bearing line's char count exceeds
// its painted width and the char-count pad below
// would leave the background bar short — a ragged
// "staircase" down the right edge. Expanding also
// makes tab indentation actually visible.
let diff_line = expand_tabs(diff_line);
// Delegate the producer-format awareness to
// `parse_diff_line`, which lives next to the
// marker constants and stays in lockstep with
// any future format change.
match parse_diff_line(&diff_line) {
DiffLineKind::Removed => {
let text = format!(" {}", diff_line);
let padded = pad_to_cells(&text, viewport_width);
lines.push(Line::from(vec![Span::styled(
padded,
Style::new()
.fg(theme.colors.error.to_color())
.bg(removed_bg),
)]));
},
DiffLineKind::Added => {
let text = format!(" {}", diff_line);
let padded = pad_to_cells(&text, viewport_width);
lines.push(Line::from(vec![Span::styled(
padded,
Style::new()
.fg(theme.colors.success.to_color())
.bg(added_bg),
)]));
},
DiffLineKind::Context => {
lines.push(Line::from(vec![
Span::styled(" ", Style::new().fg(action_color)),
Span::styled(
diff_line,
Style::new().fg(theme.colors.text_secondary.to_color()),
),
]));
},
}
}
let remaining = diff_lines.len().saturating_sub(display_lines.len());
if remaining > 0 {
lines.push(Line::from(vec![
Span::styled(" ", Style::new().fg(action_color)),
Span::styled(
format!("... ({} more lines)", remaining),
Style::new()
.fg(theme.colors.text_disabled.to_color())
.italic(),
),
]));
}
}
}
},
ActionResult::Error { error } => {
let error =
append_action_duration(format!("Error: {}", error), action.duration_seconds);
lines.push(Line::from(vec![
Span::styled(" ⎿ ", Style::new().fg(theme.colors.error.to_color())),
Span::styled(error, Style::new().fg(theme.colors.error.to_color())),
]));
},
}
}
}
fn append_action_duration(mut text: String, duration_seconds: Option<f64>) -> String {
if let Some(seconds) = duration_seconds {
text.push_str(", took ");
text.push_str(&format_action_duration(seconds));
}
text
}
fn format_action_duration(seconds: f64) -> String {
if seconds < 1.0 {
format!("{}ms", (seconds * 1000.0).round().max(1.0) as u64)
} else if seconds < 10.0 {
format!("{:.1}s", seconds)
} else {
format!("{}s", seconds.round() as u64)
}
}
/// Wrap text with hanging indent support.
///
/// `width`, `first_line_indent`, and `continuation_indent` are all measured
/// in **display cells**, not bytes. Word lengths are also measured in cells
/// via `UnicodeWidthStr::width` so CJK / emoji wrap at the visual edge —
/// previously a CJK paragraph would wrap after ~1/3 of the line because
/// `word.len()` (bytes) is roughly 3× `word.width()` (cells) for 3-byte
/// codepoints.
fn wrap_text_with_indent(
text: &str,
width: usize,
first_line_indent: usize,
continuation_indent: usize,
) -> Vec<String> {
let mut wrapped_lines = Vec::new();
for (line_idx, line) in text.lines().enumerate() {
if line.is_empty() {
wrapped_lines.push(String::new());
continue;
}
let current_indent = if line_idx == 0 {
first_line_indent
} else {
continuation_indent
};
let available_width = width.saturating_sub(current_indent);
if available_width == 0 {
wrapped_lines.push(" ".repeat(current_indent));
continue;
}
let words: Vec<&str> = line.split_whitespace().collect();
if words.is_empty() {
wrapped_lines.push(" ".repeat(current_indent));
continue;
}
let mut current_line = String::with_capacity(width);
current_line.push_str(&" ".repeat(current_indent));
// Display-cell widths: indent is ASCII spaces (1 cell each), so
// start fresh and let words contribute their own cell widths.
let mut current_length = 0;
for (word_idx, word) in words.iter().enumerate() {
let word_width = word.width();
if word_idx == 0 {
// First word always fits on the line
current_line.push_str(word);
current_length = word_width;
} else if current_length + 1 + word_width <= available_width {
// Word fits on current line (the +1 accounts for the
// separator space, which is 1 cell)
current_line.push(' ');
current_line.push_str(word);
current_length += 1 + word_width;
} else {
// Word doesn't fit, start a new line
wrapped_lines.push(current_line);
current_line = String::with_capacity(width);
current_line.push_str(&" ".repeat(continuation_indent));
current_line.push_str(word);
current_length = word_width;
}
}
// Add the last line
if !current_line.trim().is_empty() {
wrapped_lines.push(current_line);
}
}
wrapped_lines
}
/// Wrap a styled Line with hanging indent, preserving all span styles
/// Returns multiple Line objects with proper indentation
fn wrap_styled_line(
line: Line<'static>,
width: usize,
continuation_indent: usize,
) -> Vec<Line<'static>> {
// Widths are counted in display cells (via `UnicodeWidthStr`), not
// bytes. This makes CJK double-width chars and emoji wrap at the
// correct visual column, and avoids over-wrapping multi-byte ASCII-
// looking glyphs.
let total_width: usize = line.spans.iter().map(|s| s.content.width()).sum();
// If the line fits within width, return as-is
if total_width <= width {
return vec![line];
}
// Line needs wrapping - extract all text and styles
let mut result_lines = Vec::new();
let mut current_line_spans = Vec::new();
let mut current_line_width = 0usize;
let available_width = width.saturating_sub(continuation_indent);
// Preserve the line's existing left margin (the " " continuation gutter the
// caller prepends to every non-first message line) on the *first* wrapped
// segment. `split_whitespace` below drops leading spaces and the "first word,
// no indent" rule would then flush the segment to column 0 — that's the
// recurring bug where a wrapped paragraph escapes the message gutter while its
// own continuation lines (which get `continuation_indent`) stay aligned. A
// non-whitespace prefix like "● " is unaffected (it survives `split_whitespace`).
let leading_indent: usize = {
let mut n = 0;
for span in &line.spans {
let spaces = span.content.len() - span.content.trim_start_matches(' ').len();
n += spaces;
if spaces < span.content.len() {
break; // this span has non-space content, so leading run ends here
}
}
n
};
for span in line.spans.clone() {
let span_text = span.content.to_string();
let span_style = span.style;
// Split span text by words
let words: Vec<&str> = span_text.split_whitespace().collect();
for (word_idx, word) in words.iter().enumerate() {
let word_with_space = if word_idx > 0 || current_line_width > 0 {
format!(" {}", word)
} else {
word.to_string()
};
let word_width = word_with_space.width();
if current_line_width == 0 && result_lines.is_empty() {
// First word of the first line: re-apply the original left margin
// (dropped by split_whitespace) so the segment keeps the gutter
// instead of flushing to column 0.
if leading_indent > 0 {
current_line_spans.push(Span::raw(" ".repeat(leading_indent)));
current_line_width += leading_indent;
}
current_line_spans.push(Span::styled(word_with_space, span_style));
current_line_width += word_width;
} else if current_line_width + word_width <= available_width {
// Word fits on current line
current_line_spans.push(Span::styled(word_with_space, span_style));
current_line_width += word_width;
} else {
// Word doesn't fit - finish current line and start new one
result_lines.push(Line::from(current_line_spans));
current_line_spans = vec![Span::raw(" ".repeat(continuation_indent))];
current_line_spans.push(Span::styled(word.to_string(), span_style));
current_line_width = word.width();
}
}
}
// Add the last line if it has content
if !current_line_spans.is_empty() {
result_lines.push(Line::from(current_line_spans));
}
if result_lines.is_empty() {
vec![line]
} else {
result_lines
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn diff_background_fills_full_width_with_tabs() {
// Regression: tab characters paint as zero cells, so char-count padding
// left the red/green diff bar short by one column per tab — a ragged
// "staircase" down the right edge. After expand_tabs, every column of a
// diff row must carry the background.
use crate::render::diff::{DIFF_ADDED_MARKER, DIFF_REMOVED_MARKER};
use ratatui::Terminal;
use ratatui::backend::TestBackend;
let theme = Theme::dark();
let added_bg = ratatui::style::Color::Rgb(20, 50, 20);
let removed_bg = ratatui::style::Color::Rgb(60, 20, 20);
// Lines at increasing tab depth — the exact shape that staircased.
let diff = format!(
" 62{m}\tconst out = [];\n 63{p}\t\tlet fixed = false;\n 64{p}\t\t\tdeeplyNested();",
m = DIFF_REMOVED_MARKER,
p = DIFF_ADDED_MARKER
);
let action = ActionDisplay {
action_type: "Edit".to_string(),
target: "engine.ts".to_string(),
result: ActionResult::Success {
output: String::new(),
images: None,
},
details: ActionDetails::Diff {
summary: "ok".to_string(),
diff,
},
duration_seconds: Some(0.3),
metadata: None,
};
let width: u16 = 60;
let mut lines: Vec<Line> = Vec::new();
render_actions(&[action], &mut lines, &theme, width as usize);
let h = lines.len() as u16;
let backend = TestBackend::new(width, h);
let mut term = Terminal::new(backend).unwrap();
term.draw(|f| {
Paragraph::new(lines).render(Rect::new(0, 0, width, h), f.buffer_mut());
})
.unwrap();
let buf = term.backend().buffer();
for y in 0..h {
let is_diff_row = (0..width).any(|x| {
let bg = buf[(x, y)].bg;
bg == added_bg || bg == removed_bg
});
if !is_diff_row {
continue;
}
for x in 0..width {
let bg = buf[(x, y)].bg;
assert!(
bg == added_bg || bg == removed_bg,
"diff background must fill the whole row, but column {x} of row {y} is unfilled (staircase)"
);
}
}
}
#[test]
fn byte_at_cell_clamps_and_respects_cjk() {
assert_eq!(byte_at_cell("hello", 0), 0);
assert_eq!(byte_at_cell("hello", 3), 3);
assert_eq!(byte_at_cell("hello", 99), 5); // clamp past end
// "你好" = 2 chars, 3 bytes each, 2 cells each.
assert_eq!(byte_at_cell("你好", 0), 0);
assert_eq!(byte_at_cell("你好", 2), 3); // after first wide char
// A cell index that lands mid-glyph keeps the glyph whole (rounds up).
assert_eq!(byte_at_cell("你好", 1), 3);
}
#[test]
fn slice_by_cells_extracts_display_range() {
assert_eq!(slice_by_cells("hello world", 0, 5), "hello");
assert_eq!(slice_by_cells("hello world", 6, 11), "world");
assert_eq!(slice_by_cells("你好world", 2, 7), "好wor");
}
#[test]
fn pad_to_cells_fills_to_display_width() {
assert_eq!(pad_to_cells("ab", 5), "ab ");
// "你好" = 4 display cells; pad to 6 → exactly 2 trailing spaces (#101).
assert_eq!(pad_to_cells("你好", 6), "你好 ");
// Already wide enough → unchanged (never truncates).
assert_eq!(pad_to_cells("你好", 3), "你好");
assert_eq!(pad_to_cells("", 0), "");
}
#[test]
fn user_timestamp_padding_aligns_on_display_cells() {
// ASCII: prefix(4) + text(5) + gap(3) + ts(8) = 20 used; content 40.
assert_eq!(user_timestamp_padding(4, 5, 8, 3, 40), 23);
// A wider (CJK) message shrinks the gap but the timestamp still lands at
// the content right edge: role + text + pad + ts == content_width (#104).
let pad = user_timestamp_padding(4, 10, 8, 3, 40);
assert_eq!(4 + 10 + pad + 8, 40);
// Overflow (text wider than the line) clamps to min_gap, never underflows.
assert_eq!(user_timestamp_padding(4, 100, 8, 3, 40), 3);
}
#[test]
fn wrap_preformatted_hard_wraps_preserving_spaces() {
// 18 cells, wraps at 10. Spaces are preserved (not collapsed) and the
// leading indentation survives on the first row.
let line = Line::from(vec![Span::raw(" aaaa bbbb cccc")]);
let wrapped = wrap_preformatted(line, 10, 2);
assert!(wrapped.len() >= 2, "wide line should wrap to multiple rows");
let first: String = wrapped[0]
.spans
.iter()
.map(|s| s.content.as_ref())
.collect();
assert!(
first.starts_with(" aaaa"),
"indentation must be preserved, got {first:?}"
);
let second: String = wrapped[1]
.spans
.iter()
.map(|s| s.content.as_ref())
.collect();
assert!(
second.starts_with(" "),
"continuation should get the hanging indent, got {second:?}"
);
}
#[test]
fn wrap_preformatted_short_line_unchanged() {
let line = Line::from(vec![Span::raw(" short")]);
let wrapped = wrap_preformatted(line, 40, 2);
assert_eq!(wrapped.len(), 1);
let text: String = wrapped[0]
.spans
.iter()
.map(|s| s.content.as_ref())
.collect();
assert_eq!(text, " short");
}
/// Build a ChatState whose last frame rendered `rows`, with a selection
/// already mapped to content coords, so `selected_text` can be tested
/// without a real terminal.
fn state_with_rows(rows: &[&str], sel: ((usize, usize), (usize, usize))) -> ChatState {
let mut st = ChatState::new();
st.last_rendered_rows = rows.iter().map(|r| r.to_string()).collect();
st.selection = Some(sel);
st
}
#[test]
fn selected_text_single_line() {
let st = state_with_rows(&["> hello world"], ((0, 2), (0, 7)));
assert_eq!(st.selected_text().as_deref(), Some("hello"));
}
#[test]
fn selected_text_spans_multiple_rows() {
let st = state_with_rows(&["> first line", " second line"], ((0, 2), (1, 8)));
// The continuation row's " " margin is stripped so copied text is
// clean (the start row was sliced from the click column past "> ").
assert_eq!(st.selected_text().as_deref(), Some("first line\nsecond"));
}
#[test]
fn selected_text_strips_margin_but_keeps_code_indentation() {
// Rendered rows: 2-cell margin + the code's own indentation. Selecting
// from column 0 must drop only the 2-cell margin, not the code indent.
let st = state_with_rows(
&[" fn main() {", " let x = 1;", " }"],
((0, 0), (2, 3)),
);
assert_eq!(
st.selected_text().as_deref(),
Some("fn main() {\n let x = 1;\n}")
);
}
#[test]
fn selected_text_normalizes_reversed_drag() {
// Dragging bottom-up / right-to-left yields the same text.
let st = state_with_rows(&["> hello world"], ((0, 7), (0, 2)));
assert_eq!(st.selected_text().as_deref(), Some("hello"));
}
#[test]
fn selected_text_empty_selection_is_none() {
// A plain click (anchor == cursor) selects nothing.
let st = state_with_rows(&["> hello"], ((0, 3), (0, 3)));
assert_eq!(st.selected_text(), None);
}
#[test]
fn highlight_line_cells_splits_spans_on_selection() {
let mut line = Line::from(vec![Span::raw("abcdef")]);
highlight_line_cells(
&mut line,
2,
4,
Style::new().add_modifier(Modifier::REVERSED),
);
// Split into "ab" | "cd"(reversed) | "ef".
let texts: Vec<String> = line.spans.iter().map(|s| s.content.to_string()).collect();
assert_eq!(texts, vec!["ab", "cd", "ef"]);
assert!(
line.spans[1]
.style
.add_modifier
.contains(Modifier::REVERSED)
);
assert!(
!line.spans[0]
.style
.add_modifier
.contains(Modifier::REVERSED)
);
}
#[test]
fn context_checkpoint_renders_as_compact_event() {
let mut msg = ChatMessage::user("full checkpoint summary hidden from the chat log");
msg.kind = ChatMessageKind::ContextCheckpoint;
msg.metadata = Some(serde_json::json!({
"trigger": "manual",
"before_tokens": 43_800,
"after_tokens": 9_200,
"archived_message_count": 18,
"preserved_message_count": 4,
"duration_secs": 2.4,
"verified": true,
}));
let lines = render_context_checkpoint_event(&msg, &Theme::dark()).expect("event lines");
let rendered = lines
.iter()
.map(|line| {
line.spans
.iter()
.map(|span| span.content.as_ref())
.collect::<String>()
})
.collect::<Vec<_>>()
.join("\n");
assert!(rendered.contains("Compact(manual)"));
assert!(rendered.contains("43.8k -> 9.2k tokens"));
assert!(rendered.contains("archived 18 messages"));
assert!(rendered.contains("preserved 4 messages"));
assert!(rendered.contains("verified"));
assert!(!rendered.contains("full checkpoint summary"));
}
#[test]
fn context_checkpoint_renders_verification_fallback() {
let mut msg = ChatMessage::user("full checkpoint summary hidden from the chat log");
msg.kind = ChatMessageKind::ContextCheckpoint;
msg.metadata = Some(serde_json::json!({
"trigger": "auto_threshold",
"before_tokens": 43_800,
"after_tokens": 9_200,
"archived_message_count": 18,
"preserved_message_count": 4,
"duration_secs": 2.4,
"verified": false,
"verification_error": "provider overloaded",
}));
let lines = render_context_checkpoint_event(&msg, &Theme::dark()).expect("event lines");
let rendered = lines
.iter()
.map(|line| {
line.spans
.iter()
.map(|span| span.content.as_ref())
.collect::<String>()
})
.collect::<Vec<_>>()
.join("\n");
assert!(rendered.contains("Compact(auto_threshold)"));
assert!(rendered.contains("draft fallback"));
assert!(rendered.contains("verification: provider overloaded"));
}
/// CJK characters are 3 bytes but 2 display cells each. The
/// byte-length version of `wrap_styled_line` would incorrectly
/// over-wrap such input. This test asserts the display-width
/// version keeps CJK-only input on a single line when the display
/// width fits, even when the byte length exceeds the width.
#[test]
fn wrap_styled_line_uses_display_width_for_cjk() {
// "你好世界" is 4 CJK chars × 3 bytes = 12 bytes, × 2 display cells = 8 cells.
// Target width of 10: byte-length would see 12 > 10 and wrap;
// display-width sees 8 <= 10 and keeps it on one line.
let line = Line::from(Span::raw("你好世界".to_string()));
let wrapped = wrap_styled_line(line, 10, 2);
assert_eq!(
wrapped.len(),
1,
"CJK input fitting in display-width should NOT be wrapped; got {} lines",
wrapped.len()
);
}
/// Sanity: ASCII wrapping still works and produces >= 2 lines when
/// the input exceeds the width.
#[test]
fn wrap_styled_line_ascii_wraps_when_too_long() {
let line = Line::from(Span::raw(
"the quick brown fox jumps over the lazy dog".to_string(),
));
let wrapped = wrap_styled_line(line, 15, 2);
assert!(
wrapped.len() >= 2,
"long ASCII input should wrap to multiple lines; got {}",
wrapped.len()
);
}
fn first_segment_text(wrapped: &[Line<'static>]) -> String {
wrapped[0]
.spans
.iter()
.map(|s| s.content.as_ref())
.collect()
}
/// Regression (recurring "paragraph escapes the gutter" bug): a non-first
/// message line carries a 2-space gutter prefix; when it wraps, the first
/// segment must keep that gutter, not flush to column 0. `split_whitespace`
/// used to drop the leading spaces and the "first word, no indent" rule
/// flushed the segment left.
#[test]
fn wrap_styled_line_keeps_gutter_on_wrapped_paragraph() {
let line = Line::from(vec![
Span::raw(" "), // the continuation gutter chat.rs prepends
Span::raw(
"No source files, no config, no docs, no build system and more words to wrap"
.to_string(),
),
]);
let wrapped = wrap_styled_line(line, 30, 2);
assert!(wrapped.len() >= 2, "should wrap");
let first = first_segment_text(&wrapped);
assert!(
first.starts_with(" ") && first.trim_start().starts_with("No source"),
"first wrapped segment must keep the 2-space gutter; got {first:?}"
);
}
/// End-to-end: a wrapped list item keeps the bullet on the first segment and
/// hangs its continuation lines under the item text (col 6 = 2 gutter + 2
/// nesting indent + 2 marker), instead of snapping back to the message gutter.
/// Exercises the same span shape chat.rs builds, with the continuation indent
/// chat.rs derives via markdown::line_hanging_indent (4) + the gutter (2).
#[test]
fn wrap_styled_line_hangs_list_continuation_under_marker() {
let line = Line::from(vec![
Span::raw(" "), // message gutter (chat.rs)
Span::raw(" "), // list nesting indent (markdown)
Span::raw("• "), // marker (markdown)
Span::raw("alpha beta gamma delta epsilon zeta eta theta iota".to_string()),
]);
let wrapped = wrap_styled_line(line, 24, 6);
assert!(wrapped.len() >= 2, "should wrap");
assert!(
first_segment_text(&wrapped).starts_with(" • "),
"first segment keeps gutter + nesting + marker"
);
for cont in &wrapped[1..] {
let t: String = cont.spans.iter().map(|s| s.content.as_ref()).collect();
assert!(
t.starts_with(" ") && t.chars().nth(6).is_some_and(|c| c != ' '),
"continuation hangs under the item text at col 6; got {t:?}"
);
}
}
/// The fix preserves whitespace margins only — the message bullet "● " must
/// still sit at column 0 on the first line.
#[test]
fn wrap_styled_line_keeps_bullet_at_column_zero() {
let line = Line::from(vec![
Span::raw("● "),
Span::raw(
"a fairly long first line of a message that definitely needs to wrap".to_string(),
),
]);
let wrapped = wrap_styled_line(line, 25, 2);
assert!(wrapped.len() >= 2, "should wrap");
assert!(
first_segment_text(&wrapped).starts_with('●'),
"bullet must stay at column 0"
);
}
/// Counterpart to `wrap_styled_line_uses_display_width_for_cjk` for
/// the plain-string wrapper used by user messages and thinking blocks.
/// The byte-based version would wrap a 4-CJK paragraph after the second
/// char (12 bytes > 10) even though it fits in 8 cells. Display-width
/// version keeps it on one line.
#[test]
fn wrap_text_with_indent_uses_display_width_for_cjk() {
// "你好世界" = 4 chars, 12 bytes, 8 display cells. Width 12 cells
// with 0 indent: should fit on one line.
let wrapped = wrap_text_with_indent("你好世界", 12, 0, 0);
assert_eq!(
wrapped.len(),
1,
"CJK paragraph fitting in display width should not wrap; got {} lines: {:?}",
wrapped.len(),
wrapped
);
assert_eq!(wrapped[0].trim_start(), "你好世界");
}
/// Mixed content: CJK + ASCII should still wrap correctly when the
/// total exceeds available cells.
#[test]
fn wrap_text_with_indent_wraps_cjk_at_visual_edge() {
// "你好 world 世界" = 2 + 1 + 5 + 1 + 2 = 11 cells without spaces,
// with separators: 2 + 1 + 5 + 1 + 4 = 13 cells. Width 8 cells should
// produce ≥ 2 lines.
let wrapped = wrap_text_with_indent("你好 world 世界", 8, 0, 0);
assert!(
wrapped.len() >= 2,
"mixed CJK+ASCII exceeding width should wrap; got {} lines: {:?}",
wrapped.len(),
wrapped
);
}
}