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
use ratatui::{
Frame,
layout::Rect,
style::Style,
text::{Line, Span},
widgets::{Block, Borders, Paragraph, Wrap},
};
use unicode_width::UnicodeWidthStr;
use crate::app::{
App, DiffSource, ExpandDirection, FocusedPanel, GAP_EXPAND_BATCH, GapId, InputMode,
};
use crate::forge::remote_comments::PrCommentsVisibility;
use crate::model::{FileStatus, LineOrigin, LineRange, LineSide};
use crate::theme::Theme;
use crate::ui::comment_panel;
use crate::ui::diff_view::{
apply_horizontal_scroll, comment_type_presentation, cursor_indicator, cursor_indicator_spaced,
diff_stat_title, is_line_highlighted, paint_unified_diff_rows_with,
paint_visual_selection_overlay, populate_row_to_annotation, push_comment_bar,
render_expander_line, render_hidden_lines, scroll_comment_input_into_view,
unified_line_bg_style,
};
use crate::ui::styles;
use crate::vcs::git::calculate_gap;
pub(super) fn render_unified_diff(frame: &mut Frame, app: &mut App, area: Rect) {
let focused = app.focused_panel == FocusedPanel::Diff;
let title = crate::ui::diff_view::diff_title(app, area.width);
let block = Block::default()
.title(title)
.title_top(diff_stat_title(app).right_aligned())
.borders(Borders::ALL)
.style(styles::panel_style(&app.theme))
.border_style(styles::border_style(&app.theme, focused));
let inner = block.inner(area);
let comment_width = inner.width.saturating_sub(1) as usize;
frame.render_widget(block, area);
// Update viewport height for scroll calculations
app.diff_state.viewport_height = inner.height as usize;
app.diff_inner_area = Some(inner);
// Reset comment input annotation offset (will be set if a comment input box is rendered)
app.comment_input_annotation_offset = None;
// Build all diff lines for infinite scroll
// Track line index to mark the current line (cursor position)
let mut lines: Vec<Line> = Vec::new();
let mut line_idx: usize = 0;
let current_line_idx = app.diff_state.cursor_line;
// Track cursor position for IME when in Comment mode
// Store the logical line index and column where the cursor should be
let mut comment_cursor_logical_line: Option<usize> = None;
let mut comment_cursor_column: u16 = 0;
// Track the full extent of the comment input box so we can auto-scroll
// the viewport to keep it visible while the user types.
let mut comment_input_box_range: Option<(usize, usize)> = None;
// Records per-comment bar info — populated at each line-level comment
// call site and consumed by the bar paint pass at the end of render.
let mut comment_bars: Vec<crate::ui::diff_view::CommentBarAnchor> = Vec::new();
let is_review_comment_mode =
app.input_mode == InputMode::Comment && app.comment_is_review_level;
let general_indicator = cursor_indicator_spaced(line_idx, current_line_idx);
lines.push(Line::from(vec![
Span::styled(
general_indicator,
styles::current_line_indicator_style(&app.theme),
),
Span::styled(
"═══ Review Comments ",
styles::file_header_style(&app.theme),
),
Span::styled("═".repeat(40), styles::file_header_style(&app.theme)),
]));
line_idx += 1;
for comment in &app.session.review_comments {
let is_being_edited =
app.editing_comment_id.as_ref() == Some(&comment.id) && is_review_comment_mode;
if is_being_edited {
let (input_lines, cursor_info) = comment_panel::format_comment_input_lines(
&app.theme,
comment_type_presentation(app, &app.comment_type),
&app.comment_buffer,
app.comment_cursor,
None,
true,
app.supports_keyboard_enhancement,
comment_width,
);
comment_cursor_logical_line = Some(line_idx + cursor_info.line_offset);
comment_cursor_column = 1 + cursor_info.column;
comment_input_box_range =
Some((line_idx, line_idx + input_lines.len().saturating_sub(1)));
let annotations_replaced = App::comment_display_lines(comment, inner.width as usize);
app.comment_input_annotation_offset =
Some((line_idx, input_lines.len(), annotations_replaced));
for mut input_line in input_lines {
let indicator = cursor_indicator(line_idx, current_line_idx);
input_line.spans.insert(
0,
Span::styled(indicator, styles::current_line_indicator_style(&app.theme)),
);
lines.push(input_line);
line_idx += 1;
}
} else {
let comment_lines = comment_panel::format_comment_lines(
&app.theme,
comment_type_presentation(app, &comment.comment_type),
&comment.content,
None,
comment_width,
);
for mut comment_line in comment_lines {
let indicator = cursor_indicator(line_idx, current_line_idx);
comment_line.spans.insert(
0,
Span::styled(indicator, styles::current_line_indicator_style(&app.theme)),
);
lines.push(comment_line);
line_idx += 1;
}
}
}
if is_review_comment_mode && app.editing_comment_id.is_none() {
let (input_lines, cursor_info) = comment_panel::format_comment_input_lines(
&app.theme,
comment_type_presentation(app, &app.comment_type),
&app.comment_buffer,
app.comment_cursor,
None,
false,
app.supports_keyboard_enhancement,
comment_width,
);
comment_cursor_logical_line = Some(line_idx + cursor_info.line_offset);
comment_cursor_column = 1 + cursor_info.column;
comment_input_box_range = Some((line_idx, line_idx + input_lines.len().saturating_sub(1)));
app.comment_input_annotation_offset = Some((line_idx, input_lines.len(), 0));
for mut input_line in input_lines {
let indicator = cursor_indicator(line_idx, current_line_idx);
input_line.spans.insert(
0,
Span::styled(indicator, styles::current_line_indicator_style(&app.theme)),
);
lines.push(input_line);
line_idx += 1;
}
}
for (file_idx, file) in app.diff_files.iter().enumerate() {
let path = file.display_path();
let status = file.status.as_char();
let is_reviewed = app.session.is_file_reviewed(path);
// File header
let indicator = cursor_indicator_spaced(line_idx, current_line_idx);
// Add checkmark if reviewed (using same character as file list)
let review_mark = if is_reviewed { "✓ " } else { "" };
let header_text = if file.is_commit_message {
format!("═══ {}Commit Message ", review_mark)
} else if app.is_pristine_mode {
// Pristine mode reviews unchanged code; the M/A/D badge would
// mislead. Render the header without it.
format!("═══ {}{} ", review_mark, path.display())
} else {
format!("═══ {}{} [{}] ", review_mark, path.display(), status)
};
lines.push(Line::from(vec![
Span::styled(indicator, styles::current_line_indicator_style(&app.theme)),
Span::styled(header_text, styles::file_header_style(&app.theme)),
Span::styled("═".repeat(40), styles::file_header_style(&app.theme)),
]));
line_idx += 1;
// If file is reviewed, skip rendering the body (fold it away)
if is_reviewed {
continue;
}
// Check if we're editing/adding a file-level comment for this file
let is_file_comment_mode = app.input_mode == InputMode::Comment
&& app.comment_is_file_level
&& file_idx == app.diff_state.current_file_idx;
// Show file-level comments right after the header
if let Some(review) = app.session.files.get(path) {
for comment in &review.file_comments {
// Skip rendering this comment if it's being edited
let is_being_edited =
app.editing_comment_id.as_ref() == Some(&comment.id) && is_file_comment_mode;
if is_being_edited {
// Render the inline input instead
let (input_lines, cursor_info) = comment_panel::format_comment_input_lines(
&app.theme,
comment_type_presentation(app, &app.comment_type),
&app.comment_buffer,
app.comment_cursor,
None,
true,
app.supports_keyboard_enhancement,
comment_width,
);
// Track cursor position: logical line = current line_idx + cursor offset within input
comment_cursor_logical_line = Some(line_idx + cursor_info.line_offset);
// Column = indicator (1) + cursor_info.column
comment_cursor_column = 1 + cursor_info.column;
comment_input_box_range =
Some((line_idx, line_idx + input_lines.len().saturating_sub(1)));
let annotations_replaced =
App::comment_display_lines(comment, inner.width as usize);
app.comment_input_annotation_offset =
Some((line_idx, input_lines.len(), annotations_replaced));
for mut input_line in input_lines {
let indicator = cursor_indicator(line_idx, current_line_idx);
input_line.spans.insert(
0,
Span::styled(
indicator,
styles::current_line_indicator_style(&app.theme),
),
);
lines.push(input_line);
line_idx += 1;
}
} else {
let comment_lines = comment_panel::format_comment_lines(
&app.theme,
comment_type_presentation(app, &comment.comment_type),
&comment.content,
None,
comment_width,
);
for mut comment_line in comment_lines {
let indicator = cursor_indicator(line_idx, current_line_idx);
comment_line.spans.insert(
0,
Span::styled(
indicator,
styles::current_line_indicator_style(&app.theme),
),
);
lines.push(comment_line);
line_idx += 1;
}
}
}
}
// Render inline input for new file-level comment
if is_file_comment_mode && app.editing_comment_id.is_none() {
let (input_lines, cursor_info) = comment_panel::format_comment_input_lines(
&app.theme,
comment_type_presentation(app, &app.comment_type),
&app.comment_buffer,
app.comment_cursor,
None,
false,
app.supports_keyboard_enhancement,
comment_width,
);
// Track cursor position
comment_cursor_logical_line = Some(line_idx + cursor_info.line_offset);
comment_cursor_column = 1 + cursor_info.column;
comment_input_box_range =
Some((line_idx, line_idx + input_lines.len().saturating_sub(1)));
app.comment_input_annotation_offset = Some((line_idx, input_lines.len(), 0));
for mut input_line in input_lines {
let indicator = cursor_indicator(line_idx, current_line_idx);
input_line.spans.insert(
0,
Span::styled(indicator, styles::current_line_indicator_style(&app.theme)),
);
lines.push(input_line);
line_idx += 1;
}
}
if file.is_too_large {
let indicator = cursor_indicator_spaced(line_idx, current_line_idx);
lines.push(Line::from(vec![
Span::styled(indicator, styles::current_line_indicator_style(&app.theme)),
Span::styled("(file too large to display)", styles::dim_style(&app.theme)),
]));
line_idx += 1;
} else if file.is_binary {
let indicator = cursor_indicator_spaced(line_idx, current_line_idx);
lines.push(Line::from(vec![
Span::styled(indicator, styles::current_line_indicator_style(&app.theme)),
Span::styled("(binary file)", styles::dim_style(&app.theme)),
]));
line_idx += 1;
} else if file.hunks.is_empty() {
let indicator = cursor_indicator_spaced(line_idx, current_line_idx);
lines.push(Line::from(vec![
Span::styled(indicator, styles::current_line_indicator_style(&app.theme)),
Span::styled("(no changes)", styles::dim_style(&app.theme)),
]));
line_idx += 1;
} else {
// Get line comments for this file
let line_comments = app
.session
.files
.get(path)
.map(|r| &r.line_comments)
.cloned()
.unwrap_or_default();
for (hunk_idx, hunk) in file.hunks.iter().enumerate() {
// Calculate and render gap before this hunk
let prev_hunk = if hunk_idx > 0 {
file.hunks.get(hunk_idx - 1)
} else {
None
};
let gap = calculate_gap(
prev_hunk.map(|h| (&h.new_start, &h.new_count)),
hunk.new_start,
);
let gap_id = GapId { file_idx, hunk_idx };
if gap > 0 {
let top_lines = app.expanded_top.get(&gap_id);
let bot_lines = app.expanded_bottom.get(&gap_id);
let top_len = top_lines.map_or(0, |v| v.len());
let bot_len = bot_lines.map_or(0, |v| v.len());
let remaining = (gap as usize).saturating_sub(top_len + bot_len);
let is_top_of_file = hunk_idx == 0;
// Render top expanded lines
if let Some(top) = top_lines {
for expanded_line in top {
render_expanded_context_line(
&mut lines,
&mut line_idx,
current_line_idx,
expanded_line,
&app.theme,
);
}
}
// Render expanders / hidden lines
if remaining > 0 {
if is_top_of_file {
if remaining > GAP_EXPAND_BATCH {
render_hidden_lines(
&mut lines,
&mut line_idx,
current_line_idx,
remaining,
&app.theme,
);
}
render_expander_line(
&mut lines,
&mut line_idx,
current_line_idx,
ExpandDirection::Up,
remaining,
&app.theme,
);
} else if remaining >= GAP_EXPAND_BATCH {
render_expander_line(
&mut lines,
&mut line_idx,
current_line_idx,
ExpandDirection::Down,
remaining,
&app.theme,
);
render_hidden_lines(
&mut lines,
&mut line_idx,
current_line_idx,
remaining,
&app.theme,
);
render_expander_line(
&mut lines,
&mut line_idx,
current_line_idx,
ExpandDirection::Up,
remaining,
&app.theme,
);
} else {
render_expander_line(
&mut lines,
&mut line_idx,
current_line_idx,
ExpandDirection::Both,
remaining,
&app.theme,
);
}
}
// Render bottom expanded lines
if let Some(bot) = bot_lines {
for expanded_line in bot {
render_expanded_context_line(
&mut lines,
&mut line_idx,
current_line_idx,
expanded_line,
&app.theme,
);
}
}
}
// Hunk header
let indicator = cursor_indicator_spaced(line_idx, current_line_idx);
lines.push(Line::from(vec![
Span::styled(indicator, styles::current_line_indicator_style(&app.theme)),
Span::styled(
hunk.header.to_string(),
styles::diff_hunk_header_style(&app.theme),
),
]));
line_idx += 1;
// Diff lines
for diff_line in &hunk.lines {
let (prefix, base_style) = match diff_line.origin {
LineOrigin::Addition => ("▌", styles::diff_add_style(&app.theme)),
LineOrigin::Deletion => ("▌", styles::diff_del_style(&app.theme)),
LineOrigin::Context => (" ", styles::diff_context_style(&app.theme)),
};
let style = base_style;
let line_num_str = match diff_line.origin {
LineOrigin::Addition => diff_line
.new_lineno
.map(|n| format!("{n:>4} "))
.unwrap_or_else(|| " ".to_string()),
LineOrigin::Deletion => diff_line
.old_lineno
.map(|n| format!("{n:>4} "))
.unwrap_or_else(|| " ".to_string()),
_ => diff_line
.new_lineno
.or(diff_line.old_lineno)
.map(|n| format!("{n:>4} "))
.unwrap_or_else(|| " ".to_string()),
};
let indicator = cursor_indicator(line_idx, current_line_idx);
let line_num_style = styles::dim_style(&app.theme);
let mut line_spans = vec![
Span::styled(indicator, styles::current_line_indicator_style(&app.theme)),
Span::styled(line_num_str, line_num_style),
Span::styled(format!("{prefix} "), style),
];
if let Some(ref highlighted) = diff_line.highlighted_spans {
for (span_style, span_text) in highlighted {
line_spans.push(Span::styled(span_text.clone(), *span_style));
}
} else {
line_spans.push(Span::styled(diff_line.content.clone(), style));
}
// Mark add/del lines with their effective EOL style so we can paint full
// row backgrounds later (including wrapped visual rows).
if matches!(
diff_line.origin,
LineOrigin::Addition | LineOrigin::Deletion
) {
let eol_style = match diff_line.highlighted_spans.as_ref() {
// For syntax-highlighted lines (including empty highlighted lines),
// use syntax diff background so row fill matches code spans.
Some(_) => {
let syntax_bg = match diff_line.origin {
LineOrigin::Addition => app.theme.syntax_add_bg,
LineOrigin::Deletion => app.theme.syntax_del_bg,
LineOrigin::Context => app.theme.panel_bg,
};
let base = line_spans.last().map(|s| s.style).unwrap_or(style);
base.bg(syntax_bg)
}
// Non-highlighted lines keep classic diff background.
None => line_spans.last().map(|s| s.style).unwrap_or(style),
};
// Zero-width marker span carrying the background style.
line_spans.push(Span::styled(String::new(), eol_style));
}
lines.push(Line::from(line_spans));
line_idx += 1;
// Show line comments for both old side (deleted lines) and new side (added/context)
// Old side comments (for deleted lines)
if let Some(old_ln) = diff_line.old_lineno {
// Check if we're adding/editing a comment on this line (old side)
let is_line_comment_mode = app.input_mode == InputMode::Comment
&& !app.comment_is_file_level
&& file_idx == app.diff_state.current_file_idx
&& app.comment_line == Some((old_ln, LineSide::Old));
if let Some(comments) = line_comments.get(&old_ln) {
for comment in comments {
if comment.side == Some(LineSide::Old) {
// Skip if this comment is being edited
let is_being_edited = is_line_comment_mode
&& app.editing_comment_id.as_ref() == Some(&comment.id);
if is_being_edited {
let line_range = app
.comment_line_range
.map(|(r, _)| r)
.or_else(|| Some(LineRange::single(old_ln)));
let (input_lines, cursor_info) =
comment_panel::format_comment_input_lines(
&app.theme,
comment_type_presentation(app, &app.comment_type),
&app.comment_buffer,
app.comment_cursor,
line_range,
true,
app.supports_keyboard_enhancement,
comment_width,
);
comment_cursor_logical_line =
Some(line_idx + cursor_info.line_offset);
comment_cursor_column = 1 + cursor_info.column;
let box_top_row = line_idx;
comment_input_box_range = Some((
line_idx,
line_idx + input_lines.len().saturating_sub(1),
));
let annotations_replaced = App::comment_display_lines(
comment,
inner.width as usize,
);
app.comment_input_annotation_offset = Some((
line_idx,
input_lines.len(),
annotations_replaced,
));
for mut input_line in input_lines {
let indicator =
cursor_indicator(line_idx, current_line_idx);
input_line.spans.insert(
0,
Span::styled(
indicator,
styles::current_line_indicator_style(
&app.theme,
),
),
);
lines.push(input_line);
line_idx += 1;
}
push_comment_bar(
&mut comment_bars,
box_top_row,
line_range,
);
} else {
let line_range = comment
.line_range
.or_else(|| Some(LineRange::single(old_ln)));
let comment_lines = comment_panel::format_comment_lines(
&app.theme,
comment_type_presentation(app, &comment.comment_type),
&comment.content,
line_range,
comment_width,
);
let box_top_row = line_idx;
for mut comment_line in comment_lines {
let is_current = line_idx == current_line_idx;
let indicator = if is_current { "▶" } else { " " };
comment_line.spans.insert(
0,
Span::styled(
indicator,
styles::current_line_indicator_style(
&app.theme,
),
),
);
lines.push(comment_line);
line_idx += 1;
}
push_comment_bar(
&mut comment_bars,
box_top_row,
line_range,
);
}
}
}
}
// Render remote review threads anchored at this old-side line.
render_remote_threads_for_anchor(
&mut lines,
&mut line_idx,
current_line_idx,
app,
path,
old_ln,
LineSide::Old,
&mut comment_bars,
);
// Render inline input for new line comment (old side)
if is_line_comment_mode && app.editing_comment_id.is_none() {
let line_range = app
.comment_line_range
.map(|(r, _)| r)
.or_else(|| Some(LineRange::single(old_ln)));
let (input_lines, cursor_info) =
comment_panel::format_comment_input_lines(
&app.theme,
comment_type_presentation(app, &app.comment_type),
&app.comment_buffer,
app.comment_cursor,
line_range,
false,
app.supports_keyboard_enhancement,
comment_width,
);
comment_cursor_logical_line = Some(line_idx + cursor_info.line_offset);
comment_cursor_column = 1 + cursor_info.column;
let box_top_row = line_idx;
comment_input_box_range =
Some((line_idx, line_idx + input_lines.len().saturating_sub(1)));
app.comment_input_annotation_offset =
Some((line_idx, input_lines.len(), 0));
for mut input_line in input_lines {
let indicator = cursor_indicator(line_idx, current_line_idx);
input_line.spans.insert(
0,
Span::styled(
indicator,
styles::current_line_indicator_style(&app.theme),
),
);
lines.push(input_line);
line_idx += 1;
}
push_comment_bar(&mut comment_bars, box_top_row, line_range);
}
}
// New side comments (for added/context lines)
if let Some(new_ln) = diff_line.new_lineno {
// Check if we're adding/editing a comment on this line (new side)
let is_line_comment_mode = app.input_mode == InputMode::Comment
&& !app.comment_is_file_level
&& file_idx == app.diff_state.current_file_idx
&& app.comment_line == Some((new_ln, LineSide::New));
if let Some(comments) = line_comments.get(&new_ln) {
for comment in comments {
if comment.side != Some(LineSide::Old) {
// Skip if this comment is being edited
let is_being_edited = is_line_comment_mode
&& app.editing_comment_id.as_ref() == Some(&comment.id);
if is_being_edited {
let line_range = app
.comment_line_range
.map(|(r, _)| r)
.or_else(|| Some(LineRange::single(new_ln)));
let (input_lines, cursor_info) =
comment_panel::format_comment_input_lines(
&app.theme,
comment_type_presentation(app, &app.comment_type),
&app.comment_buffer,
app.comment_cursor,
line_range,
true,
app.supports_keyboard_enhancement,
comment_width,
);
comment_cursor_logical_line =
Some(line_idx + cursor_info.line_offset);
comment_cursor_column = 1 + cursor_info.column;
let box_top_row = line_idx;
comment_input_box_range = Some((
line_idx,
line_idx + input_lines.len().saturating_sub(1),
));
let annotations_replaced = App::comment_display_lines(
comment,
inner.width as usize,
);
app.comment_input_annotation_offset = Some((
line_idx,
input_lines.len(),
annotations_replaced,
));
for mut input_line in input_lines {
let indicator =
cursor_indicator(line_idx, current_line_idx);
input_line.spans.insert(
0,
Span::styled(
indicator,
styles::current_line_indicator_style(
&app.theme,
),
),
);
lines.push(input_line);
line_idx += 1;
}
push_comment_bar(
&mut comment_bars,
box_top_row,
line_range,
);
} else {
let line_range = comment
.line_range
.or_else(|| Some(LineRange::single(new_ln)));
let comment_lines = comment_panel::format_comment_lines(
&app.theme,
comment_type_presentation(app, &comment.comment_type),
&comment.content,
line_range,
comment_width,
);
let box_top_row = line_idx;
for mut comment_line in comment_lines {
let indicator =
cursor_indicator(line_idx, current_line_idx);
comment_line.spans.insert(
0,
Span::styled(
indicator,
styles::current_line_indicator_style(
&app.theme,
),
),
);
lines.push(comment_line);
line_idx += 1;
}
push_comment_bar(
&mut comment_bars,
box_top_row,
line_range,
);
}
}
}
}
// Render remote review threads anchored at this new-side line.
render_remote_threads_for_anchor(
&mut lines,
&mut line_idx,
current_line_idx,
app,
path,
new_ln,
LineSide::New,
&mut comment_bars,
);
// Render inline input for new line comment (new side)
if is_line_comment_mode && app.editing_comment_id.is_none() {
let line_range = app
.comment_line_range
.map(|(r, _)| r)
.or_else(|| Some(LineRange::single(new_ln)));
let (input_lines, cursor_info) =
comment_panel::format_comment_input_lines(
&app.theme,
comment_type_presentation(app, &app.comment_type),
&app.comment_buffer,
app.comment_cursor,
line_range,
false,
app.supports_keyboard_enhancement,
comment_width,
);
comment_cursor_logical_line = Some(line_idx + cursor_info.line_offset);
comment_cursor_column = 1 + cursor_info.column;
let box_top_row = line_idx;
comment_input_box_range =
Some((line_idx, line_idx + input_lines.len().saturating_sub(1)));
app.comment_input_annotation_offset =
Some((line_idx, input_lines.len(), 0));
for mut input_line in input_lines {
let indicator = cursor_indicator(line_idx, current_line_idx);
input_line.spans.insert(
0,
Span::styled(
indicator,
styles::current_line_indicator_style(&app.theme),
),
);
lines.push(input_line);
line_idx += 1;
}
push_comment_bar(&mut comment_bars, box_top_row, line_range);
}
}
}
}
}
// End-of-file gap (after all hunks, not for deleted files)
if file.status != FileStatus::Deleted
&& matches!(
app.diff_source,
DiffSource::WorkingTree
| DiffSource::Unstaged
| DiffSource::StagedAndUnstaged
| DiffSource::StagedUnstagedAndCommits(_)
| DiffSource::CommitRange(_)
)
&& let Some(last_hunk) = file.hunks.last()
{
let eof_start = last_hunk.new_start + last_hunk.new_count;
if let Some(&total) = app.file_line_count_cache.get(&file_idx)
&& eof_start <= total
{
let gap = (total - eof_start + 1) as usize;
let eof_gap_id = GapId {
file_idx,
hunk_idx: file.hunks.len(),
};
let top_lines = app.expanded_top.get(&eof_gap_id);
let bot_lines = app.expanded_bottom.get(&eof_gap_id);
let top_len = top_lines.map_or(0, |v| v.len());
let bot_len = bot_lines.map_or(0, |v| v.len());
let remaining = gap.saturating_sub(top_len + bot_len);
// Render top expanded lines (↓ direction)
if let Some(top) = top_lines {
for expanded_line in top {
render_expanded_context_line(
&mut lines,
&mut line_idx,
current_line_idx,
expanded_line,
&app.theme,
);
}
}
// Expander / hidden lines
if remaining > 0 {
render_expander_line(
&mut lines,
&mut line_idx,
current_line_idx,
ExpandDirection::Down,
remaining,
&app.theme,
);
if remaining > GAP_EXPAND_BATCH {
render_hidden_lines(
&mut lines,
&mut line_idx,
current_line_idx,
remaining,
&app.theme,
);
}
}
// Render bottom expanded lines
if let Some(bot) = bot_lines {
for expanded_line in bot {
render_expanded_context_line(
&mut lines,
&mut line_idx,
current_line_idx,
expanded_line,
&app.theme,
);
}
}
}
}
// Spacing between files
let indicator = cursor_indicator(line_idx, current_line_idx);
lines.push(Line::from(Span::styled(
indicator,
styles::current_line_indicator_style(&app.theme),
)));
line_idx += 1;
}
// Auto-scroll so the comment input box stays visible while the user types.
// Without this, adding a comment near the bottom/top of the viewport would
// place the input box off-screen and the user couldn't see what they type.
scroll_comment_input_into_view(
&mut app.diff_state.scroll_offset,
comment_input_box_range,
comment_cursor_logical_line,
inner.height as usize,
lines.len(),
);
let visible_lines_unscrolled: Vec<Line> = lines
.into_iter()
.skip(app.diff_state.scroll_offset)
.take(inner.height as usize)
.collect();
// Calculate the width of each line for max_content_width and visible line count
let line_widths: Vec<usize> = visible_lines_unscrolled
.iter()
.map(|line| {
line.spans
.iter()
.map(|span| span.content.width())
.sum::<usize>()
})
.collect();
let max_content_width = line_widths.iter().copied().max().unwrap_or(0);
app.sync_viewport_width(inner.width as usize);
app.diff_state.max_content_width = max_content_width;
let scroll_offset = app.diff_state.scroll_offset;
let wrap = app.diff_state.wrap_lines;
app.diff_state.visible_line_count = populate_row_to_annotation(
&mut app.diff_row_to_annotation,
&line_widths,
inner.width as usize,
inner.height as usize,
wrap,
scroll_offset,
);
let max_scroll_x = max_content_width.saturating_sub(inner.width as usize);
if app.diff_state.scroll_x > max_scroll_x {
app.diff_state.scroll_x = max_scroll_x;
}
if app.diff_state.wrap_lines {
app.diff_state.scroll_x = 0;
}
let scroll_x = app.diff_state.scroll_x;
let visible_lines_unscrolled_for_bg = visible_lines_unscrolled.clone();
let visible_lines: Vec<Line> = if app.diff_state.wrap_lines {
visible_lines_unscrolled
} else {
visible_lines_unscrolled
.into_iter()
.map(|line| apply_horizontal_scroll(line, scroll_x))
.collect()
};
// Paint per-visual-row add/del backgrounds across full row width.
paint_unified_diff_rows_with(
frame,
inner,
&visible_lines_unscrolled_for_bg,
&line_widths,
app.diff_state.wrap_lines,
inner.width as usize,
|_idx, line| unified_line_bg_style(line, &app.theme),
);
let overlay_ctx = crate::ui::diff_view::DiffOverlayPaint {
inner,
visible_lines_unscrolled: &visible_lines_unscrolled_for_bg,
line_widths: &line_widths,
wrap_lines: app.diff_state.wrap_lines,
viewport_width: inner.width as usize,
scroll_x,
scroll_offset: app.diff_state.scroll_offset,
theme: &app.theme,
comment_bars: &comment_bars,
};
// Section-marker row tint (hunk headers + expand/hidden stubs). Painted
// before the paragraph so cursor-line and selection overlays still win
// on the active row.
crate::ui::diff_view::paint_section_highlight(frame, &overlay_ctx);
// Keep paragraph bg unset so pre-painted per-row diff backgrounds remain visible.
let mut diff = Paragraph::new(visible_lines).style(Style::default().fg(app.theme.fg_primary));
if app.diff_state.wrap_lines {
diff = diff.wrap(Wrap { trim: false });
}
frame.render_widget(diff, inner);
// Cursor-line bg has to land after the paragraph: spans on +/- lines carry
// explicit diff_add_bg/diff_del_bg that would mask a pre-paint over the code.
if app.cursor_line_highlight {
paint_unified_diff_rows_with(
frame,
inner,
&visible_lines_unscrolled_for_bg,
&line_widths,
app.diff_state.wrap_lines,
inner.width as usize,
|idx, _line| {
is_line_highlighted(app, idx).then(|| Style::default().bg(app.theme.cursor_line_bg))
},
);
}
if let Some(sel) = app.visual_selection {
paint_visual_selection_overlay(frame, inner, app, sel, &app.theme);
}
// File-section header rules extended to the full viewport width.
crate::ui::diff_view::paint_file_header_fill(frame, &overlay_ctx);
// Comment-box overlays painted last so the box + bar always win on their
// single cells regardless of cursor-line / selection underlays.
crate::ui::diff_view::paint_comment_box_bar(frame, &overlay_ctx);
crate::ui::diff_view::paint_comment_box_right_border(frame, &overlay_ctx);
// Calculate screen position for comment cursor if in Comment mode
if let Some(cursor_logical_line) = comment_cursor_logical_line {
let scroll_offset = app.diff_state.scroll_offset;
// Use visible_line_count which accounts for line wrapping
let visible_lines_count = app.diff_state.visible_line_count.max(1);
// Check if the cursor line is visible (after scrolling)
if cursor_logical_line >= scroll_offset
&& cursor_logical_line < scroll_offset + visible_lines_count
{
// Calculate screen row - need to account for wrapping
let logical_offset = cursor_logical_line - scroll_offset;
// Calculate visual row by summing wrapped line heights
let mut visual_row: u16 = 0;
let viewport_width = inner.width as usize;
if app.diff_state.wrap_lines && viewport_width > 0 {
// Calculate how many visual rows the lines before cursor take
// Note: line_widths is indexed from 0 and corresponds to visible lines
// (i.e., line_widths[0] is the first visible line after scroll)
for i in 0..logical_offset {
if i < line_widths.len() {
let width = line_widths[i];
let rows = if width == 0 {
1
} else {
width.div_ceil(viewport_width)
};
visual_row += rows as u16;
} else {
visual_row += 1;
}
}
} else {
visual_row = logical_offset as u16;
}
// Account for diff area position (inner starts at diff block's inner area)
let screen_col = inner.x + comment_cursor_column;
let screen_row_abs = inner.y + visual_row;
app.comment_cursor_screen_pos = Some((screen_col, screen_row_abs));
}
}
}
/// Render remote review threads anchored at `(path, line, side)` into the
/// growing line buffer. No-op when `:comments hide` is active or when no
/// threads anchor here. Resolved/outdated threads use muted styling per
/// the spec; visible-but-resolved threads only render under `:comments all`.
#[allow(clippy::too_many_arguments)]
fn render_remote_threads_for_anchor(
lines: &mut Vec<ratatui::text::Line<'static>>,
line_idx: &mut usize,
current_line_idx: usize,
app: &App,
file_path: &std::path::Path,
line: u32,
side: LineSide,
comment_bars: &mut Vec<crate::ui::diff_view::CommentBarAnchor>,
) {
let visibility = app.session.remote_comments_visibility;
if matches!(visibility, PrCommentsVisibility::Hide) {
return;
}
if app.forge_review_threads.is_empty() {
return;
}
let target_path = file_path.to_string_lossy();
for thread in &app.forge_review_threads {
let Some(muted) = visibility.render_decision(thread) else {
continue;
};
if thread.path != *target_path {
continue;
}
let Some(thread_line) = thread.line else {
continue;
};
if thread_line != line {
continue;
}
let matches_side = matches!(
(thread.side, side),
(
crate::forge::remote_comments::RemoteCommentSide::Right,
LineSide::New
) | (
crate::forge::remote_comments::RemoteCommentSide::Left,
LineSide::Old
)
);
if !matches_side {
continue;
}
// Render the entire thread as one fused box so it reads as a
// single discussion unit.
let thread_lines = comment_panel::format_remote_thread_lines(&app.theme, thread, muted);
let box_top_row = *line_idx;
for mut comment_line in thread_lines {
let indicator = cursor_indicator(*line_idx, current_line_idx);
comment_line.spans.insert(
0,
ratatui::text::Span::styled(
indicator,
styles::current_line_indicator_style(&app.theme),
),
);
lines.push(comment_line);
*line_idx += 1;
}
push_comment_bar(
comment_bars,
box_top_row,
Some(crate::model::LineRange::single(thread_line)),
);
}
}
/// Render a single expanded context line (shared by unified + side-by-side via unified path)
fn render_expanded_context_line(
lines: &mut Vec<Line<'_>>,
line_idx: &mut usize,
current_line_idx: usize,
expanded_line: &crate::model::DiffLine,
theme: &Theme,
) {
let indicator = cursor_indicator(*line_idx, current_line_idx);
let line_num = expanded_line
.new_lineno
.map(|n| format!("{n:>4} "))
.unwrap_or_else(|| " ".to_string());
let line_spans = vec![
Span::styled(indicator, styles::current_line_indicator_style(theme)),
Span::styled(line_num, styles::expanded_context_style(theme)),
Span::styled(" ", styles::expanded_context_style(theme)),
Span::styled(
expanded_line.content.clone(),
styles::expanded_context_style(theme),
),
];
lines.push(Line::from(line_spans));
*line_idx += 1;
}
#[cfg(test)]
mod remote_comments_snapshot_tests {
//! Render-snapshot tests for inline remote review threads in the
//! unified diff. We drive `ui::render` against `TestBackend` and check
//! for the `[github @author]` badge text on the expected row.
use crate::app::{App, DiffSource, InputMode, PullRequestDiffSource};
use crate::error::Result as TuicrResult;
use crate::error::TuicrError;
use crate::forge::remote_comments::{
PrCommentsVisibility, RemoteCommentSide, RemoteReviewComment, RemoteReviewThread,
};
use crate::forge::traits::{ForgeRepository, PrSessionKey};
use crate::model::{
DiffFile, DiffHunk, DiffLine, FileStatus, LineOrigin, ReviewSession, SessionDiffSource,
};
use crate::syntax::SyntaxHighlighter;
use crate::theme::Theme;
use crate::ui::render;
use crate::vcs::traits::{VcsBackend, VcsChangeStatus, VcsInfo, VcsType};
use ratatui::Terminal;
use ratatui::backend::TestBackend;
use ratatui::buffer::Buffer;
use std::path::{Path, PathBuf};
struct SnapshotVcs {
info: VcsInfo,
}
impl VcsBackend for SnapshotVcs {
fn info(&self) -> &VcsInfo {
&self.info
}
fn get_working_tree_diff(
&self,
_highlighter: &SyntaxHighlighter,
) -> TuicrResult<Vec<DiffFile>> {
Err(TuicrError::NoChanges)
}
fn fetch_context_lines(
&self,
_file_path: &Path,
_file_status: FileStatus,
_ref_commit: Option<&str>,
_start_line: u32,
_end_line: u32,
) -> TuicrResult<Vec<DiffLine>> {
Ok(Vec::new())
}
fn get_change_status(&self) -> TuicrResult<VcsChangeStatus> {
Ok(VcsChangeStatus {
staged: false,
unstaged: false,
})
}
fn file_line_count(
&self,
_file_path: &Path,
_file_status: FileStatus,
_ref_commit: Option<&str>,
) -> TuicrResult<u32> {
Ok(0)
}
}
fn repo() -> ForgeRepository {
ForgeRepository::github("github.com", "agavra", "tuicr")
}
fn sample_diff_file() -> DiffFile {
// Two-line file with one context line and one addition so we have
// a stable `line=2` anchor for the test thread.
let lines = vec![
DiffLine {
origin: LineOrigin::Context,
content: "first".to_string(),
old_lineno: Some(1),
new_lineno: Some(1),
highlighted_spans: None,
},
DiffLine {
origin: LineOrigin::Addition,
content: "second".to_string(),
old_lineno: None,
new_lineno: Some(2),
highlighted_spans: None,
},
];
let hunk = DiffHunk {
header: "@@ -1,1 +1,2 @@".to_string(),
lines,
old_start: 1,
old_count: 1,
new_start: 1,
new_count: 2,
};
let hunks = vec![hunk];
let content_hash = DiffFile::compute_content_hash(&hunks);
DiffFile {
old_path: Some(PathBuf::from("src/lib.rs")),
new_path: Some(PathBuf::from("src/lib.rs")),
status: FileStatus::Modified,
hunks,
is_binary: false,
is_too_large: false,
is_commit_message: false,
content_hash,
}
}
fn thread(
id: &str,
author: &str,
body: &str,
line: u32,
resolved: bool,
outdated: bool,
) -> RemoteReviewThread {
RemoteReviewThread {
id: id.to_string(),
path: "src/lib.rs".to_string(),
line: Some(line),
side: RemoteCommentSide::Right,
is_resolved: resolved,
is_outdated: outdated,
comments: vec![RemoteReviewComment {
id: format!("{id}-root"),
author: Some(author.to_string()),
body: body.to_string(),
created_at: None,
in_reply_to: None,
url: "https://example.com/x".to_string(),
}],
}
}
fn make_pr_app() -> App {
let pr = PullRequestDiffSource {
key: PrSessionKey::new(repo(), 125, "headsha".to_string()),
base_sha: "basesha".to_string(),
title: "test pr".to_string(),
url: "https://example.com".to_string(),
head_ref_name: "feat".to_string(),
base_ref_name: "main".to_string(),
state: "OPEN".to_string(),
closed: false,
merged: false,
};
let vcs_info = VcsInfo {
root_path: PathBuf::from("forge:github.com/agavra/tuicr"),
head_commit: "headsha".to_string(),
branch_name: Some("feat".to_string()),
vcs_type: VcsType::File,
};
let mut session = ReviewSession::new(
vcs_info.root_path.clone(),
"headsha".to_string(),
Some("feat".to_string()),
SessionDiffSource::PullRequest,
);
session.pr_session_key = Some(pr.key.clone());
App::build(
Box::new(SnapshotVcs {
info: vcs_info.clone(),
}),
vcs_info,
Theme::dark(),
None,
false,
vec![sample_diff_file()],
session,
DiffSource::PullRequest(Box::new(pr)),
InputMode::Normal,
Vec::new(),
None,
)
.expect("build app")
}
fn draw(app: &mut App) -> Buffer {
let backend = TestBackend::new(140, 30);
let mut terminal = Terminal::new(backend).unwrap();
terminal
.draw(|frame| render(frame, app))
.expect("draw frame");
terminal.backend().buffer().clone()
}
fn body_text(buffer: &Buffer) -> String {
(0..buffer.area.height)
.map(|y| {
(0..buffer.area.width)
.map(|x| buffer[(x, y)].symbol().to_string())
.collect::<String>()
})
.collect::<Vec<_>>()
.join("\n")
}
#[test]
fn should_render_unresolved_remote_comment_inline_in_unified_diff() {
// given a PR app with one unresolved remote thread anchored on
// the addition line
let mut app = make_pr_app();
app.forge_review_threads = vec![thread("t1", "alice", "looks good?", 2, false, false)];
app.rebuild_annotations();
// when
let buffer = draw(&mut app);
// then — the badge appears somewhere in the rendered frame
let body = body_text(&buffer);
assert!(
body.contains("[github @alice]"),
"expected [github @alice] badge in:\n{body}"
);
assert!(
body.contains("looks good?"),
"expected remote comment body in:\n{body}"
);
}
#[test]
fn should_render_resolved_remote_comment_only_under_comments_all() {
// given a PR app with one resolved remote thread
let mut app = make_pr_app();
app.forge_review_threads = vec![thread(
"t1", "alice", "old note", 2, /* resolved */ true, false,
)];
// default Unresolved visibility — should not render
app.rebuild_annotations();
let before = body_text(&draw(&mut app));
assert!(
!before.contains("[github @alice"),
"resolved thread leaked under Unresolved:\n{before}"
);
// when — flip to All
assert!(app.set_remote_comments_visibility(PrCommentsVisibility::All));
// then — the resolved badge appears with the "resolved" marker
let after = body_text(&draw(&mut app));
assert!(
after.contains("[github @alice resolved]"),
"expected resolved badge in:\n{after}"
);
}
#[test]
fn should_hide_all_remote_comments_when_comments_hide() {
// given
let mut app = make_pr_app();
app.forge_review_threads = vec![thread("t1", "alice", "blocker", 2, false, false)];
app.rebuild_annotations();
// sanity: visible by default
let before = body_text(&draw(&mut app));
assert!(before.contains("[github @alice]"));
// when
assert!(app.set_remote_comments_visibility(PrCommentsVisibility::Hide));
// then
let after = body_text(&draw(&mut app));
assert!(
!after.contains("[github @alice"),
"comment leaked under Hide:\n{after}"
);
}
#[test]
fn should_render_outdated_marker_for_outdated_thread_under_all() {
// given
let mut app = make_pr_app();
app.forge_review_threads = vec![thread(
"t1",
"bob",
"stale anchor",
2,
false,
/* outdated */ true,
)];
// when — switch to all so the outdated thread is visible
app.set_remote_comments_visibility(PrCommentsVisibility::All);
let body = body_text(&draw(&mut app));
// then
assert!(
body.contains("[github @bob outdated]"),
"expected outdated badge in:\n{body}"
);
}
}