worktrunk 0.37.1

A CLI for Git worktree management, designed for parallel AI agent workflows
Documentation
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
use crate::display::{format_relative_time_short, shorten_path, truncate_to_width};
use anstyle::Style;
use std::path::Path;
use unicode_width::UnicodeWidthStr;
use worktrunk::styling::{Stream, StyledLine, hyperlink_stdout, supports_hyperlinks};

use super::collect::parse_port_from_url;
use super::columns::{ColumnKind, DiffVariant};
use super::layout::{ColumnFormat, ColumnLayout, DiffColumnConfig, LayoutConfig};
use super::model::{ListItem, PositionMask};

/// Placeholder glyph for unresolved Status positions — both "still loading" and
/// "drain deadline fired, won't arrive."
///
/// TODO: collapse-to-one-glyph is temporary. Loading and timed-out are
/// semantically distinct states; the original design used `⋯` vs `·` but `⋯`
/// is too visually loud for a tight column where most cells are in one state
/// or the other during a render. Revisit and pick a subtle second glyph
/// (e.g. `·` for one, `–` or braille dot for the other) once we can evaluate
/// them side-by-side in real tables. Also update `src/cli/mod.rs`
/// status-column help table when resplit.
pub const PLACEHOLDER: &str = "·";

/// Blank placeholder used by `wt list` during the first ~200ms of progressive
/// rendering. The skeleton renders with blanks so fast commands (everything
/// resolved under 200ms) never flash the `·` loading indicator. After the
/// 200ms threshold, `LayoutConfig::placeholder` is promoted to [`PLACEHOLDER`]
/// and every still-pending cell is re-rendered with the dot.
pub const PLACEHOLDER_BLANK: &str = " ";

impl DiffColumnConfig {
    /// Check if a value exceeds the allocated digit width
    fn exceeds_width(value: usize, digits: usize) -> bool {
        if digits == 0 {
            return value > 0;
        }
        let max_value = 10_usize.pow(digits as u32) - 1;
        value > max_value
    }

    /// Check if a subcolumn value should be rendered (non-zero or explicitly showing zeros)
    fn should_render(value: usize, always_show_zeros: bool) -> bool {
        value > 0 || (value == 0 && always_show_zeros)
    }

    /// Format a value using compact notation (K for thousands, optionally C for hundreds)
    ///
    /// Returns (formatted_string, uses_compact_notation)
    ///
    /// For line diffs (Signs): Shows full numbers in 100-999 range, uses K for thousands
    /// For commit counts (Arrows): Uses C for hundreds, K for thousands
    ///
    /// Note: Uses integer division for approximation (intentional truncation):
    /// - 648 / 100 = 6 → "6C" (represents ~600)
    /// - 1999 / 1000 = 1 → "1K" (represents ~1000)
    ///
    /// Values >= 10,000 display as "∞" to indicate "very large" without false precision.
    ///
    /// Examples (Signs):  100 -> ("100", false), 648 -> ("648", false), 1000 -> ("1K", true)
    /// Examples (Arrows): 100 -> ("1C", true),   648 -> ("6C", true),   1000 -> ("1K", true)
    fn format_overflow(value: usize, variant: DiffVariant) -> (String, bool) {
        if value >= 10_000 {
            // Use ∞ for extreme values to avoid false precision (9K could be 9K or 900K)
            ("".to_string(), true)
        } else if value >= 1_000 {
            (format!("{}K", value / 1_000), true)
        } else if value >= 100 {
            match variant {
                // Line diffs: show full number (user prefers precision over compactness)
                DiffVariant::Signs => (value.to_string(), false),
                // Commit counts: use C abbreviation
                DiffVariant::Arrows | DiffVariant::UpstreamArrows => {
                    (format!("{}C", value / 100), true)
                }
            }
        } else {
            (value.to_string(), false)
        }
    }

    /// Render a subcolumn value with symbol and padding to fixed width
    /// Numbers are right-aligned on the ones column (e.g., " +2", "+53")
    /// For compact notation (C/K suffix), renders bold (e.g., bold "+6C", bold "+5K")
    fn render_subcolumn(
        segment: &mut StyledLine,
        symbol: &str,
        value: usize,
        width: usize,
        style: Style,
        overflow: bool,
        variant: DiffVariant,
    ) {
        let (value_str, is_compact) = if overflow {
            Self::format_overflow(value, variant)
        } else {
            (value.to_string(), false)
        };
        let content_len = 1 + value_str.width(); // symbol + display width
        let padding_needed = width.saturating_sub(content_len);

        // Add left padding for right-alignment
        if padding_needed > 0 {
            segment.push_raw(" ".repeat(padding_needed));
        }

        // Add styled content - bold entire value if using compact notation (C/K suffix)
        // to emphasize approximation
        if is_compact {
            segment.push_styled(format!("{}{}", symbol, value_str), style.bold());
        } else {
            segment.push_styled(format!("{}{}", symbol, value_str), style);
        }
    }

    /// Render diff values as a StyledLine with fixed-width alignment.
    ///
    /// Numbers are right-aligned within their allocated digit width.
    /// Use this for tabular display where columns must align vertically.
    pub fn render_segment(&self, positive: usize, negative: usize) -> StyledLine {
        let symbols = self.display.variant.symbols();
        let mut segment = StyledLine::new();

        // Check for overflow
        let positive_overflow = Self::exceeds_width(positive, self.positive_digits);
        let negative_overflow = Self::exceeds_width(negative, self.negative_digits);

        if positive == 0 && negative == 0 && !self.display.always_show_zeros {
            segment.push_raw(" ".repeat(self.total_width));
            return segment;
        }

        let positive_width = 1 + self.positive_digits;
        let negative_width = 1 + self.negative_digits;

        // Fixed content width ensures vertical alignment of subcolumns
        let content_width = positive_width + 1 + negative_width;
        let total_padding = self.total_width.saturating_sub(content_width);

        // Add leading padding for right-alignment
        if total_padding > 0 {
            segment.push_raw(" ".repeat(total_padding));
        }

        // Render positive (added) subcolumn
        if Self::should_render(positive, self.display.always_show_zeros) {
            Self::render_subcolumn(
                &mut segment,
                symbols.positive,
                positive,
                positive_width,
                self.display.positive_style,
                positive_overflow,
                self.display.variant,
            );
        } else {
            // Empty positive subcolumn - add spaces to maintain alignment
            segment.push_raw(" ".repeat(positive_width));
        }

        // Always add separator to maintain fixed layout (early return handles empty case)
        segment.push_raw(" ");

        // Render negative (deleted) subcolumn
        if Self::should_render(negative, self.display.always_show_zeros) {
            Self::render_subcolumn(
                &mut segment,
                symbols.negative,
                negative,
                negative_width,
                self.display.negative_style,
                negative_overflow,
                self.display.variant,
            );
        } else {
            // Empty negative subcolumn - add spaces to maintain alignment
            segment.push_raw(" ".repeat(negative_width));
        }

        segment
    }
}

impl LayoutConfig {
    fn render_line<F>(&self, mut render_cell: F) -> StyledLine
    where
        F: FnMut(&ColumnLayout) -> StyledLine,
    {
        let mut line = StyledLine::new();
        if self.columns.is_empty() {
            return line;
        }

        let last_index = self.columns.len() - 1;

        for (index, column) in self.columns.iter().enumerate() {
            line.pad_to(column.start);
            let cell = render_cell(column);
            let cell_width = cell.width();

            // Debug: Log if cell exceeds its allocated width
            if cell_width > column.width {
                log::debug!(
                    "Cell overflow: column={:?} allocated={} actual={} excess={}",
                    column.kind,
                    column.width,
                    cell_width,
                    cell_width - column.width
                );
            }

            line.extend(cell);

            // Pad to end of column (unless it's the last column)
            if index != last_index {
                line.pad_to(column.start + column.width);
            }
        }

        let final_width = line.width();
        log::debug!("Rendered line width: {}", final_width);

        line
    }

    pub fn format_header_line(&self) -> String {
        self.render_header_line().render()
    }

    /// Render header line as StyledLine (for extracting both plain and styled text)
    pub fn render_header_line(&self) -> StyledLine {
        let style = Style::new().bold();
        self.render_line(|column| {
            let mut cell = StyledLine::new();
            if !column.header.is_empty() {
                // Diff columns have right-aligned values, so right-align headers too
                let is_diff_column = matches!(column.format, ColumnFormat::Diff(_));

                if is_diff_column {
                    // Right-align header within column width
                    let header_width = column.header.width();
                    if header_width < column.width {
                        let padding = column.width - header_width;
                        cell.push_raw(" ".repeat(padding));
                    }
                }

                cell.push_styled(column.header.to_string(), style);
            }
            cell
        })
    }

    pub fn format_list_item_line(&self, item: &ListItem) -> String {
        self.render_list_item_line(item).render()
    }

    /// Render list item line as StyledLine (for extracting both plain and styled text)
    pub fn render_list_item_line(&self, item: &ListItem) -> StyledLine {
        self.render_item_with_placeholder(item, self.placeholder.get())
    }

    fn render_item_with_placeholder(&self, item: &ListItem, placeholder: &str) -> StyledLine {
        self.render_line(|column| {
            column.render_cell(
                item,
                &self.status_position_mask,
                &self.main_worktree_path,
                self.max_message_len,
                self.max_summary_len,
                placeholder,
            )
        })
    }

    /// Render a skeleton row showing known data (branch, path) with placeholders for other columns.
    ///
    /// Used for both worktrees and branch-only items; branch-only rows render an empty path
    /// and a blank gutter placeholder.
    pub fn render_skeleton_row(&self, item: &ListItem) -> StyledLine {
        let branch = item.branch_name();
        let wt_data = item.worktree_data();
        let shortened_path = item
            .worktree_path()
            .map(|p| shorten_path(p, &self.main_worktree_path))
            .unwrap_or_default();

        let dim = Style::new().dimmed();
        let spinner = self.placeholder.get();

        self.render_line(|col| {
            let mut cell = StyledLine::new();

            match col.kind {
                ColumnKind::Gutter => {
                    // Skeleton shows placeholder gutter - actual symbols (including is_previous)
                    // appear when WorktreeData is populated post-skeleton.
                    // Uses the current placeholder so the 200ms blank-reveal flow
                    // keeps the gutter in lockstep with the data columns.
                    let symbol = if wt_data.is_some() {
                        format!("{spinner} ") // Placeholder for worktrees
                    } else {
                        "  ".to_string() // Branch without worktree (two spaces to match width)
                    };
                    cell.push_styled(symbol, dim);
                }
                ColumnKind::Branch => {
                    // Show actual branch name (no dim - start normal, gray out later if removable)
                    cell.push_raw(branch.to_string());
                    cell.pad_to(col.width);
                }
                ColumnKind::Path => {
                    // Show actual path (no dim - start normal, gray out later if removable)
                    cell.push_raw(&shortened_path);
                    cell.pad_to(col.width);
                }
                ColumnKind::Commit => {
                    // Show actual commit hash (empty for unborn branches with null OID)
                    let head = item.head();
                    if head != worktrunk::git::NULL_OID {
                        let short_head = &head[..8.min(head.len())];
                        cell.push_styled(short_head, dim);
                    }
                }
                _ => {
                    // Show spinner for data columns (placeholder_cell handles alignment)
                    return col.placeholder_cell(spinner);
                }
            }

            cell
        })
    }
}

impl ColumnLayout {
    /// Render a placeholder indicator (loading or skipped state).
    /// Right-aligns for diff columns, left-aligns otherwise.
    fn placeholder_cell(&self, symbol: &str) -> StyledLine {
        let mut cell = StyledLine::new();
        if matches!(self.format, ColumnFormat::Diff(_)) {
            let padding = self.width.saturating_sub(symbol.width());
            cell.push_raw(" ".repeat(padding));
        }
        cell.push_styled(symbol, Style::new().dimmed());
        cell
    }

    /// Render a text cell with optional style, truncated to column width.
    fn render_text_cell(&self, text: &str, style: Option<Style>) -> StyledLine {
        let mut cell = StyledLine::new();
        if let Some(s) = style {
            cell.push_styled(text.to_string(), s);
        } else {
            cell.push_raw(text.to_string());
        }
        cell.truncate_to_width(self.width)
    }

    fn render_diff_cell(&self, positive: usize, negative: usize) -> StyledLine {
        let ColumnFormat::Diff(config) = self.format else {
            return StyledLine::new();
        };

        debug_assert_eq!(config.total_width, self.width);

        config.render_segment(positive, negative)
    }

    fn render_cell(
        &self,
        item: &ListItem,
        status_mask: &PositionMask,
        main_worktree_path: &Path,
        max_message_len: usize,
        max_summary_len: usize,
        placeholder: &str,
    ) -> StyledLine {
        // Compute derived values inline (avoids separate context struct)
        let worktree_data = item.worktree_data();
        let text_style = item.should_dim().then(|| Style::new().dimmed());

        match self.kind {
            ColumnKind::Gutter => {
                let mut cell = StyledLine::new();
                let symbol = if let Some(data) = worktree_data {
                    // Priority: @ (current) > ^ (main) > + (regular, including previous)
                    if data.is_current {
                        "@ " // Current worktree
                    } else if data.is_main {
                        "^ " // Main worktree
                    } else {
                        "+ " // Regular worktree (including previous)
                    }
                } else {
                    "  " // Branch without worktree (two spaces to match width)
                };
                cell.push_raw(symbol.to_string());
                cell
            }
            ColumnKind::Branch => {
                let text = item.branch.as_deref().unwrap_or("-");
                self.render_text_cell(text, text_style)
            }
            ColumnKind::Status => {
                // `render_with_mask` emits the placeholder glyph per
                // position for unresolved gates, so a row whose Status
                // cell is partially loaded renders e.g. `+!  · ↕ | ·`
                // rather than a cell-level placeholder. The `placeholder`
                // arg comes from `render_list_item_line` (`·` today — see
                // `PLACEHOLDER`).
                let mut cell = StyledLine::new();
                cell.push_raw(
                    item.status_symbols
                        .render_with_mask(status_mask, placeholder),
                );
                let mut cell = cell.truncate_to_width(self.width);
                cell.pad_to(self.width);
                cell
            }
            ColumnKind::WorkingDiff => {
                let Some(data) = worktree_data else {
                    return StyledLine::new(); // Branch item — no working tree
                };
                let Some(diff) = data.working_tree_diff.as_ref() else {
                    return self.placeholder_cell(placeholder); // Not loaded yet
                };
                self.render_diff_cell(diff.added, diff.deleted)
            }
            ColumnKind::AheadBehind => {
                if item.is_main() {
                    return StyledLine::new();
                }
                match item.counts {
                    Some(counts) if counts.ahead == 0 && counts.behind == 0 => StyledLine::new(),
                    Some(counts) => self.render_diff_cell(counts.ahead, counts.behind),
                    None => self.placeholder_cell(placeholder), // Not loaded yet
                }
            }
            ColumnKind::BranchDiff => {
                if item.is_main() {
                    return StyledLine::new();
                }
                match item.branch_diff() {
                    Some(bd) => self.render_diff_cell(bd.diff.added, bd.diff.deleted),
                    None => self.placeholder_cell(placeholder),
                }
            }
            ColumnKind::Path => {
                let Some(data) = worktree_data else {
                    return StyledLine::new();
                };
                let path_str = shorten_path(&data.path, main_worktree_path);
                self.render_text_cell(&path_str, text_style)
            }
            ColumnKind::Upstream => {
                let Some(ref upstream) = item.upstream else {
                    return self.placeholder_cell(placeholder); // Not loaded yet
                };
                let Some(active) = upstream.active() else {
                    return StyledLine::new(); // Loaded, no active upstream
                };
                // Show centered | when in sync instead of ⇡0  ⇣0
                // Note: This duplicates the InSync check from Divergence::Special, but
                // checking counts directly is simpler than threading the enum through.
                if active.ahead == 0 && active.behind == 0 {
                    let mut cell = StyledLine::new();
                    // Center the symbol in the column width
                    let padding_left = (self.width.saturating_sub(1)) / 2;
                    cell.push_raw(" ".repeat(padding_left));
                    cell.push_styled("|", Style::new().dimmed());
                    return cell;
                }
                self.render_diff_cell(active.ahead, active.behind)
            }
            ColumnKind::Time => {
                let Some(ref commit) = item.commit else {
                    return self.placeholder_cell(placeholder);
                };
                let mut cell = StyledLine::new();
                cell.push_styled(
                    format_relative_time_short(commit.timestamp),
                    Style::new().dimmed(),
                );
                cell
            }
            ColumnKind::Url => {
                // URL column: shows dev server URL from project config template
                // - When hyperlinks supported: show ":port" as clickable link
                // - When hyperlinks not supported: show full URL
                // - dim if not available/active, normal if active
                let Some(url) = &item.url else {
                    return StyledLine::new();
                };
                let mut cell = StyledLine::new();
                let formatted = format_url_cell(url);
                if item.url_active == Some(true) {
                    cell.push_raw(formatted);
                } else {
                    // Not active or unknown: dim styling
                    cell.push_styled(formatted, Style::new().dimmed());
                }
                cell.truncate_to_width(self.width)
            }
            ColumnKind::CiStatus => {
                // Check display field first for pending indicators during progressive rendering
                // (works for both worktrees and branches)
                if let Some(ref ci_display) = item.display.ci_status_display {
                    let mut cell = StyledLine::new();
                    // ci_status_display contains pre-formatted ANSI text (either actual status or the placeholder)
                    cell.push_raw(ci_display.clone());
                    return cell;
                }

                match &item.pr_status {
                    None => self.placeholder_cell(placeholder),
                    Some(None) => StyledLine::new(), // No CI for this branch
                    Some(Some(pr_status)) => {
                        let mut cell = StyledLine::new();
                        cell.push_raw(
                            pr_status.format_indicator(supports_hyperlinks(Stream::Stdout)),
                        );
                        cell
                    }
                }
            }
            ColumnKind::Commit => {
                let head = item.head();
                if head == worktrunk::git::NULL_OID {
                    self.render_text_cell("", None)
                } else {
                    let short_head = &head[..8.min(head.len())];
                    self.render_text_cell(short_head, Some(Style::new().dimmed()))
                }
            }
            ColumnKind::Summary => match &item.summary {
                None => self.placeholder_cell(placeholder),
                Some(None) => StyledLine::new(),
                Some(Some(summary)) => {
                    let mut cell = StyledLine::new();
                    let msg = truncate_to_width(summary, max_summary_len);
                    cell.push_styled(msg, Style::new());
                    cell
                }
            },
            ColumnKind::Message => {
                let Some(ref commit) = item.commit else {
                    return self.placeholder_cell(placeholder);
                };
                let mut cell = StyledLine::new();
                let msg = truncate_to_width(&commit.commit_message, max_message_len);
                cell.push_styled(msg, Style::new().dimmed());
                cell
            }
        }
    }
}

/// Format URL cell with optional hyperlink.
///
/// When the terminal supports OSC 8 hyperlinks, shows just the port (e.g., `:3000`)
/// as a clickable link. Otherwise, shows the full URL.
fn format_url_cell(url: &str) -> String {
    if supports_hyperlinks(Stream::Stdout) {
        // Extract port from URL for compact display
        if let Some(port) = parse_port_from_url(url) {
            return hyperlink_stdout(url, &format!(":{port}"));
        }
    }
    // Fallback: show full URL
    url.to_string()
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::commands::list::layout::DiffDisplayConfig;
    use ansi_str::AnsiStr;
    use worktrunk::styling::{ADDITION, DELETION};

    fn format_diff_like_column(
        positive: usize,
        negative: usize,
        config: DiffColumnConfig,
    ) -> StyledLine {
        config.render_segment(positive, negative)
    }

    #[test]
    #[cfg(unix)] // format_aligned is unix-only
    fn test_format_aligned_produces_fixed_width_output() {
        use super::super::columns::DiffVariant;

        let config = DiffDisplayConfig {
            variant: DiffVariant::Signs,
            positive_style: ADDITION,
            negative_style: DELETION,
            always_show_zeros: false,
        };

        // Test various values
        let result1 = config.format_aligned(310, 112);
        let result2 = config.format_aligned(54, 63);
        let result3 = config.format_aligned(9, 3);

        // All should have the same width (3 + 1 + 3 + 1 + 3 = 9 chars for "+NNN -NNN")
        let clean1 = result1.ansi_strip().into_owned();
        let clean2 = result2.ansi_strip().into_owned();
        let clean3 = result3.ansi_strip().into_owned();

        assert_eq!(
            clean1.len(),
            clean2.len(),
            "All aligned outputs should have same width"
        );
        assert_eq!(
            clean2.len(),
            clean3.len(),
            "All aligned outputs should have same width"
        );

        // Verify right-alignment: smaller numbers have leading spaces
        assert!(
            clean2.starts_with(' '),
            "54 should have leading space: '{}'",
            clean2
        );
        assert!(
            clean3.starts_with(' '),
            "9 should have leading spaces: '{}'",
            clean3
        );
    }

    #[test]
    #[cfg(unix)] // format_aligned is unix-only
    fn test_format_aligned_handles_single_side() {
        use super::super::columns::DiffVariant;

        let config = DiffDisplayConfig {
            variant: DiffVariant::Signs,
            positive_style: ADDITION,
            negative_style: DELETION,
            always_show_zeros: false,
        };

        // Insertions only
        let ins_only = config.format_aligned(447, 0);
        let clean_ins = ins_only.ansi_strip().into_owned();
        assert!(
            clean_ins.contains("+447"),
            "Should contain +447: '{}'",
            clean_ins
        );

        // Deletions only
        let del_only = config.format_aligned(0, 5);
        let clean_del = del_only.ansi_strip().into_owned();
        assert!(
            clean_del.contains("-5"),
            "Should contain -5: '{}'",
            clean_del
        );

        // Both should have same total width
        assert_eq!(
            clean_ins.len(),
            clean_del.len(),
            "Single-side outputs should match width"
        );
    }

    #[test]
    fn test_format_diff_column_pads_to_total_width() {
        use super::super::columns::DiffVariant;

        // Case 1: Single-digit diffs with total=6 (to fit "WT +/-" header)
        let total = 6;
        let result = format_diff_like_column(
            1,
            1,
            DiffColumnConfig {
                positive_digits: 1,
                negative_digits: 1,
                total_width: total,
                display: DiffDisplayConfig {
                    variant: DiffVariant::Signs,
                    positive_style: ADDITION,
                    negative_style: DELETION,
                    always_show_zeros: false,
                },
            },
        );
        assert_eq!(
            result.width(),
            total,
            "Diff '+1 -1' should be padded to 6 chars"
        );

        // Case 2: Two-digit diffs with total=8
        let total = 8;
        let result = format_diff_like_column(
            10,
            50,
            DiffColumnConfig {
                positive_digits: 2,
                negative_digits: 2,
                total_width: total,
                display: DiffDisplayConfig {
                    variant: DiffVariant::Signs,
                    positive_style: ADDITION,
                    negative_style: DELETION,
                    always_show_zeros: false,
                },
            },
        );
        assert_eq!(
            result.width(),
            total,
            "Diff '+10 -50' should be padded to 8 chars"
        );

        // Case 3: Asymmetric digit counts with total=9
        let total = 9;
        let result = format_diff_like_column(
            100,
            50,
            DiffColumnConfig {
                positive_digits: 3,
                negative_digits: 2,
                total_width: total,
                display: DiffDisplayConfig {
                    variant: DiffVariant::Signs,
                    positive_style: ADDITION,
                    negative_style: DELETION,
                    always_show_zeros: false,
                },
            },
        );
        assert_eq!(
            result.width(),
            total,
            "Diff '+100 -50' should be padded to 9 chars"
        );

        // Case 4: Zero diff should also pad to total width
        let total = 6;
        let result = format_diff_like_column(
            0,
            0,
            DiffColumnConfig {
                positive_digits: 1,
                negative_digits: 1,
                total_width: total,
                display: DiffDisplayConfig {
                    variant: DiffVariant::Signs,
                    positive_style: ADDITION,
                    negative_style: DELETION,
                    always_show_zeros: false,
                },
            },
        );
        assert_eq!(result.width(), total, "Empty diff should be 6 spaces");
    }

    #[test]
    fn test_format_diff_column_right_alignment() {
        // Test that diff values are right-aligned within the total width
        use super::super::columns::DiffVariant;

        let total = 6;

        let result = format_diff_like_column(
            1,
            1,
            DiffColumnConfig {
                positive_digits: 1,
                negative_digits: 1,
                total_width: total,
                display: DiffDisplayConfig {
                    variant: DiffVariant::Signs,
                    positive_style: ADDITION,
                    negative_style: DELETION,
                    always_show_zeros: false,
                },
            },
        );
        let rendered = result.render();

        // Strip ANSI codes to check alignment
        let clean = rendered.ansi_strip().into_owned();

        // Should be " +1 -1" (with leading space for right-alignment)
        assert_eq!(clean, " +1 -1", "Diff should be right-aligned");
    }

    #[test]
    fn test_message_padding_with_unicode() {
        use unicode_width::UnicodeWidthStr;

        // Test that messages with wide unicode characters (emojis, CJK) are padded correctly

        // Case 1: Message with emoji (☕ takes 2 visual columns but 1 character)
        let msg_with_emoji = "Fix bug with café ☕...";
        assert_eq!(
            msg_with_emoji.chars().count(),
            22,
            "Emoji message should be 22 characters"
        );
        assert_eq!(
            msg_with_emoji.width(),
            23,
            "Emoji message should have visual width 23"
        );

        let mut line = StyledLine::new();
        let msg_start = line.width(); // 0
        line.push_styled(msg_with_emoji.to_string(), Style::new().dimmed());
        line.pad_to(msg_start + 24); // Pad to width 24

        // After padding, line should have visual width 24
        assert_eq!(
            line.width(),
            24,
            "Line with emoji should be padded to visual width 24"
        );

        // The rendered output should have correct spacing
        let rendered = line.render();
        let clean = rendered.ansi_strip().into_owned();
        assert_eq!(
            clean.width(),
            24,
            "Rendered line should have visual width 24"
        );

        // Case 2: Message with only ASCII should also pad to 24
        let msg_ascii = "Add support for...";
        assert_eq!(
            msg_ascii.width(),
            18,
            "ASCII message should have visual width 18"
        );

        let mut line2 = StyledLine::new();
        let msg_start2 = line2.width();
        line2.push_styled(msg_ascii.to_string(), Style::new().dimmed());
        line2.pad_to(msg_start2 + 24);

        assert_eq!(
            line2.width(),
            24,
            "Line with ASCII should be padded to visual width 24"
        );

        // Both should have the same visual width
        assert_eq!(
            line.width(),
            line2.width(),
            "Unicode and ASCII messages should pad to same visual width"
        );
    }

    #[test]
    fn test_branch_name_padding_with_unicode() {
        use unicode_width::UnicodeWidthStr;

        // Test that branch names with unicode are padded correctly

        // Case 1: Branch with Japanese characters (each takes 2 visual columns)
        let branch_ja = "feature-日本語-test";
        // "feature-" (8) + "日本語" (6 visual, 3 chars) + "-test" (5) = 19 visual width
        assert_eq!(branch_ja.width(), 19);

        let mut line1 = StyledLine::new();
        line1.push_styled(branch_ja.to_string(), Style::new().bold());
        line1.pad_to(20); // Pad to width 20

        assert_eq!(line1.width(), 20);

        // Case 2: Regular ASCII branch
        let branch_ascii = "feature-test";
        assert_eq!(branch_ascii.width(), 12);

        let mut line2 = StyledLine::new();
        line2.push_styled(branch_ascii.to_string(), Style::new().bold());
        line2.pad_to(20);

        assert_eq!(line2.width(), 20);

        // Both should have the same visual width after padding
        assert_eq!(
            line1.width(),
            line2.width(),
            "Unicode and ASCII branches should pad to same visual width"
        );
    }

    #[test]
    fn test_arrow_variant_alignment_invariant() {
        use super::super::columns::DiffVariant;
        use worktrunk::styling::{ADDITION, DELETION};

        let total = 7;

        let dim_deletion = DELETION.dimmed();
        let cases = [(0, 0), (1, 0), (0, 1), (1, 1), (99, 99), (5, 44)];

        for (ahead, behind) in cases {
            let result = format_diff_like_column(
                ahead,
                behind,
                DiffColumnConfig {
                    positive_digits: 2,
                    negative_digits: 2,
                    total_width: total,
                    display: DiffDisplayConfig {
                        variant: DiffVariant::Arrows,
                        positive_style: ADDITION,
                        negative_style: dim_deletion,
                        always_show_zeros: false,
                    },
                },
            );
            assert_eq!(result.width(), total);
        }
    }

    #[test]
    fn test_arrow_variant_respects_header_width() {
        use super::super::columns::DiffVariant;
        use worktrunk::styling::{ADDITION, DELETION};

        let total = 7;

        let dim_deletion = DELETION.dimmed();

        let empty = format_diff_like_column(
            0,
            0,
            DiffColumnConfig {
                positive_digits: 0,
                negative_digits: 2,
                total_width: total,
                display: DiffDisplayConfig {
                    variant: DiffVariant::Arrows,
                    positive_style: ADDITION,
                    negative_style: dim_deletion,
                    always_show_zeros: false,
                },
            },
        );
        assert_eq!(empty.width(), total);

        let behind_only = format_diff_like_column(
            0,
            50,
            DiffColumnConfig {
                positive_digits: 0,
                negative_digits: 2,
                total_width: total,
                display: DiffDisplayConfig {
                    variant: DiffVariant::Arrows,
                    positive_style: ADDITION,
                    negative_style: dim_deletion,
                    always_show_zeros: false,
                },
            },
        );
        assert_eq!(behind_only.width(), total);
    }

    #[test]
    fn test_always_show_zeros_renders_zero_values() {
        use super::super::columns::DiffVariant;
        use worktrunk::styling::{ADDITION, DELETION};

        let total = 7;

        let dim_deletion = DELETION.dimmed();

        // With always_show_zeros=false, (0, 0) renders as blank
        let without = format_diff_like_column(
            0,
            0,
            DiffColumnConfig {
                positive_digits: 1,
                negative_digits: 1,
                total_width: total,
                display: DiffDisplayConfig {
                    variant: DiffVariant::Arrows,
                    positive_style: ADDITION,
                    negative_style: dim_deletion,
                    always_show_zeros: false,
                },
            },
        );
        assert_eq!(without.width(), total);
        let rendered_without = without.render();
        let clean_without = rendered_without.ansi_strip().into_owned();
        assert_eq!(clean_without, "       ");

        // With always_show_zeros=true, (0, 0) renders as "↑0 ↓0"
        let with = format_diff_like_column(
            0,
            0,
            DiffColumnConfig {
                positive_digits: 1,
                negative_digits: 1,
                total_width: total,
                display: DiffDisplayConfig {
                    variant: DiffVariant::Arrows,
                    positive_style: ADDITION,
                    negative_style: dim_deletion,
                    always_show_zeros: true,
                },
            },
        );
        assert_eq!(with.width(), total);
        let rendered_with = with.render();
        let clean_with = rendered_with.ansi_strip().into_owned();
        assert_eq!(
            clean_with, "  ↑0 ↓0",
            "Should render ↑0 ↓0 with padding (right-aligned)"
        );
    }

    #[test]
    fn test_status_column_padding_with_emoji() {
        use unicode_width::UnicodeWidthStr;

        // Test that status column with emoji is padded correctly using visual width
        // This reproduces the issue where "↑🤖" was misaligned

        // Case 1: Status with emoji (↑ is 1 column, 🤖 is 2 columns = 3 total)
        let status_with_emoji = "↑🤖";
        assert_eq!(
            status_with_emoji.width(),
            3,
            "Status '↑🤖' should have visual width 3"
        );

        let mut line1 = StyledLine::new();
        let status_start = line1.width(); // 0
        line1.push_raw(status_with_emoji.to_string());
        line1.pad_to(status_start + 6); // Pad to width 6 (typical Status column width)

        assert_eq!(line1.width(), 6);

        // Case 2: Status with only ASCII symbols (↑ is 1 column = 1 total)
        let status_ascii = "";
        assert_eq!(
            status_ascii.width(),
            1,
            "Status '↑' should have visual width 1"
        );

        let mut line2 = StyledLine::new();
        let status_start2 = line2.width();
        line2.push_raw(status_ascii.to_string());
        line2.pad_to(status_start2 + 6);

        assert_eq!(line2.width(), 6);

        // Both should have the same visual width after padding
        assert_eq!(
            line1.width(),
            line2.width(),
            "Unicode and ASCII status should pad to same visual width"
        );

        // Case 3: Complex status with multiple emoji (git symbols + user marker)
        let complex_status = "↑⇡🤖📝";
        // ↑ (1) + ⇡ (1) + 🤖 (2) + 📝 (2) = 6 visual columns
        assert_eq!(
            complex_status.width(),
            6,
            "Complex status should have visual width 6"
        );

        let mut line3 = StyledLine::new();
        let status_start3 = line3.width();
        line3.push_raw(complex_status.to_string());
        line3.pad_to(status_start3 + 10); // Pad to width 10

        assert_eq!(line3.width(), 10);
    }

    #[test]
    fn test_diff_column_numeric_right_alignment() {
        use super::super::columns::DiffVariant;

        // Test that numbers are right-aligned on the ones column
        // When we have 2-digit allocation but use 1-digit values, they should have leading space
        let total = 8; // 3 (added) + 1 (separator) + 3 (deleted) + 1 (leading padding)

        // Test case 1: (53, 7) - large added, small deleted
        let result1 = format_diff_like_column(
            53,
            7,
            DiffColumnConfig {
                positive_digits: 2, // Allocates 3 chars: "+NN"
                negative_digits: 2,
                total_width: total,
                display: DiffDisplayConfig {
                    variant: DiffVariant::Signs,
                    positive_style: ADDITION,
                    negative_style: DELETION,
                    always_show_zeros: false,
                },
            },
        );
        let rendered1 = result1.render();
        let clean1 = rendered1.ansi_strip().into_owned();
        assert_eq!(clean1, " +53  -7");

        // Test case 2: (33, 23) - both medium
        let result2 = format_diff_like_column(
            33,
            23,
            DiffColumnConfig {
                positive_digits: 2,
                negative_digits: 2,
                total_width: total,
                display: DiffDisplayConfig {
                    variant: DiffVariant::Signs,
                    positive_style: ADDITION,
                    negative_style: DELETION,
                    always_show_zeros: false,
                },
            },
        );
        let rendered2 = result2.render();
        let clean2 = rendered2.ansi_strip().into_owned();
        assert_eq!(clean2, " +33 -23");

        // Test case 3: (2, 2) - both small (needs padding)
        let result3 = format_diff_like_column(
            2,
            2,
            DiffColumnConfig {
                positive_digits: 2,
                negative_digits: 2,
                total_width: total,
                display: DiffDisplayConfig {
                    variant: DiffVariant::Signs,
                    positive_style: ADDITION,
                    negative_style: DELETION,
                    always_show_zeros: false,
                },
            },
        );
        let rendered3 = result3.render();
        let clean3 = rendered3.ansi_strip().into_owned();
        assert_eq!(clean3, "  +2  -2");

        // Verify vertical alignment: the ones digits should be in the same column
        // The ones digit should be at position 3 for all cases (with 2-digit allocation)
        // ' +53  -7' -> position 3 is '3'
        // ' +33 -23' -> position 3 is '3' (second '3', the ones digit)
        // '  +2  -2' -> position 3 is '2'
        let ones_pos = 3;
        assert_eq!(
            clean1.chars().nth(ones_pos).unwrap(),
            '3',
            "Ones digit of 53 should be at position {ones_pos}"
        );
        assert_eq!(
            clean2.chars().nth(ones_pos).unwrap(),
            '3',
            "Ones digit of 33 should be at position {ones_pos}"
        );
        assert_eq!(
            clean3.chars().nth(ones_pos).unwrap(),
            '2',
            "Ones digit of 2 should be at position {ones_pos}"
        );
    }

    #[test]
    fn test_diff_column_overflow_handling() {
        use super::super::columns::DiffVariant;

        // Test overflow with Signs variant (+ and -)
        // Allocated: 3 digits for added, 3 digits for deleted (total width 9)
        // Max value: 999
        let total = 9;

        // Case 1: Value just within limit (should render normally)
        let result = format_diff_like_column(
            999,
            999,
            DiffColumnConfig {
                positive_digits: 3,
                negative_digits: 3,
                total_width: total,
                display: DiffDisplayConfig {
                    variant: DiffVariant::Signs,
                    positive_style: ADDITION,
                    negative_style: DELETION,
                    always_show_zeros: false,
                },
            },
        );
        assert_eq!(result.width(), total);
        insta::assert_snapshot!(result.render(), @"+999 -999");

        // Case 2: Positive overflow (1000 exceeds 3 digits)
        // Should show: "+1K -500" (positive with K suffix, negative normal)
        let overflow_result = format_diff_like_column(
            1000,
            500,
            DiffColumnConfig {
                positive_digits: 3,
                negative_digits: 3,
                total_width: total,
                display: DiffDisplayConfig {
                    variant: DiffVariant::Signs,
                    positive_style: ADDITION,
                    negative_style: DELETION,
                    always_show_zeros: false,
                },
            },
        );
        assert_eq!(overflow_result.width(), total);
        insta::assert_snapshot!(overflow_result.render(), @" +1K -500");

        // Case 3: Negative overflow
        // Should show: "+500 -1K" (positive normal, negative with K suffix)
        let overflow_result2 = format_diff_like_column(
            500,
            1000,
            DiffColumnConfig {
                positive_digits: 3,
                negative_digits: 3,
                total_width: total,
                display: DiffDisplayConfig {
                    variant: DiffVariant::Signs,
                    positive_style: ADDITION,
                    negative_style: DELETION,
                    always_show_zeros: false,
                },
            },
        );
        assert_eq!(overflow_result2.width(), total);
        insta::assert_snapshot!(overflow_result2.render(), @"+500  -1K");

        // Case 4: Extreme overflow (>= 10K values show ∞ to avoid false precision)
        let extreme_overflow = format_diff_like_column(
            100_000,
            200_000,
            DiffColumnConfig {
                positive_digits: 3,
                negative_digits: 3,
                total_width: total,
                display: DiffDisplayConfig {
                    variant: DiffVariant::Signs,
                    positive_style: ADDITION,
                    negative_style: DELETION,
                    always_show_zeros: false,
                },
            },
        );
        assert_eq!(
            extreme_overflow.width(),
            total,
            "100K overflow should fit in allocated width"
        );
        insta::assert_snapshot!(extreme_overflow.render(), @"  +∞   -∞");

        // Test overflow with Arrows variant (↑ and ↓)
        let arrow_total = 7;

        // Case 5: Arrow positive overflow (100 exceeds 2 digits, max is 99)
        // Should show with K suffix (not repeated symbols)
        let arrow_overflow = format_diff_like_column(
            1000, // Use larger value to show K suffix
            50,
            DiffColumnConfig {
                positive_digits: 2,
                negative_digits: 2,
                total_width: arrow_total,
                display: DiffDisplayConfig {
                    variant: DiffVariant::Arrows,
                    positive_style: ADDITION,
                    negative_style: DELETION,
                    always_show_zeros: false,
                },
            },
        );
        assert_eq!(arrow_overflow.width(), arrow_total);
        insta::assert_snapshot!(arrow_overflow.render(), @"↑1K ↓50");

        // Case 6: Arrow negative overflow
        // Should show with K suffix
        let arrow_overflow2 = format_diff_like_column(
            50,
            1000, // Use larger value to show K suffix
            DiffColumnConfig {
                positive_digits: 2,
                negative_digits: 2,
                total_width: arrow_total,
                display: DiffDisplayConfig {
                    variant: DiffVariant::Arrows,
                    positive_style: ADDITION,
                    negative_style: DELETION,
                    always_show_zeros: false,
                },
            },
        );
        assert_eq!(arrow_overflow2.width(), arrow_total);
        insta::assert_snapshot!(arrow_overflow2.render(), @"↑50 ↓1K");
    }

    #[test]
    fn test_loading_uses_middle_dot() {
        use super::super::layout::{ColumnLayout, LayoutConfig};
        use super::super::model::{ListItem, PositionMask};
        use std::path::PathBuf;

        let layout = LayoutConfig {
            columns: vec![ColumnLayout {
                kind: ColumnKind::Summary,
                header: "Summary",
                start: 0,
                width: 10,
                format: ColumnFormat::Text,
            }],
            main_worktree_path: PathBuf::from("/tmp"),
            max_message_len: 0,
            max_summary_len: 10,
            hidden_column_count: 0,
            status_position_mask: PositionMask::FULL,
            placeholder: std::cell::Cell::new(PLACEHOLDER),
        };

        let item = ListItem::new_branch("abc123".into(), "feat".into());

        let line = layout.render_list_item_line(&item).render();
        assert!(line.contains('·'), "expected `·` in: {line}");
        assert!(!line.contains(''), "unexpected `⋯` in: {line}");
    }

    #[test]
    fn test_summary_column_rendering() {
        use super::super::layout::ColumnLayout;
        use super::super::model::{ListItem, PositionMask};
        use std::path::PathBuf;

        let summary_col = ColumnLayout {
            kind: ColumnKind::Summary,
            header: "Summary",
            start: 0,
            width: 40,
            format: ColumnFormat::Text,
        };

        let mask = PositionMask::FULL;
        let main_path = PathBuf::from("/tmp");

        // Case 1: summary = None (not loaded yet → placeholder)
        let mut item = ListItem::new_branch("abc123".into(), "feat".into());
        item.summary = None;
        let cell = summary_col.render_cell(&item, &mask, &main_path, 50, 40, PLACEHOLDER);
        insta::assert_snapshot!(cell.render(), @"·");

        // Case 2: summary = Some(None) (loaded, no summary → blank)
        item.summary = Some(None);
        let cell = summary_col.render_cell(&item, &mask, &main_path, 50, 40, PLACEHOLDER);
        assert!(cell.render().is_empty());

        // Case 3: summary = Some(Some(text)) (has summary)
        item.summary = Some(Some("Add user authentication".into()));
        let cell = summary_col.render_cell(&item, &mask, &main_path, 50, 40, PLACEHOLDER);
        insta::assert_snapshot!(cell.render(), @"Add user authentication");
    }

    #[test]
    fn test_working_diff_placeholder_when_not_loaded() {
        use super::super::layout::ColumnLayout;
        use super::super::model::{ItemKind, ListItem, PositionMask};
        use std::path::PathBuf;
        use worktrunk::styling::{ADDITION, DELETION};

        let col = ColumnLayout {
            kind: ColumnKind::WorkingDiff,
            header: "Working",
            start: 0,
            width: 9,
            format: ColumnFormat::Diff(DiffColumnConfig {
                positive_digits: 3,
                negative_digits: 3,
                total_width: 9,
                display: DiffDisplayConfig {
                    variant: super::super::columns::DiffVariant::Signs,
                    positive_style: ADDITION,
                    negative_style: DELETION,
                    always_show_zeros: false,
                },
            }),
        };

        let mask = PositionMask::FULL;
        let main_path = PathBuf::from("/tmp");

        // Branch item (no worktree data) → blank, not placeholder
        let branch_item = ListItem::new_branch("abc123".into(), "feat".into());
        let cell = col.render_cell(&branch_item, &mask, &main_path, 50, 40, PLACEHOLDER);
        assert!(cell.render().is_empty(), "branch item should be blank");

        // Worktree item with working_tree_diff: None → placeholder
        let mut wt_item = ListItem::new_branch("abc123".into(), "feat".into());
        wt_item.kind = ItemKind::Worktree(Box::default());
        let cell = col.render_cell(&wt_item, &mask, &main_path, 50, 40, PLACEHOLDER);
        insta::assert_snapshot!(cell.render(), @"        ·");

        // Stale placeholder
        let cell = col.render_cell(&wt_item, &mask, &main_path, 50, 40, "·");
        insta::assert_snapshot!(cell.render(), @"        ·");
    }

    #[test]
    fn test_upstream_placeholder_when_not_loaded() {
        use super::super::layout::ColumnLayout;
        use super::super::model::{ListItem, PositionMask, UpstreamStatus};
        use std::path::PathBuf;
        use worktrunk::styling::{ADDITION, DELETION};

        let col = ColumnLayout {
            kind: ColumnKind::Upstream,
            header: "Remote⇅",
            start: 0,
            width: 7,
            format: ColumnFormat::Diff(DiffColumnConfig {
                positive_digits: 2,
                negative_digits: 2,
                total_width: 7,
                display: DiffDisplayConfig {
                    variant: super::super::columns::DiffVariant::UpstreamArrows,
                    positive_style: ADDITION,
                    negative_style: DELETION.dimmed(),
                    always_show_zeros: false,
                },
            }),
        };

        let mask = PositionMask::FULL;
        let main_path = PathBuf::from("/tmp");

        // upstream: None (not loaded) → placeholder
        let item = ListItem::new_branch("abc123".into(), "feat".into());
        assert!(item.upstream.is_none());
        let cell = col.render_cell(&item, &mask, &main_path, 50, 40, PLACEHOLDER);
        insta::assert_snapshot!(cell.render(), @"      ·");

        // upstream: Some(default) (loaded, no active upstream) → blank
        let mut item = ListItem::new_branch("abc123".into(), "feat".into());
        item.upstream = Some(UpstreamStatus::default());
        let cell = col.render_cell(&item, &mask, &main_path, 50, 40, PLACEHOLDER);
        assert!(
            cell.render().is_empty(),
            "no active upstream should be blank"
        );
    }
}