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
use ratatui::{
layout::Rect,
style::{Modifier, Style},
text::{Line, Span},
widgets::{Block, Borders, Clear, List, ListItem, Paragraph},
Frame,
};
use super::markdown::{parse_markdown, wrap_styled_lines, wrap_text_lines, StyledLine};
pub mod input;
use super::ui::scrollbar::{render_scrollbar, ScrollbarColors, ScrollbarState};
use crate::primitives::grammar::GrammarRegistry;
/// Clamp a rectangle to fit within bounds, preventing out-of-bounds rendering panics.
/// Returns a rectangle that is guaranteed to be fully contained within `bounds`.
fn clamp_rect_to_bounds(rect: Rect, bounds: Rect) -> Rect {
// Clamp x to be within bounds
let x = rect.x.min(bounds.x + bounds.width.saturating_sub(1));
// Clamp y to be within bounds
let y = rect.y.min(bounds.y + bounds.height.saturating_sub(1));
// Calculate maximum possible width/height from the clamped position
let max_width = (bounds.x + bounds.width).saturating_sub(x);
let max_height = (bounds.y + bounds.height).saturating_sub(y);
Rect {
x,
y,
width: rect.width.min(max_width),
height: rect.height.min(max_height),
}
}
/// Position of a popup relative to a point in the buffer
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum PopupPosition {
/// At cursor position
AtCursor,
/// Below cursor position
BelowCursor,
/// Above cursor position
AboveCursor,
/// Fixed screen coordinates (x, y)
Fixed { x: u16, y: u16 },
/// Centered on screen
Centered,
/// Bottom right corner (above status bar)
BottomRight,
}
/// Kind of popup - determines input handling behavior
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum PopupKind {
/// LSP completion popup - supports type-to-filter, Tab/Enter accept
Completion,
/// Hover/documentation popup - read-only, scroll, dismiss on keypress
Hover,
/// Action popup with selectable actions - navigate and execute
Action,
/// Generic list popup
List,
/// Generic text popup
Text,
}
/// Content of a popup window
#[derive(Debug, Clone, PartialEq)]
pub enum PopupContent {
/// Simple text content
Text(Vec<String>),
/// Markdown content with styling
Markdown(Vec<StyledLine>),
/// List of selectable items
List {
items: Vec<PopupListItem>,
selected: usize,
},
/// Custom rendered content (just store strings for now)
Custom(Vec<String>),
}
/// Text selection within a popup (line, column positions)
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct PopupTextSelection {
/// Start position (line index, column index)
pub start: (usize, usize),
/// End position (line index, column index)
pub end: (usize, usize),
}
impl PopupTextSelection {
/// Get normalized selection (start <= end)
pub fn normalized(&self) -> ((usize, usize), (usize, usize)) {
if self.start.0 < self.end.0 || (self.start.0 == self.end.0 && self.start.1 <= self.end.1) {
(self.start, self.end)
} else {
(self.end, self.start)
}
}
/// Check if a position is within the selection
pub fn contains(&self, line: usize, col: usize) -> bool {
let ((start_line, start_col), (end_line, end_col)) = self.normalized();
if line < start_line || line > end_line {
return false;
}
if line == start_line && line == end_line {
col >= start_col && col < end_col
} else if line == start_line {
col >= start_col
} else if line == end_line {
col < end_col
} else {
true
}
}
}
/// A single item in a popup list
#[derive(Debug, Clone, PartialEq)]
pub struct PopupListItem {
/// Main text to display
pub text: String,
/// Optional secondary text (description, type info, etc.)
pub detail: Option<String>,
/// Optional icon or prefix
pub icon: Option<String>,
/// User data associated with this item (for completion, etc.)
pub data: Option<String>,
}
impl PopupListItem {
pub fn new(text: String) -> Self {
Self {
text,
detail: None,
icon: None,
data: None,
}
}
pub fn with_detail(mut self, detail: String) -> Self {
self.detail = Some(detail);
self
}
pub fn with_icon(mut self, icon: String) -> Self {
self.icon = Some(icon);
self
}
pub fn with_data(mut self, data: String) -> Self {
self.data = Some(data);
self
}
}
/// A popup/floating window
/// This is a general-purpose UI primitive that can be used for:
/// - Completion menus
/// - Hover documentation
/// - Command palette
/// - File picker
/// - Diagnostic messages
/// - Quick fixes / code actions
#[derive(Debug, Clone, PartialEq)]
pub struct Popup {
/// Kind of popup - determines input handling behavior
pub kind: PopupKind,
/// Title of the popup (optional)
pub title: Option<String>,
/// Description text shown below title, above content (optional)
pub description: Option<String>,
/// Whether this popup is transient (dismissed on focus loss, e.g. hover, signature help)
pub transient: bool,
/// Content to display
pub content: PopupContent,
/// Position strategy
pub position: PopupPosition,
/// Width of popup (in columns)
pub width: u16,
/// Maximum height (will be clamped to available space)
pub max_height: u16,
/// Whether to show borders
pub bordered: bool,
/// Border style
pub border_style: Style,
/// Background style
pub background_style: Style,
/// Scroll offset for content (for scrolling through long lists)
pub scroll_offset: usize,
/// Text selection for copy/paste (None if no selection)
pub text_selection: Option<PopupTextSelection>,
}
impl Popup {
/// Create a new popup with text content using theme colors
pub fn text(content: Vec<String>, theme: &crate::view::theme::Theme) -> Self {
Self {
kind: PopupKind::Text,
title: None,
description: None,
transient: false,
content: PopupContent::Text(content),
position: PopupPosition::AtCursor,
width: 50,
max_height: 15,
bordered: true,
border_style: Style::default().fg(theme.popup_border_fg),
background_style: Style::default().bg(theme.popup_bg),
scroll_offset: 0,
text_selection: None,
}
}
/// Create a new popup with markdown content using theme colors
///
/// If `registry` is provided, code blocks will have syntax highlighting
/// for ~150+ languages via syntect.
pub fn markdown(
markdown_text: &str,
theme: &crate::view::theme::Theme,
registry: Option<&GrammarRegistry>,
) -> Self {
let styled_lines = parse_markdown(markdown_text, theme, registry);
Self {
kind: PopupKind::Text,
title: None,
description: None,
transient: false,
content: PopupContent::Markdown(styled_lines),
position: PopupPosition::AtCursor,
width: 60, // Wider for markdown content
max_height: 20, // Taller for documentation
bordered: true,
border_style: Style::default().fg(theme.popup_border_fg),
background_style: Style::default().bg(theme.popup_bg),
scroll_offset: 0,
text_selection: None,
}
}
/// Create a new popup with a list of items using theme colors
pub fn list(items: Vec<PopupListItem>, theme: &crate::view::theme::Theme) -> Self {
Self {
kind: PopupKind::List,
title: None,
description: None,
transient: false,
content: PopupContent::List { items, selected: 0 },
position: PopupPosition::AtCursor,
width: 50,
max_height: 15,
bordered: true,
border_style: Style::default().fg(theme.popup_border_fg),
background_style: Style::default().bg(theme.popup_bg),
scroll_offset: 0,
text_selection: None,
}
}
/// Set the title
pub fn with_title(mut self, title: String) -> Self {
self.title = Some(title);
self
}
/// Set the popup kind (determines input handling behavior)
pub fn with_kind(mut self, kind: PopupKind) -> Self {
self.kind = kind;
self
}
/// Mark this popup as transient (will be dismissed on focus loss)
pub fn with_transient(mut self, transient: bool) -> Self {
self.transient = transient;
self
}
/// Set the position
pub fn with_position(mut self, position: PopupPosition) -> Self {
self.position = position;
self
}
/// Set the width
pub fn with_width(mut self, width: u16) -> Self {
self.width = width;
self
}
/// Set the max height
pub fn with_max_height(mut self, max_height: u16) -> Self {
self.max_height = max_height;
self
}
/// Set border style
pub fn with_border_style(mut self, style: Style) -> Self {
self.border_style = style;
self
}
/// Get the currently selected item (if this is a list popup)
pub fn selected_item(&self) -> Option<&PopupListItem> {
match &self.content {
PopupContent::List { items, selected } => items.get(*selected),
_ => None,
}
}
/// Get the actual visible content height (accounting for borders)
fn visible_height(&self) -> usize {
let border_offset = if self.bordered { 2 } else { 0 };
(self.max_height as usize).saturating_sub(border_offset)
}
/// Move selection down (for list popups)
pub fn select_next(&mut self) {
let visible = self.visible_height();
if let PopupContent::List { items, selected } = &mut self.content {
if *selected < items.len().saturating_sub(1) {
*selected += 1;
// Adjust scroll if needed (use visible_height to account for borders)
if *selected >= self.scroll_offset + visible {
self.scroll_offset = (*selected + 1).saturating_sub(visible);
}
}
}
}
/// Move selection up (for list popups)
pub fn select_prev(&mut self) {
if let PopupContent::List { items: _, selected } = &mut self.content {
if *selected > 0 {
*selected -= 1;
// Adjust scroll if needed
if *selected < self.scroll_offset {
self.scroll_offset = *selected;
}
}
}
}
/// Scroll down by one page
pub fn page_down(&mut self) {
let visible = self.visible_height();
if let PopupContent::List { items, selected } = &mut self.content {
*selected = (*selected + visible).min(items.len().saturating_sub(1));
self.scroll_offset = (*selected + 1).saturating_sub(visible);
} else {
self.scroll_offset += visible;
}
}
/// Scroll up by one page
pub fn page_up(&mut self) {
let visible = self.visible_height();
if let PopupContent::List { items: _, selected } = &mut self.content {
*selected = selected.saturating_sub(visible);
self.scroll_offset = *selected;
} else {
self.scroll_offset = self.scroll_offset.saturating_sub(visible);
}
}
/// Select the first item (for list popups)
pub fn select_first(&mut self) {
if let PopupContent::List { items: _, selected } = &mut self.content {
*selected = 0;
self.scroll_offset = 0;
} else {
self.scroll_offset = 0;
}
}
/// Select the last item (for list popups)
pub fn select_last(&mut self) {
let visible = self.visible_height();
if let PopupContent::List { items, selected } = &mut self.content {
*selected = items.len().saturating_sub(1);
// Ensure the last item is visible
if *selected >= visible {
self.scroll_offset = (*selected + 1).saturating_sub(visible);
}
} else {
// For non-list content, scroll to the end
let content_height = self.item_count();
if content_height > visible {
self.scroll_offset = content_height.saturating_sub(visible);
}
}
}
/// Scroll by a delta amount (positive = down, negative = up)
/// Used for mouse wheel scrolling
pub fn scroll_by(&mut self, delta: i32) {
let content_len = self.wrapped_item_count();
let visible = self.visible_height();
let max_scroll = content_len.saturating_sub(visible);
if delta < 0 {
// Scroll up
self.scroll_offset = self.scroll_offset.saturating_sub((-delta) as usize);
} else {
// Scroll down
self.scroll_offset = (self.scroll_offset + delta as usize).min(max_scroll);
}
// For list popups, adjust selection to stay visible
if let PopupContent::List { items, selected } = &mut self.content {
let visible_start = self.scroll_offset;
let visible_end = (self.scroll_offset + visible).min(items.len());
if *selected < visible_start {
*selected = visible_start;
} else if *selected >= visible_end {
*selected = visible_end.saturating_sub(1);
}
}
}
/// Get the total number of items/lines in the popup
pub fn item_count(&self) -> usize {
match &self.content {
PopupContent::Text(lines) => lines.len(),
PopupContent::Markdown(lines) => lines.len(),
PopupContent::List { items, .. } => items.len(),
PopupContent::Custom(lines) => lines.len(),
}
}
/// Get the total number of wrapped lines in the popup
///
/// This accounts for line wrapping based on the popup width,
/// which is necessary for correct scroll calculations.
fn wrapped_item_count(&self) -> usize {
// Calculate wrap width same as render: width - borders (2) - scrollbar (2)
let border_width = if self.bordered { 2 } else { 0 };
let scrollbar_width = 2; // 1 for scrollbar + 1 for spacing
let wrap_width = (self.width as usize)
.saturating_sub(border_width)
.saturating_sub(scrollbar_width);
if wrap_width == 0 {
return self.item_count();
}
match &self.content {
PopupContent::Text(lines) => wrap_text_lines(lines, wrap_width).len(),
PopupContent::Markdown(styled_lines) => {
wrap_styled_lines(styled_lines, wrap_width).len()
}
// Lists and custom content don't wrap
PopupContent::List { items, .. } => items.len(),
PopupContent::Custom(lines) => lines.len(),
}
}
/// Start text selection at position (used for mouse click)
pub fn start_selection(&mut self, line: usize, col: usize) {
self.text_selection = Some(PopupTextSelection {
start: (line, col),
end: (line, col),
});
}
/// Extend text selection to position (used for mouse drag)
pub fn extend_selection(&mut self, line: usize, col: usize) {
if let Some(ref mut sel) = self.text_selection {
sel.end = (line, col);
}
}
/// Clear text selection
pub fn clear_selection(&mut self) {
self.text_selection = None;
}
/// Check if popup has active text selection
pub fn has_selection(&self) -> bool {
if let Some(sel) = &self.text_selection {
sel.start != sel.end
} else {
false
}
}
/// Get plain text lines from popup content
fn get_text_lines(&self) -> Vec<String> {
match &self.content {
PopupContent::Text(lines) => lines.clone(),
PopupContent::Markdown(styled_lines) => {
styled_lines.iter().map(|sl| sl.plain_text()).collect()
}
PopupContent::List { items, .. } => items.iter().map(|i| i.text.clone()).collect(),
PopupContent::Custom(lines) => lines.clone(),
}
}
/// Get selected text from popup content
pub fn get_selected_text(&self) -> Option<String> {
let sel = self.text_selection.as_ref()?;
if sel.start == sel.end {
return None;
}
let ((start_line, start_col), (end_line, end_col)) = sel.normalized();
let lines = self.get_text_lines();
if start_line >= lines.len() {
return None;
}
if start_line == end_line {
let line = &lines[start_line];
let end_col = end_col.min(line.len());
let start_col = start_col.min(end_col);
Some(line[start_col..end_col].to_string())
} else {
let mut result = String::new();
// First line from start_col to end
let first_line = &lines[start_line];
result.push_str(&first_line[start_col.min(first_line.len())..]);
result.push('\n');
// Middle lines (full)
for line in lines.iter().take(end_line).skip(start_line + 1) {
result.push_str(line);
result.push('\n');
}
// Last line from start to end_col
if end_line < lines.len() {
let last_line = &lines[end_line];
result.push_str(&last_line[..end_col.min(last_line.len())]);
}
Some(result)
}
}
/// Check if the popup needs a scrollbar (content exceeds visible area)
pub fn needs_scrollbar(&self) -> bool {
self.item_count() > self.visible_height()
}
/// Get scroll state for scrollbar rendering
pub fn scroll_state(&self) -> (usize, usize, usize) {
let total = self.item_count();
let visible = self.visible_height();
(total, visible, self.scroll_offset)
}
/// Find the link URL at a given relative position within the popup content area.
/// `relative_col` and `relative_row` are relative to the inner content area (after borders).
/// Returns None if:
/// - The popup doesn't contain markdown content
/// - The position doesn't have a link
pub fn link_at_position(&self, relative_col: usize, relative_row: usize) -> Option<String> {
let PopupContent::Markdown(styled_lines) = &self.content else {
return None;
};
// Calculate the content width for wrapping
let border_width = if self.bordered { 2 } else { 0 };
let scrollbar_reserved = 2;
let content_width = self
.width
.saturating_sub(border_width)
.saturating_sub(scrollbar_reserved) as usize;
// Wrap the styled lines
let wrapped_lines = wrap_styled_lines(styled_lines, content_width);
// Account for scroll offset
let line_index = self.scroll_offset + relative_row;
// Get the line at this position
let line = wrapped_lines.get(line_index)?;
// Find the link at the column position
line.link_at_column(relative_col).map(|s| s.to_string())
}
/// Get the height of the description area (including blank line separator)
/// Returns 0 if there is no description.
pub fn description_height(&self) -> u16 {
if let Some(desc) = &self.description {
let border_width = if self.bordered { 2 } else { 0 };
let scrollbar_reserved = 2;
let content_width = self
.width
.saturating_sub(border_width)
.saturating_sub(scrollbar_reserved) as usize;
let desc_vec = vec![desc.clone()];
let wrapped = wrap_text_lines(&desc_vec, content_width.saturating_sub(2));
wrapped.len() as u16 + 1 // +1 for blank line after description
} else {
0
}
}
/// Calculate the actual content height based on the popup content
fn content_height(&self) -> u16 {
// Use the popup's configured width for wrapping calculation
self.content_height_for_width(self.width)
}
/// Calculate content height for a specific width, accounting for word wrapping
fn content_height_for_width(&self, popup_width: u16) -> u16 {
// Calculate the effective content width (accounting for borders and scrollbar)
let border_width = if self.bordered { 2 } else { 0 };
let scrollbar_reserved = 2; // Reserve space for potential scrollbar
let content_width = popup_width
.saturating_sub(border_width)
.saturating_sub(scrollbar_reserved) as usize;
// Calculate description height if present
let description_lines = if let Some(desc) = &self.description {
let desc_vec = vec![desc.clone()];
let wrapped = wrap_text_lines(&desc_vec, content_width.saturating_sub(2));
wrapped.len() as u16 + 1 // +1 for blank line after description
} else {
0
};
let content_lines = match &self.content {
PopupContent::Text(lines) => {
// Count wrapped lines
wrap_text_lines(lines, content_width).len() as u16
}
PopupContent::Markdown(styled_lines) => {
// Count wrapped styled lines
wrap_styled_lines(styled_lines, content_width).len() as u16
}
PopupContent::List { items, .. } => items.len() as u16,
PopupContent::Custom(lines) => lines.len() as u16,
};
// Add border lines if bordered
let border_height = if self.bordered { 2 } else { 0 };
description_lines + content_lines + border_height
}
/// Calculate the area where this popup should be rendered
pub fn calculate_area(&self, terminal_area: Rect, cursor_pos: Option<(u16, u16)>) -> Rect {
match self.position {
PopupPosition::AtCursor | PopupPosition::BelowCursor | PopupPosition::AboveCursor => {
let (cursor_x, cursor_y) =
cursor_pos.unwrap_or((terminal_area.width / 2, terminal_area.height / 2));
let width = self.width.min(terminal_area.width);
// Use the minimum of max_height, actual content height, and terminal height
let height = self
.content_height()
.min(self.max_height)
.min(terminal_area.height);
let x = if cursor_x + width > terminal_area.width {
terminal_area.width.saturating_sub(width)
} else {
cursor_x
};
let y = match self.position {
PopupPosition::AtCursor => cursor_y,
PopupPosition::BelowCursor => {
if cursor_y + 2 + height > terminal_area.height {
// Not enough space below, put above cursor
// Position so bottom of popup is one row above cursor
(cursor_y + 1).saturating_sub(height)
} else {
// Below cursor with two row gap
cursor_y + 2
}
}
PopupPosition::AboveCursor => {
// Position so bottom of popup is one row above cursor
(cursor_y + 1).saturating_sub(height)
}
_ => cursor_y,
};
Rect {
x,
y,
width,
height,
}
}
PopupPosition::Fixed { x, y } => {
let width = self.width.min(terminal_area.width);
let height = self
.content_height()
.min(self.max_height)
.min(terminal_area.height);
// Clamp x and y to ensure popup stays within terminal bounds
let x = if x + width > terminal_area.width {
terminal_area.width.saturating_sub(width)
} else {
x
};
let y = if y + height > terminal_area.height {
terminal_area.height.saturating_sub(height)
} else {
y
};
Rect {
x,
y,
width,
height,
}
}
PopupPosition::Centered => {
let width = self.width.min(terminal_area.width);
let height = self
.content_height()
.min(self.max_height)
.min(terminal_area.height);
let x = (terminal_area.width.saturating_sub(width)) / 2;
let y = (terminal_area.height.saturating_sub(height)) / 2;
Rect {
x,
y,
width,
height,
}
}
PopupPosition::BottomRight => {
let width = self.width.min(terminal_area.width);
let height = self
.content_height()
.min(self.max_height)
.min(terminal_area.height);
// Position in bottom right, leaving 2 rows for status bar
let x = terminal_area.width.saturating_sub(width);
let y = terminal_area
.height
.saturating_sub(height)
.saturating_sub(2);
Rect {
x,
y,
width,
height,
}
}
}
}
/// Render the popup to the frame
pub fn render(&self, frame: &mut Frame, area: Rect, theme: &crate::view::theme::Theme) {
self.render_with_hover(frame, area, theme, None);
}
/// Render the popup to the frame with hover highlighting
pub fn render_with_hover(
&self,
frame: &mut Frame,
area: Rect,
theme: &crate::view::theme::Theme,
hover_target: Option<&crate::app::HoverTarget>,
) {
// Defensive bounds checking: clamp area to frame bounds to prevent panic
let frame_area = frame.area();
let area = clamp_rect_to_bounds(area, frame_area);
// Skip rendering if area is empty after clamping
if area.width == 0 || area.height == 0 {
return;
}
// Clear the area behind the popup first to hide underlying text
frame.render_widget(Clear, area);
let block = if self.bordered {
let mut block = Block::default()
.borders(Borders::ALL)
.border_style(self.border_style)
.style(self.background_style);
if let Some(title) = &self.title {
block = block.title(title.as_str());
}
block
} else {
Block::default().style(self.background_style)
};
let inner_area = block.inner(area);
frame.render_widget(block, area);
// Render description if present, and adjust content area
let content_start_y;
if let Some(desc) = &self.description {
// Word-wrap description to fit inner width
let desc_wrap_width = inner_area.width.saturating_sub(2) as usize; // Leave some padding
let desc_vec = vec![desc.clone()];
let wrapped_desc = wrap_text_lines(&desc_vec, desc_wrap_width);
let desc_lines: usize = wrapped_desc.len();
// Render each description line
for (i, line) in wrapped_desc.iter().enumerate() {
if i >= inner_area.height as usize {
break;
}
let line_area = Rect {
x: inner_area.x,
y: inner_area.y + i as u16,
width: inner_area.width,
height: 1,
};
let desc_style = Style::default().fg(theme.help_separator_fg);
frame.render_widget(Paragraph::new(line.as_str()).style(desc_style), line_area);
}
// Add blank line after description
content_start_y = inner_area.y + (desc_lines as u16).min(inner_area.height) + 1;
} else {
content_start_y = inner_area.y;
}
// Adjust inner_area to start after description
let inner_area = Rect {
x: inner_area.x,
y: content_start_y,
width: inner_area.width,
height: inner_area
.height
.saturating_sub(content_start_y - area.y - if self.bordered { 1 } else { 0 }),
};
// For text and markdown content, we need to wrap first to determine if scrollbar is needed.
// We wrap to the width that would be available if scrollbar is shown (conservative approach).
let scrollbar_reserved_width = 2; // 1 for scrollbar + 1 for spacing
let wrap_width = inner_area.width.saturating_sub(scrollbar_reserved_width) as usize;
let visible_lines_count = inner_area.height as usize;
// Calculate wrapped line count and determine if scrollbar is needed
let (wrapped_total_lines, needs_scrollbar) = match &self.content {
PopupContent::Text(lines) => {
let wrapped = wrap_text_lines(lines, wrap_width);
let count = wrapped.len();
(
count,
count > visible_lines_count && inner_area.width > scrollbar_reserved_width,
)
}
PopupContent::Markdown(styled_lines) => {
let wrapped = wrap_styled_lines(styled_lines, wrap_width);
let count = wrapped.len();
(
count,
count > visible_lines_count && inner_area.width > scrollbar_reserved_width,
)
}
PopupContent::List { items, .. } => {
let count = items.len();
(
count,
count > visible_lines_count && inner_area.width > scrollbar_reserved_width,
)
}
PopupContent::Custom(lines) => {
let count = lines.len();
(
count,
count > visible_lines_count && inner_area.width > scrollbar_reserved_width,
)
}
};
// Adjust content area to leave room for scrollbar if needed
let content_area = if needs_scrollbar {
Rect {
x: inner_area.x,
y: inner_area.y,
width: inner_area.width.saturating_sub(scrollbar_reserved_width),
height: inner_area.height,
}
} else {
inner_area
};
match &self.content {
PopupContent::Text(lines) => {
// Word-wrap lines to fit content area width
let wrapped_lines = wrap_text_lines(lines, content_area.width as usize);
let selection_style = Style::default().bg(theme.selection_bg);
let visible_lines: Vec<Line> = wrapped_lines
.iter()
.enumerate()
.skip(self.scroll_offset)
.take(content_area.height as usize)
.map(|(line_idx, line)| {
if let Some(ref sel) = self.text_selection {
// Apply selection highlighting
let chars: Vec<char> = line.chars().collect();
let spans: Vec<Span> = chars
.iter()
.enumerate()
.map(|(col, ch)| {
if sel.contains(line_idx, col) {
Span::styled(ch.to_string(), selection_style)
} else {
Span::raw(ch.to_string())
}
})
.collect();
Line::from(spans)
} else {
Line::from(line.as_str())
}
})
.collect();
let paragraph = Paragraph::new(visible_lines);
frame.render_widget(paragraph, content_area);
}
PopupContent::Markdown(styled_lines) => {
// Word-wrap styled lines to fit content area width
let wrapped_lines = wrap_styled_lines(styled_lines, content_area.width as usize);
let selection_style = Style::default().bg(theme.selection_bg);
// Collect link overlay info for OSC 8 rendering after the main draw
// Each entry: (visible_line_idx, start_column, link_text, url)
let mut link_overlays: Vec<(usize, usize, String, String)> = Vec::new();
let visible_lines: Vec<Line> = wrapped_lines
.iter()
.enumerate()
.skip(self.scroll_offset)
.take(content_area.height as usize)
.map(|(line_idx, styled_line)| {
let mut col = 0usize;
let spans: Vec<Span> = styled_line
.spans
.iter()
.flat_map(|s| {
let span_start_col = col;
let span_width =
unicode_width::UnicodeWidthStr::width(s.text.as_str());
if let Some(url) = &s.link_url {
link_overlays.push((
line_idx - self.scroll_offset,
col,
s.text.clone(),
url.clone(),
));
}
col += span_width;
// Check if any part of this span is selected
if let Some(ref sel) = self.text_selection {
// Split span into selected/unselected parts
let chars: Vec<char> = s.text.chars().collect();
chars
.iter()
.enumerate()
.map(|(i, ch)| {
let char_col = span_start_col + i;
if sel.contains(line_idx, char_col) {
Span::styled(ch.to_string(), selection_style)
} else {
Span::styled(ch.to_string(), s.style)
}
})
.collect::<Vec<_>>()
} else {
vec![Span::styled(s.text.clone(), s.style)]
}
})
.collect();
Line::from(spans)
})
.collect();
let paragraph = Paragraph::new(visible_lines);
frame.render_widget(paragraph, content_area);
// Apply OSC 8 hyperlinks following Ratatui's official workaround
let buffer = frame.buffer_mut();
let max_x = content_area.x + content_area.width;
for (line_idx, col_start, text, url) in link_overlays {
let y = content_area.y + line_idx as u16;
if y >= content_area.y + content_area.height {
continue;
}
let start_x = content_area.x + col_start as u16;
apply_hyperlink_overlay(buffer, start_x, y, max_x, &text, &url);
}
}
PopupContent::List { items, selected } => {
let list_items: Vec<ListItem> = items
.iter()
.enumerate()
.skip(self.scroll_offset)
.take(content_area.height as usize)
.map(|(idx, item)| {
// Check if this item is hovered or selected
let is_hovered = matches!(
hover_target,
Some(crate::app::HoverTarget::PopupListItem(_, hovered_idx)) if *hovered_idx == idx
);
let is_selected = idx == *selected;
let mut spans = Vec::new();
// Add icon if present
if let Some(icon) = &item.icon {
spans.push(Span::raw(format!("{} ", icon)));
}
// Add main text with underline for clickable items
let text_style = if is_selected {
Style::default().add_modifier(Modifier::BOLD | Modifier::UNDERLINED)
} else {
Style::default().add_modifier(Modifier::UNDERLINED)
};
spans.push(Span::styled(&item.text, text_style));
// Add detail if present
if let Some(detail) = &item.detail {
spans.push(Span::styled(
format!(" {}", detail),
Style::default().fg(theme.help_separator_fg),
));
}
// Row style (background only, no underline)
let row_style = if is_selected {
Style::default().bg(theme.popup_selection_bg)
} else if is_hovered {
Style::default()
.bg(theme.menu_hover_bg)
.fg(theme.menu_hover_fg)
} else {
Style::default()
};
ListItem::new(Line::from(spans)).style(row_style)
})
.collect();
let list = List::new(list_items);
frame.render_widget(list, content_area);
}
PopupContent::Custom(lines) => {
let visible_lines: Vec<Line> = lines
.iter()
.skip(self.scroll_offset)
.take(content_area.height as usize)
.map(|line| Line::from(line.as_str()))
.collect();
let paragraph = Paragraph::new(visible_lines);
frame.render_widget(paragraph, content_area);
}
}
// Render scrollbar if needed
if needs_scrollbar {
let scrollbar_area = Rect {
x: inner_area.x + inner_area.width - 1,
y: inner_area.y,
width: 1,
height: inner_area.height,
};
let scrollbar_state =
ScrollbarState::new(wrapped_total_lines, visible_lines_count, self.scroll_offset);
let scrollbar_colors = ScrollbarColors::from_theme(theme);
render_scrollbar(frame, scrollbar_area, &scrollbar_state, &scrollbar_colors);
}
}
}
/// Manager for popups - can show multiple popups with z-ordering
#[derive(Debug, Clone)]
pub struct PopupManager {
/// Stack of active popups (top of stack = topmost popup)
popups: Vec<Popup>,
}
impl PopupManager {
pub fn new() -> Self {
Self { popups: Vec::new() }
}
/// Show a popup (adds to top of stack)
pub fn show(&mut self, popup: Popup) {
self.popups.push(popup);
}
/// Hide the topmost popup
pub fn hide(&mut self) -> Option<Popup> {
self.popups.pop()
}
/// Clear all popups
pub fn clear(&mut self) {
self.popups.clear();
}
/// Get the topmost popup
pub fn top(&self) -> Option<&Popup> {
self.popups.last()
}
/// Get mutable reference to topmost popup
pub fn top_mut(&mut self) -> Option<&mut Popup> {
self.popups.last_mut()
}
/// Get reference to popup by index
pub fn get(&self, index: usize) -> Option<&Popup> {
self.popups.get(index)
}
/// Get mutable reference to popup by index
pub fn get_mut(&mut self, index: usize) -> Option<&mut Popup> {
self.popups.get_mut(index)
}
/// Check if any popups are visible
pub fn is_visible(&self) -> bool {
!self.popups.is_empty()
}
/// Check if the topmost popup is a completion popup (supports type-to-filter)
pub fn is_completion_popup(&self) -> bool {
self.top()
.map(|p| p.kind == PopupKind::Completion)
.unwrap_or(false)
}
/// Check if the topmost popup is a hover popup
pub fn is_hover_popup(&self) -> bool {
self.top()
.map(|p| p.kind == PopupKind::Hover)
.unwrap_or(false)
}
/// Check if the topmost popup is an action popup
pub fn is_action_popup(&self) -> bool {
self.top()
.map(|p| p.kind == PopupKind::Action)
.unwrap_or(false)
}
/// Get all popups (for rendering)
pub fn all(&self) -> &[Popup] {
&self.popups
}
/// Dismiss transient popups if present at the top.
/// These popups should be dismissed when the buffer loses focus.
/// Returns true if a popup was dismissed.
pub fn dismiss_transient(&mut self) -> bool {
let is_transient = self.popups.last().is_some_and(|p| p.transient);
if is_transient {
self.popups.pop();
true
} else {
false
}
}
}
impl Default for PopupManager {
fn default() -> Self {
Self::new()
}
}
/// Overlay OSC 8 hyperlinks in 2-character chunks to keep text layout aligned.
///
/// This mirrors the approach used in Ratatui's official hyperlink example to
/// work around Crossterm width accounting bugs for OSC sequences.
fn apply_hyperlink_overlay(
buffer: &mut ratatui::buffer::Buffer,
start_x: u16,
y: u16,
max_x: u16,
text: &str,
url: &str,
) {
let mut chunk_index = 0u16;
let mut chars = text.chars();
loop {
let mut chunk = String::new();
for _ in 0..2 {
if let Some(ch) = chars.next() {
chunk.push(ch);
} else {
break;
}
}
if chunk.is_empty() {
break;
}
let x = start_x + chunk_index * 2;
if x >= max_x {
break;
}
let hyperlink = format!("\x1B]8;;{}\x07{}\x1B]8;;\x07", url, chunk);
buffer[(x, y)].set_symbol(&hyperlink);
chunk_index += 1;
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::view::theme;
#[test]
fn test_popup_list_item() {
let item = PopupListItem::new("test".to_string())
.with_detail("detail".to_string())
.with_icon("📄".to_string());
assert_eq!(item.text, "test");
assert_eq!(item.detail, Some("detail".to_string()));
assert_eq!(item.icon, Some("📄".to_string()));
}
#[test]
fn test_popup_selection() {
let theme = crate::view::theme::Theme::load_builtin(theme::THEME_DARK).unwrap();
let items = vec![
PopupListItem::new("item1".to_string()),
PopupListItem::new("item2".to_string()),
PopupListItem::new("item3".to_string()),
];
let mut popup = Popup::list(items, &theme);
assert_eq!(popup.selected_item().unwrap().text, "item1");
popup.select_next();
assert_eq!(popup.selected_item().unwrap().text, "item2");
popup.select_next();
assert_eq!(popup.selected_item().unwrap().text, "item3");
popup.select_next(); // Should stay at last item
assert_eq!(popup.selected_item().unwrap().text, "item3");
popup.select_prev();
assert_eq!(popup.selected_item().unwrap().text, "item2");
popup.select_prev();
assert_eq!(popup.selected_item().unwrap().text, "item1");
popup.select_prev(); // Should stay at first item
assert_eq!(popup.selected_item().unwrap().text, "item1");
}
#[test]
fn test_popup_manager() {
let theme = crate::view::theme::Theme::load_builtin(theme::THEME_DARK).unwrap();
let mut manager = PopupManager::new();
assert!(!manager.is_visible());
assert_eq!(manager.top(), None);
let popup1 = Popup::text(vec!["test1".to_string()], &theme);
manager.show(popup1);
assert!(manager.is_visible());
assert_eq!(manager.all().len(), 1);
let popup2 = Popup::text(vec!["test2".to_string()], &theme);
manager.show(popup2);
assert_eq!(manager.all().len(), 2);
manager.hide();
assert_eq!(manager.all().len(), 1);
manager.clear();
assert!(!manager.is_visible());
assert_eq!(manager.all().len(), 0);
}
#[test]
fn test_popup_area_calculation() {
let theme = crate::view::theme::Theme::load_builtin(theme::THEME_DARK).unwrap();
let terminal_area = Rect {
x: 0,
y: 0,
width: 100,
height: 50,
};
let popup = Popup::text(vec!["test".to_string()], &theme)
.with_width(30)
.with_max_height(10);
// Centered
let popup_centered = popup.clone().with_position(PopupPosition::Centered);
let area = popup_centered.calculate_area(terminal_area, None);
assert_eq!(area.width, 30);
// Height is now based on content: 1 text line + 2 border lines = 3
assert_eq!(area.height, 3);
assert_eq!(area.x, (100 - 30) / 2);
assert_eq!(area.y, (50 - 3) / 2);
// Below cursor
let popup_below = popup.clone().with_position(PopupPosition::BelowCursor);
let area = popup_below.calculate_area(terminal_area, Some((20, 10)));
assert_eq!(area.x, 20);
assert_eq!(area.y, 12); // Two rows below cursor (allows space for cursor line)
}
#[test]
fn test_popup_fixed_position_clamping() {
let theme = crate::view::theme::Theme::load_builtin(theme::THEME_DARK).unwrap();
let terminal_area = Rect {
x: 0,
y: 0,
width: 100,
height: 50,
};
let popup = Popup::text(vec!["test".to_string()], &theme)
.with_width(30)
.with_max_height(10);
// Fixed position within bounds - should stay as specified
let popup_fixed = popup
.clone()
.with_position(PopupPosition::Fixed { x: 10, y: 20 });
let area = popup_fixed.calculate_area(terminal_area, None);
assert_eq!(area.x, 10);
assert_eq!(area.y, 20);
// Fixed position at right edge - x should be clamped
let popup_right_edge = popup
.clone()
.with_position(PopupPosition::Fixed { x: 99, y: 20 });
let area = popup_right_edge.calculate_area(terminal_area, None);
// x=99 + width=30 > 100, so x should be clamped to 100-30=70
assert_eq!(area.x, 70);
assert_eq!(area.y, 20);
// Fixed position beyond right edge - x should be clamped
let popup_beyond = popup
.clone()
.with_position(PopupPosition::Fixed { x: 199, y: 20 });
let area = popup_beyond.calculate_area(terminal_area, None);
// x=199 + width=30 > 100, so x should be clamped to 100-30=70
assert_eq!(area.x, 70);
assert_eq!(area.y, 20);
// Fixed position at bottom edge - y should be clamped
let popup_bottom = popup
.clone()
.with_position(PopupPosition::Fixed { x: 10, y: 49 });
let area = popup_bottom.calculate_area(terminal_area, None);
assert_eq!(area.x, 10);
// y=49 + height=3 > 50, so y should be clamped to 50-3=47
assert_eq!(area.y, 47);
}
#[test]
fn test_clamp_rect_to_bounds() {
let bounds = Rect {
x: 0,
y: 0,
width: 100,
height: 50,
};
// Rect within bounds - unchanged
let rect = Rect {
x: 10,
y: 20,
width: 30,
height: 10,
};
let clamped = super::clamp_rect_to_bounds(rect, bounds);
assert_eq!(clamped, rect);
// Rect at exact right edge of bounds
let rect = Rect {
x: 99,
y: 20,
width: 30,
height: 10,
};
let clamped = super::clamp_rect_to_bounds(rect, bounds);
assert_eq!(clamped.x, 99); // x is within bounds
assert_eq!(clamped.width, 1); // width clamped to fit
// Rect beyond bounds
let rect = Rect {
x: 199,
y: 60,
width: 30,
height: 10,
};
let clamped = super::clamp_rect_to_bounds(rect, bounds);
assert_eq!(clamped.x, 99); // x clamped to last valid position
assert_eq!(clamped.y, 49); // y clamped to last valid position
assert_eq!(clamped.width, 1); // width clamped to fit
assert_eq!(clamped.height, 1); // height clamped to fit
}
#[test]
fn hyperlink_overlay_chunks_pairs() {
use ratatui::{buffer::Buffer, layout::Rect};
let mut buffer = Buffer::empty(Rect::new(0, 0, 10, 1));
buffer[(0, 0)].set_symbol("P");
buffer[(1, 0)].set_symbol("l");
buffer[(2, 0)].set_symbol("a");
buffer[(3, 0)].set_symbol("y");
apply_hyperlink_overlay(&mut buffer, 0, 0, 10, "Play", "https://example.com");
let first = buffer[(0, 0)].symbol().to_string();
let second = buffer[(2, 0)].symbol().to_string();
assert!(
first.contains("Pl"),
"first chunk should contain 'Pl', got {first:?}"
);
assert!(
second.contains("ay"),
"second chunk should contain 'ay', got {second:?}"
);
}
#[test]
fn test_popup_text_selection() {
let theme = crate::view::theme::Theme::load_builtin(theme::THEME_DARK).unwrap();
let mut popup = Popup::text(
vec![
"Line 0: Hello".to_string(),
"Line 1: World".to_string(),
"Line 2: Test".to_string(),
],
&theme,
);
// Initially no selection
assert!(!popup.has_selection());
assert_eq!(popup.get_selected_text(), None);
// Start selection at line 0, col 8 ("Hello" starts at col 8)
popup.start_selection(0, 8);
assert!(!popup.has_selection()); // Selection start == end
// Extend selection to line 1, col 8 ("World" starts at col 8)
popup.extend_selection(1, 8);
assert!(popup.has_selection());
// Get selected text: "Hello\nLine 1: "
let selected = popup.get_selected_text().unwrap();
assert_eq!(selected, "Hello\nLine 1: ");
// Clear selection
popup.clear_selection();
assert!(!popup.has_selection());
assert_eq!(popup.get_selected_text(), None);
// Test single-line selection
popup.start_selection(1, 8);
popup.extend_selection(1, 13); // "World"
let selected = popup.get_selected_text().unwrap();
assert_eq!(selected, "World");
}
#[test]
fn test_popup_text_selection_contains() {
let sel = PopupTextSelection {
start: (1, 5),
end: (2, 10),
};
// Line 0 - before selection
assert!(!sel.contains(0, 5));
// Line 1 - start of selection
assert!(!sel.contains(1, 4)); // Before start col
assert!(sel.contains(1, 5)); // At start
assert!(sel.contains(1, 10)); // After start on same line
// Line 2 - end of selection
assert!(sel.contains(2, 0)); // Beginning of last line
assert!(sel.contains(2, 9)); // Before end col
assert!(!sel.contains(2, 10)); // At end (exclusive)
assert!(!sel.contains(2, 11)); // After end
// Line 3 - after selection
assert!(!sel.contains(3, 0));
}
#[test]
fn test_popup_text_selection_normalized() {
// Forward selection
let sel = PopupTextSelection {
start: (1, 5),
end: (2, 10),
};
let ((s_line, s_col), (e_line, e_col)) = sel.normalized();
assert_eq!((s_line, s_col), (1, 5));
assert_eq!((e_line, e_col), (2, 10));
// Backward selection (user dragged up)
let sel_backward = PopupTextSelection {
start: (2, 10),
end: (1, 5),
};
let ((s_line, s_col), (e_line, e_col)) = sel_backward.normalized();
assert_eq!((s_line, s_col), (1, 5));
assert_eq!((e_line, e_col), (2, 10));
}
}