stax 0.96.5

Fast stacked Git branches and PRs
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
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
use crate::application::{
    BranchDetails, BranchDiff, BranchSummary, CiSummary, DiffLine, DiffStatLine, OperationRequest,
    RepositorySession,
};
use crate::cache::{TuiPaneVisibilityState, TuiStateCache};
use crate::engine::{Stack, StackSnapshot, build_parent_candidates};
use crate::git::GitRepo;
use anyhow::Result;
use chrono::Utc;
use std::collections::HashMap;
use std::path::PathBuf;
use std::sync::mpsc::{self, Receiver, TryRecvError};
use std::thread;
use std::time::{Duration, Instant};

const CI_ACTIVE_REFRESH_INTERVAL: Duration = Duration::from_secs(15);
const CI_IDLE_REFRESH_INTERVAL: Duration = Duration::from_secs(120);
const CI_ERROR_RETRY_INTERVAL: Duration = Duration::from_secs(60);

#[derive(Debug, Clone, PartialEq, Eq)]
struct DiffRequest {
    branch: String,
    parent: String,
    key: String,
}

impl DiffRequest {
    fn new(branch: String, parent: String) -> Self {
        let key = format!("{}...{}", parent, branch);
        Self {
            branch,
            parent,
            key,
        }
    }
}

#[derive(Debug)]
enum DiffUpdate {
    Loaded {
        request: DiffRequest,
        diff: BranchDiff,
    },
    Unavailable {
        request: DiffRequest,
    },
}

#[derive(Debug)]
enum BranchDetailsUpdate {
    Loaded {
        branch: String,
        details: BranchDetails,
    },
    Unavailable {
        branch: String,
        message: String,
    },
    Done,
}

#[derive(Debug, Clone)]
pub enum BranchCiState {
    Loading,
    Ready {
        summary: CiSummary,
        fetched_at: Instant,
    },
    Unavailable {
        message: String,
        fetched_at: Instant,
    },
}

#[derive(Debug)]
enum CiUpdate {
    Loaded { branch: String, summary: CiSummary },
    Unavailable { branch: String, message: String },
}

/// Branch display information for the TUI
#[derive(Debug, Clone)]
pub struct BranchDisplay {
    pub name: String,
    pub parent: Option<String>,
    pub column: usize,
    pub is_current: bool,
    pub is_trunk: bool,
    pub ahead: usize,  // commits ahead of parent
    pub behind: usize, // commits behind parent
    pub needs_restack: bool,
    pub has_remote: bool,
    pub unpushed: usize, // commits ahead of remote (unpushed)
    pub unpulled: usize, // commits behind remote (unpulled)
    pub pr_number: Option<u64>,
    pub pr_state: Option<String>,
    pub ci_state: Option<String>,
    pub commits: Vec<String>,
    pub details_loaded: bool,
    pub details_error: Option<String>,
}

impl BranchDisplay {
    fn from_summary(summary: BranchSummary) -> Self {
        Self {
            name: summary.name,
            parent: summary.parent,
            column: summary.column,
            is_current: summary.is_current,
            is_trunk: summary.is_trunk,
            ahead: 0,
            behind: 0,
            needs_restack: summary.needs_restack,
            has_remote: false,
            unpushed: 0,
            unpulled: 0,
            pr_number: summary.pr_number,
            pr_state: summary.pr_state,
            ci_state: summary.ci_state,
            commits: Vec::new(),
            details_loaded: summary.is_trunk,
            details_error: None,
        }
    }

    fn summary(&self) -> BranchSummary {
        BranchSummary {
            name: self.name.clone(),
            parent: self.parent.clone(),
            column: self.column,
            is_current: self.is_current,
            is_trunk: self.is_trunk,
            needs_restack: self.needs_restack,
            pr_number: self.pr_number,
            pr_state: self.pr_state.clone(),
            ci_state: self.ci_state.clone(),
        }
    }

    fn apply_details(&mut self, details: BranchDetails) {
        self.ahead = details.ahead;
        self.behind = details.behind;
        self.has_remote = details.has_remote;
        self.unpushed = details.unpushed;
        self.unpulled = details.unpulled;
        self.commits = details.commits;
        self.details_loaded = true;
        self.details_error = None;
    }
}

/// Which pane is focused
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub enum FocusedPane {
    #[default]
    Stack,
    Summary,
    Diff,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum TuiPane {
    Stack,
    Summary,
    Patch,
}

/// Runtime visibility for dashboard panes.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct PaneVisibility {
    pub stack: bool,
    pub summary: bool,
    pub patch: bool,
}

impl Default for PaneVisibility {
    fn default() -> Self {
        Self {
            stack: true,
            summary: true,
            patch: true,
        }
    }
}

impl PaneVisibility {
    pub fn is_visible(self, pane: TuiPane) -> bool {
        match pane {
            TuiPane::Stack => self.stack,
            TuiPane::Summary => self.summary,
            TuiPane::Patch => self.patch,
        }
    }

    fn set_visible(&mut self, pane: TuiPane, visible: bool) {
        match pane {
            TuiPane::Stack => self.stack = visible,
            TuiPane::Summary => self.summary = visible,
            TuiPane::Patch => self.patch = visible,
        }
    }

    pub fn visible_count(self) -> usize {
        [self.stack, self.summary, self.patch]
            .into_iter()
            .filter(|visible| *visible)
            .count()
    }

    fn from_persisted(state: TuiPaneVisibilityState) -> Self {
        let visibility = Self {
            stack: state.stack,
            summary: state.summary,
            patch: state.patch,
        };

        if visibility.visible_count() == 0 {
            Self::default()
        } else {
            visibility
        }
    }

    fn to_persisted(self) -> TuiPaneVisibilityState {
        TuiPaneVisibilityState {
            stack: self.stack,
            summary: self.summary,
            patch: self.patch,
        }
    }
}

/// Application mode
#[derive(Debug, Clone, PartialEq)]
pub enum Mode {
    Normal,
    Search,
    Help,
    Confirm(ConfirmAction),
    Input(InputAction),
    Reorder,
    /// Fuzzy-filter picker for selecting a new parent to reparent onto
    /// (`gt move` equivalent). Parallel to `Search` — chars type into the
    /// query, Enter confirms, Esc cancels.
    MovePicker,
}

/// Actions that require text input
#[derive(Debug, Clone, PartialEq)]
pub enum InputAction {
    Rename,
    NewBranch,
}

/// Actions that require confirmation
#[derive(Debug, Clone, PartialEq)]
pub enum ConfirmAction {
    Delete(String),
    Restack(String),
    RestackAll,
    ApplyReorder,
}

/// Information about a potential conflict
#[derive(Debug, Clone, PartialEq)]
pub struct ConflictInfo {
    pub file: String,
    pub branches_involved: Vec<String>,
}

/// Preview of what will happen during restack
#[derive(Debug, Clone, Default)]
pub struct ReorderPreview {
    /// branch name -> list of commit messages
    pub commits_to_rebase: Vec<(String, Vec<String>)>,
    /// potential conflicts detected
    pub potential_conflicts: Vec<ConflictInfo>,
}

/// Represents a branch and its parent in the stack chain
#[derive(Debug, Clone, PartialEq)]
pub struct StackChainEntry {
    pub name: String,
    pub parent: String,
}

/// State for reorder mode - reordering branches within a linear stack
#[derive(Debug, Clone)]
pub struct ReorderState {
    /// Original stack chain order (from trunk down) - list of (branch, parent) pairs
    pub original_chain: Vec<StackChainEntry>,
    /// New proposed chain order after reordering
    pub pending_chain: Vec<StackChainEntry>,
    /// Index of the branch being moved within the chain (0 = first branch after trunk)
    pub moving_index: usize,
    /// Computed preview of restack impact
    pub preview: ReorderPreview,
}

#[derive(Debug, Clone)]
pub struct PendingCommand {
    pub action: PendingAction,
    pub preferred_selection: Option<String>,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub enum PendingAction {
    Operation(OperationRequest),
}

/// Main application state
pub struct App {
    pub stack: Stack,
    pub repo: GitRepo,
    session: RepositorySession,
    diff_cache_dir: PathBuf,
    pub current_branch: String,
    pub selected_index: usize,
    pub branches: Vec<BranchDisplay>,
    pub mode: Mode,
    pub search_query: String,
    pub filtered_indices: Vec<usize>,
    pub input_buffer: String,
    pub input_cursor: usize,
    pub selected_diff: Vec<DiffLine>,
    pub diff_scroll: usize,
    pub focused_pane: FocusedPane,
    pub pane_visibility: PaneVisibility,
    pub diff_stat: Vec<DiffStatLine>,
    pub status_message: Option<String>,
    pub status_set_at: Option<Instant>,
    pub should_quit: bool,
    pub pending_command: Option<PendingCommand>,
    pub needs_refresh: bool,
    pub reorder_state: Option<ReorderState>,
    /// Branch being reparented (snapshot taken when MovePicker opens so the
    /// picker survives UI refreshes that change `selected_index`).
    pub move_picker_source: String,
    /// All eligible parent branches for the move (current + descendants
    /// already excluded). Never changes while the picker is open.
    pub move_picker_candidates: Vec<String>,
    /// User's substring query (case-insensitive match against candidates).
    pub move_picker_query: String,
    /// Index into the filtered view (see `move_picker_filtered_indices`).
    pub move_picker_selected: usize,
    diff_cache: HashMap<String, BranchDiff>,
    ci_states: HashMap<String, BranchCiState>,
    ci_loader: Option<Receiver<CiUpdate>>,
    ci_loading_branch: Option<String>,
    ci_queued_branch: Option<String>,
    branch_details_queued: bool,
    branch_details_loader: Option<Receiver<BranchDetailsUpdate>>,
    diff_loader: Option<Receiver<DiffUpdate>>,
    diff_loading: Option<DiffRequest>,
    diff_queued: Option<DiffRequest>,
}

impl App {
    pub fn new(
        initial_status: Option<String>,
        preferred_selection: Option<String>,
    ) -> Result<Self> {
        let repo = GitRepo::open()?;
        let session = RepositorySession::open(repo.workdir()?)?;
        let repository_snapshot = session.snapshot()?;
        let snapshot = StackSnapshot::load(&repo)?;
        let diff_cache_dir = repo.common_git_dir()?;
        let pane_visibility = TuiStateCache::load(&diff_cache_dir)
            .panes
            .map(PaneVisibility::from_persisted)
            .unwrap_or_default();
        let status_set_at = initial_status.as_ref().map(|_| Instant::now());
        let branches = repository_snapshot
            .branches
            .into_iter()
            .map(BranchDisplay::from_summary)
            .collect();

        let mut app = Self {
            stack: snapshot.stack,
            repo,
            session,
            diff_cache_dir,
            current_branch: repository_snapshot.current_branch,
            selected_index: 0,
            branches,
            mode: Mode::Normal,
            search_query: String::new(),
            filtered_indices: Vec::new(),
            input_buffer: String::new(),
            input_cursor: 0,
            selected_diff: Vec::new(),
            diff_scroll: 0,
            focused_pane: FocusedPane::Stack,
            pane_visibility,
            diff_stat: Vec::new(),
            status_message: initial_status,
            status_set_at,
            should_quit: false,
            pending_command: None,
            needs_refresh: true,
            reorder_state: None,
            move_picker_source: String::new(),
            move_picker_candidates: Vec::new(),
            move_picker_query: String::new(),
            move_picker_selected: 0,
            diff_cache: HashMap::new(),
            ci_states: HashMap::new(),
            ci_loader: None,
            ci_loading_branch: None,
            ci_queued_branch: None,
            branch_details_queued: false,
            branch_details_loader: None,
            diff_loader: None,
            diff_loading: None,
            diff_queued: None,
        };

        app.needs_refresh = false;
        app.branch_details_queued = true;
        if let Some(branch) = preferred_selection {
            app.select_branch(&branch);
        } else {
            app.select_current_branch();
        }
        app.queue_diff_refresh_for_selected();
        app.queue_ci_refresh_for_selected();

        Ok(app)
    }

    /// Refresh the branch list from the repository
    pub fn refresh_branches(&mut self) -> Result<()> {
        let snapshot = StackSnapshot::load(&self.repo)?;
        let repository_snapshot = self.session.snapshot()?;
        let details_errors = self
            .branches
            .iter()
            .filter_map(|branch| {
                branch
                    .details_error
                    .as_ref()
                    .map(|message| (branch.name.clone(), message.clone()))
            })
            .collect::<HashMap<_, _>>();
        self.stack = snapshot.stack;
        self.current_branch = repository_snapshot.current_branch;
        self.branches = repository_snapshot
            .branches
            .into_iter()
            .map(|summary| {
                let mut branch = BranchDisplay::from_summary(summary);
                branch.details_error = details_errors.get(&branch.name).cloned();
                branch
            })
            .collect();
        self.diff_cache.clear();
        self.needs_refresh = false;
        self.branch_details_queued = true;
        self.queue_diff_refresh_for_selected();
        self.queue_ci_refresh_for_selected();
        Ok(())
    }

    /// Select the current branch in the list
    pub fn select_current_branch(&mut self) {
        if let Some(idx) = self.branches.iter().position(|b| b.is_current) {
            self.selected_index = idx;
        }
        self.queue_diff_refresh_for_selected();
        self.queue_ci_refresh_for_selected();
    }

    /// Select a branch by name, falling back to current branch when not found.
    pub fn select_branch(&mut self, branch: &str) {
        if let Some(idx) = self.branches.iter().position(|b| b.name == branch) {
            self.selected_index = idx;
            self.queue_diff_refresh_for_selected();
            self.queue_ci_refresh_for_selected();
            return;
        }

        self.select_current_branch();
        self.queue_diff_refresh_for_selected();
    }

    /// Get the currently selected branch
    pub fn selected_branch(&self) -> Option<&BranchDisplay> {
        if self.mode == Mode::Search {
            self.filtered_indices
                .get(self.selected_index)
                .and_then(|&idx| self.branches.get(idx))
        } else {
            self.branches.get(self.selected_index)
        }
    }

    /// Move selection up
    pub fn select_previous(&mut self) {
        let len = if self.mode == Mode::Search {
            self.filtered_indices.len()
        } else {
            self.branches.len()
        };

        if len > 0 && self.selected_index > 0 {
            self.selected_index -= 1;
            self.queue_diff_refresh_for_selected();
            self.queue_ci_refresh_for_selected();
        }
    }

    /// Move selection down
    pub fn select_next(&mut self) {
        let len = if self.mode == Mode::Search {
            self.filtered_indices.len()
        } else {
            self.branches.len()
        };

        if len > 0 && self.selected_index < len - 1 {
            self.selected_index += 1;
            self.queue_diff_refresh_for_selected();
            self.queue_ci_refresh_for_selected();
        }
    }

    /// Update search filter
    pub fn update_search(&mut self) {
        let query = self.search_query.to_lowercase();
        self.filtered_indices = self
            .branches
            .iter()
            .enumerate()
            .filter(|(_, b)| b.name.to_lowercase().contains(&query))
            .map(|(i, _)| i)
            .collect();
        self.selected_index = 0;
    }

    /// Prepare state for `Mode::MovePicker` and enter it.
    ///
    /// On `Err`, the static string is a user-facing reason suitable for
    /// `set_status`. Returning a specific message from here (rather than a
    /// bool) keeps the dispatcher from having to duplicate the trunk /
    /// no-candidates checks to figure out what to show.
    ///
    /// Candidates are sourced from `repo.list_branches()` — the same
    /// universe the CLI `pick_parent_interactively` uses — so both
    /// surfaces offer the same targets, including local branches that
    /// aren't yet tracked in the stax stack.
    pub fn init_move_picker(&mut self) -> Result<(), &'static str> {
        let Some(source) = self.selected_branch() else {
            return Err("No branch selected");
        };
        if source.is_trunk {
            return Err("Cannot reparent trunk branch");
        }
        let source_name = source.name.clone();

        let all_names = self
            .repo
            .list_branches()
            .map_err(|_| "Failed to list branches")?;
        let descendants = self.stack.descendants(&source_name);
        let candidates =
            build_parent_candidates(&all_names, &source_name, &descendants, &self.stack.trunk);
        if candidates.is_empty() {
            return Err("No eligible parents to move onto");
        }

        self.move_picker_source = source_name;
        self.move_picker_candidates = candidates;
        self.move_picker_query.clear();
        self.move_picker_selected = 0;
        self.mode = Mode::MovePicker;
        Ok(())
    }

    /// Return the filtered subset of candidates as indices into
    /// `move_picker_candidates`. Case-insensitive substring match, same
    /// shape as `update_search` for the main stack view.
    pub fn move_picker_filtered_indices(&self) -> Vec<usize> {
        substring_filter_indices(&self.move_picker_candidates, &self.move_picker_query)
    }

    /// Currently highlighted candidate (after applying the filter).
    pub fn move_picker_current(&self) -> Option<&str> {
        let filtered = self.move_picker_filtered_indices();
        let idx = *filtered.get(self.move_picker_selected)?;
        self.move_picker_candidates.get(idx).map(String::as_str)
    }

    /// Move highlight up in the filtered view; clamps at 0.
    pub fn move_picker_select_previous(&mut self) {
        if self.move_picker_selected > 0 {
            self.move_picker_selected -= 1;
        }
    }

    /// Move highlight down in the filtered view; clamps at the last item.
    pub fn move_picker_select_next(&mut self) {
        let len = self.move_picker_filtered_indices().len();
        if len > 0 && self.move_picker_selected + 1 < len {
            self.move_picker_selected += 1;
        }
    }

    /// After the query changes: reset the highlight to the first match so
    /// the user doesn't land out-of-bounds when the filter shrinks.
    pub fn move_picker_on_query_change(&mut self) {
        self.move_picker_selected = 0;
    }

    /// Clear all picker state. Call when exiting the mode by any path.
    pub fn clear_move_picker(&mut self) {
        self.move_picker_source.clear();
        self.move_picker_candidates.clear();
        self.move_picker_query.clear();
        self.move_picker_selected = 0;
    }

    /// Queue a background diff refresh for the currently selected branch.
    pub fn queue_diff_refresh_for_selected(&mut self) {
        self.selected_diff.clear();
        self.diff_stat.clear();
        self.diff_scroll = 0;

        let (branch_name, parent_name) = match self.selected_branch() {
            Some(branch) => match &branch.parent {
                Some(parent) => (branch.name.clone(), parent.clone()),
                None => return,
            },
            None => return,
        };

        let request = DiffRequest::new(branch_name, parent_name);
        if let Some(cached) = self.diff_cache.get(&request.key) {
            self.diff_stat = cached.stat.clone();
            self.selected_diff = cached.lines.clone();
            return;
        }

        if let Ok(Some(cached)) = self.session.cached_diff(&request.branch, &request.parent) {
            self.diff_cache.insert(request.key.clone(), cached.clone());
            self.diff_stat = cached.stat;
            self.selected_diff = cached.lines;
            return;
        }

        if self.diff_loading.as_ref() == Some(&request) {
            return;
        }

        self.diff_queued = Some(request);
    }

    pub fn is_selected_diff_loading(&self) -> bool {
        let Some(request) = self.selected_diff_request() else {
            return false;
        };

        self.diff_queued.as_ref() == Some(&request) || self.diff_loading.as_ref() == Some(&request)
    }

    fn selected_diff_request(&self) -> Option<DiffRequest> {
        let branch = self.selected_branch()?;
        let parent = branch.parent.as_ref()?;
        Some(DiffRequest::new(branch.name.clone(), parent.clone()))
    }

    /// Calculate total scrollable lines in diff view (stats header + diff content)
    pub fn total_diff_lines(&self) -> usize {
        self.selected_diff.len()
    }

    pub fn toggle_pane_visibility(&mut self, pane: TuiPane) {
        let currently_visible = self.pane_visibility.is_visible(pane);
        if currently_visible && self.pane_visibility.visible_count() == 1 {
            self.set_status("At least one pane must remain visible");
            return;
        }

        self.pane_visibility.set_visible(pane, !currently_visible);
        self.ensure_focus_visible();
        self.persist_tui_state();

        let pane_name = match pane {
            TuiPane::Stack => "Stack",
            TuiPane::Summary => "Summary",
            TuiPane::Patch => "Patch",
        };
        let state = if currently_visible { "hidden" } else { "shown" };
        self.set_status(format!("{} pane {}", pane_name, state));
    }

    fn persist_tui_state(&self) {
        let mut state = TuiStateCache::load(&self.diff_cache_dir);
        state.panes = Some(self.pane_visibility.to_persisted());
        let _ = state.save(&self.diff_cache_dir);
    }

    fn focused_pane_is_visible(&self) -> bool {
        match self.focused_pane {
            FocusedPane::Stack => self.pane_visibility.stack,
            FocusedPane::Summary => self.pane_visibility.summary,
            FocusedPane::Diff => self.pane_visibility.patch,
        }
    }

    fn ensure_focus_visible(&mut self) {
        if self.focused_pane_is_visible() {
            return;
        }

        self.focused_pane = if self.pane_visibility.stack {
            FocusedPane::Stack
        } else if self.pane_visibility.patch {
            FocusedPane::Diff
        } else {
            FocusedPane::Summary
        };
    }

    pub fn focus_next_visible_pane(&mut self) {
        let panes = [FocusedPane::Stack, FocusedPane::Summary, FocusedPane::Diff];
        let current = panes
            .iter()
            .position(|pane| *pane == self.focused_pane)
            .unwrap_or(0);

        for offset in 1..=panes.len() {
            let next = panes[(current + offset) % panes.len()].clone();
            let is_visible = match next {
                FocusedPane::Stack => self.pane_visibility.stack,
                FocusedPane::Summary => self.pane_visibility.summary,
                FocusedPane::Diff => self.pane_visibility.patch,
            };
            if is_visible {
                self.focused_pane = next;
                return;
            }
        }
    }

    /// Set a status message (auto-clears after timeout)
    pub fn set_status(&mut self, msg: impl Into<String>) {
        self.status_message = Some(msg.into());
        self.status_set_at = Some(Instant::now());
    }

    pub fn queue_operation(&mut self, request: OperationRequest) {
        self.pending_command = Some(PendingCommand {
            action: PendingAction::Operation(request),
            preferred_selection: None,
        });
        self.should_quit = true;
    }

    /// Clear status message if it's been shown long enough
    pub fn clear_stale_status(&mut self) {
        if let Some(set_at) = self.status_set_at {
            if set_at.elapsed().as_secs() >= 2 {
                self.status_message = None;
                self.status_set_at = None;
            }
        }
    }

    pub fn refresh_background(&mut self) {
        self.poll_branch_details_updates();
        self.poll_diff_updates();
        self.poll_ci_updates();
        self.spawn_branch_details_loader_if_needed();
        self.queue_ci_refresh_for_selected();
        self.spawn_diff_loader_if_needed();
        self.spawn_ci_loader_if_needed();
    }

    pub fn ci_row_progress(&self, branch: &str) -> Option<String> {
        let summary = match self.ci_states.get(branch) {
            Some(BranchCiState::Ready { summary, .. }) if summary.is_active() => summary,
            _ => return None,
        };

        Some(format!("{}/{}", summary.completed_count(), summary.total))
    }

    pub fn ci_summary_line(&self, branch: &BranchDisplay) -> (String, bool) {
        if let Some(message) = branch.details_error.as_ref() {
            return (format!("Live CI: {message}"), true);
        }

        match self.ci_states.get(&branch.name) {
            Some(BranchCiState::Loading) => ("Live CI: fetching latest checks…".to_string(), false),
            Some(BranchCiState::Unavailable { message, .. }) => {
                (format!("Live CI: {}", message), true)
            }
            Some(BranchCiState::Ready { summary, .. }) => live_ci_summary_text(summary),
            None if self.ci_queued_branch.as_deref() == Some(branch.name.as_str()) => {
                ("Live CI: fetching latest checks…".to_string(), false)
            }
            None if branch.has_remote => (
                "Live CI: select the branch for a background refresh".to_string(),
                false,
            ),
            None => (
                "Live CI: push branch to see remote checks".to_string(),
                true,
            ),
        }
    }

    fn queue_ci_refresh_for_selected(&mut self) {
        let Some(branch) = self.selected_branch().map(|branch| branch.name.clone()) else {
            return;
        };

        let Some(selected) = self.selected_branch() else {
            return;
        };

        if !selected.details_loaded {
            return;
        }

        if let Some(message) = selected.details_error.clone() {
            if self.ci_queued_branch.as_deref() == Some(branch.as_str()) {
                self.ci_queued_branch = None;
            }
            self.ci_states.insert(
                branch,
                BranchCiState::Unavailable {
                    message,
                    fetched_at: Instant::now(),
                },
            );
            return;
        }

        if !selected.has_remote {
            self.ci_states.insert(
                branch,
                BranchCiState::Unavailable {
                    message: "push branch to see remote checks".to_string(),
                    fetched_at: Instant::now(),
                },
            );
            return;
        }

        let should_queue = match self.ci_states.get(&branch) {
            Some(BranchCiState::Loading) => false,
            Some(BranchCiState::Ready {
                summary,
                fetched_at,
            }) => {
                let interval = if summary.is_active() {
                    CI_ACTIVE_REFRESH_INTERVAL
                } else {
                    CI_IDLE_REFRESH_INTERVAL
                };
                fetched_at.elapsed() >= interval
            }
            Some(BranchCiState::Unavailable { fetched_at, .. }) => {
                fetched_at.elapsed() >= CI_ERROR_RETRY_INTERVAL
            }
            None => true,
        };

        if should_queue {
            self.ci_queued_branch = Some(branch);
        }
    }

    fn spawn_branch_details_loader_if_needed(&mut self) {
        if !self.branch_details_queued || self.branch_details_loader.is_some() {
            return;
        }

        let requests = self
            .branches
            .iter()
            .filter(|branch| !branch.is_trunk)
            .map(BranchDisplay::summary)
            .collect::<Vec<_>>();

        self.branch_details_queued = false;
        self.branch_details_loader = (!requests.is_empty())
            .then(|| spawn_branch_details_loader(self.session.clone(), requests));
    }

    fn poll_branch_details_updates(&mut self) {
        loop {
            let update = match self.branch_details_loader.as_ref() {
                Some(loader) => match loader.try_recv() {
                    Ok(update) => Some(update),
                    Err(TryRecvError::Empty) => None,
                    Err(TryRecvError::Disconnected) => {
                        self.branch_details_loader = None;
                        None
                    }
                },
                None => None,
            };

            let Some(update) = update else {
                break;
            };
            self.apply_branch_details_update(update);
        }
    }

    fn apply_branch_details_update(&mut self, update: BranchDetailsUpdate) {
        match update {
            BranchDetailsUpdate::Loaded { branch, details } => {
                let mut recovered_from_error = false;
                if let Some(branch_display) =
                    self.branches.iter_mut().find(|item| item.name == branch)
                {
                    recovered_from_error = branch_display.details_error.is_some();
                    branch_display.apply_details(details);
                }
                if recovered_from_error
                    && matches!(
                        self.ci_states.get(&branch),
                        Some(BranchCiState::Unavailable { .. })
                    )
                {
                    self.ci_states.remove(&branch);
                }
            }
            BranchDetailsUpdate::Unavailable { branch, message } => {
                if let Some(branch_display) =
                    self.branches.iter_mut().find(|item| item.name == branch)
                {
                    branch_display.details_loaded = true;
                    branch_display.details_error = Some(message.clone());
                    self.ci_states.insert(
                        branch.clone(),
                        BranchCiState::Unavailable {
                            message,
                            fetched_at: Instant::now(),
                        },
                    );
                    if self.ci_queued_branch.as_deref() == Some(branch.as_str()) {
                        self.ci_queued_branch = None;
                    }
                }
            }
            BranchDetailsUpdate::Done => {
                self.branch_details_loader = None;
            }
        }
    }

    fn poll_diff_updates(&mut self) {
        loop {
            let update = match self.diff_loader.as_ref() {
                Some(loader) => match loader.try_recv() {
                    Ok(update) => Some(update),
                    Err(TryRecvError::Empty) => None,
                    Err(TryRecvError::Disconnected) => {
                        self.diff_loader = None;
                        self.diff_loading = None;
                        None
                    }
                },
                None => None,
            };

            let Some(update) = update else {
                break;
            };
            self.apply_diff_update(update);
        }
    }

    fn spawn_diff_loader_if_needed(&mut self) {
        if self.diff_loader.is_some() {
            return;
        }

        let Some(request) = self.diff_queued.take() else {
            return;
        };

        self.diff_loading = Some(request.clone());
        self.diff_loader = Some(spawn_diff_loader(self.session.clone(), request));
    }

    fn apply_diff_update(&mut self, update: DiffUpdate) {
        let request = match update {
            DiffUpdate::Loaded { request, diff } => {
                self.diff_cache.insert(request.key.clone(), diff.clone());
                if self.selected_diff_request().as_ref() == Some(&request) {
                    self.diff_stat = diff.stat;
                    self.selected_diff = diff.lines;
                    self.diff_scroll = 0;
                }
                request
            }
            DiffUpdate::Unavailable { request } => request,
        };

        if self.diff_loading.as_ref() == Some(&request) {
            self.diff_loader = None;
            self.diff_loading = None;
        }
    }

    fn poll_ci_updates(&mut self) {
        loop {
            let update = match self.ci_loader.as_ref() {
                Some(loader) => match loader.try_recv() {
                    Ok(update) => Some(update),
                    Err(TryRecvError::Empty) => None,
                    Err(TryRecvError::Disconnected) => {
                        self.ci_loader = None;
                        self.ci_loading_branch = None;
                        None
                    }
                },
                None => None,
            };

            let Some(update) = update else {
                break;
            };
            self.apply_ci_update(update);
        }
    }

    fn spawn_ci_loader_if_needed(&mut self) {
        if self.ci_loader.is_some() {
            return;
        }

        let Some(branch) = self.ci_queued_branch.take() else {
            return;
        };

        self.ci_states
            .insert(branch.clone(), BranchCiState::Loading);
        self.ci_loading_branch = Some(branch.clone());
        self.ci_loader = Some(spawn_ci_loader(self.session.clone(), branch));
    }

    fn apply_ci_update(&mut self, update: CiUpdate) {
        let fetched_at = Instant::now();
        let branch_name = match &update {
            CiUpdate::Loaded { branch, .. } | CiUpdate::Unavailable { branch, .. } => {
                branch.clone()
            }
        };

        match update {
            CiUpdate::Loaded { branch, summary } => {
                let ci_state = summary.overall_status.clone();
                self.ci_states.insert(
                    branch.clone(),
                    BranchCiState::Ready {
                        summary,
                        fetched_at,
                    },
                );
                if let Some(branch_display) =
                    self.branches.iter_mut().find(|item| item.name == branch)
                {
                    branch_display.ci_state = ci_state.clone();
                }
            }
            CiUpdate::Unavailable { branch, message } => {
                self.ci_states.insert(
                    branch.clone(),
                    BranchCiState::Unavailable {
                        message,
                        fetched_at,
                    },
                );
            }
        }

        if self.ci_loading_branch.as_deref() == Some(branch_name.as_str()) {
            self.ci_loader = None;
            self.ci_loading_branch = None;
        }
    }

    /// Initialize reorder mode for the selected branch
    /// Gets the linear stack chain containing the selected branch
    pub fn init_reorder_state(&mut self) -> bool {
        let branch = match self.selected_branch() {
            Some(b) => b.clone(),
            None => return false,
        };

        // Cannot reorder trunk
        if branch.is_trunk {
            self.set_status("Cannot reorder trunk branch");
            return false;
        }

        // Build the linear stack chain from trunk to the deepest descendant
        // that contains our selected branch
        let chain = self.build_stack_chain(&branch.name);

        if chain.len() < 2 {
            self.set_status("Stack too small to reorder");
            return false;
        }

        // Find the index of the selected branch in the chain
        let moving_index = match chain.iter().position(|e| e.name == branch.name) {
            Some(idx) => idx,
            None => {
                self.set_status("Branch not found in stack chain");
                return false;
            }
        };

        self.reorder_state = Some(ReorderState {
            original_chain: chain.clone(),
            pending_chain: chain,
            moving_index,
            preview: ReorderPreview::default(),
        });

        self.update_reorder_preview();
        true
    }

    /// Build a linear stack chain containing the given branch
    /// Returns entries from first branch after trunk down to the leaf
    fn build_stack_chain(&self, branch_name: &str) -> Vec<StackChainEntry> {
        // First, find the root of this stack (direct child of trunk)
        let mut ancestors = vec![branch_name.to_string()];
        let mut current = branch_name.to_string();

        while let Some(info) = self.stack.branches.get(&current) {
            if let Some(parent) = &info.parent {
                if *parent == self.stack.trunk {
                    break; // We've reached trunk
                }
                ancestors.push(parent.clone());
                current = parent.clone();
            } else {
                break;
            }
        }

        // ancestors now contains [branch, ..., stack_root] - reverse it
        ancestors.reverse();

        // Now build the full chain from stack_root down through the selected branch
        // and continue to any single-child descendants
        let mut chain = Vec::new();

        // Add all ancestors including the selected branch
        let mut prev_parent = self.stack.trunk.clone();
        for ancestor in &ancestors {
            chain.push(StackChainEntry {
                name: ancestor.clone(),
                parent: prev_parent.clone(),
            });
            prev_parent = ancestor.clone();
        }

        // Continue down to descendants (only if linear - single child)
        let mut current = branch_name.to_string();
        while let Some(info) = self.stack.branches.get(&current) {
            if info.children.len() == 1 {
                let child = &info.children[0];
                chain.push(StackChainEntry {
                    name: child.clone(),
                    parent: current.clone(),
                });
                current = child.clone();
            } else {
                break; // Stop at branches with multiple children or no children
            }
        }

        chain
    }

    /// Move the selected branch up in the stack (becomes earlier in the chain)
    pub fn reorder_move_up(&mut self) {
        if let Some(ref mut state) = self.reorder_state {
            if state.moving_index > 0 {
                // Swap positions: branch at moving_index moves up
                let i = state.moving_index;

                // Get the parent of the branch we're swapping with
                let new_parent = state.pending_chain[i - 1].parent.clone();
                let moving_branch = state.pending_chain[i].name.clone();
                let displaced_branch = state.pending_chain[i - 1].name.clone();

                // Update parents for the swap
                state.pending_chain[i - 1].parent = moving_branch.clone();
                state.pending_chain[i].parent = new_parent;

                // Update parent of branch after the displaced one (if any)
                if i + 1 < state.pending_chain.len() {
                    state.pending_chain[i + 1].parent = displaced_branch.clone();
                }

                // Swap the entries
                state.pending_chain.swap(i, i - 1);
                state.moving_index -= 1;

                self.update_reorder_preview();
            }
        }
    }

    /// Move the selected branch down in the stack (becomes later in the chain)
    pub fn reorder_move_down(&mut self) {
        if let Some(ref mut state) = self.reorder_state {
            if state.moving_index < state.pending_chain.len() - 1 {
                // Swap positions: branch at moving_index moves down
                let i = state.moving_index;

                // Get info for the swap
                let moving_branch = state.pending_chain[i].name.clone();
                let displaced_branch = state.pending_chain[i + 1].name.clone();
                let moving_parent = state.pending_chain[i].parent.clone();

                // Update parents for the swap
                state.pending_chain[i].parent = displaced_branch.clone();
                state.pending_chain[i + 1].parent = moving_parent;

                // Update parent of branch after the moving one (if any)
                if i + 2 < state.pending_chain.len() {
                    state.pending_chain[i + 2].parent = moving_branch.clone();
                }

                // Swap the entries
                state.pending_chain.swap(i, i + 1);
                state.moving_index += 1;

                self.update_reorder_preview();
            }
        }
    }

    /// Check if reorder has pending changes
    pub fn reorder_has_changes(&self) -> bool {
        self.reorder_state
            .as_ref()
            .map(|s| s.original_chain != s.pending_chain)
            .unwrap_or(false)
    }

    /// Get the reparent operations needed to apply the reorder
    pub fn get_reparent_operations(&self) -> Vec<(String, String)> {
        let state = match &self.reorder_state {
            Some(s) => s,
            None => return Vec::new(),
        };

        let mut ops = Vec::new();

        // Compare original and pending chains to find what needs reparenting
        for pending in &state.pending_chain {
            // Find this branch in the original chain
            if let Some(original) = state.original_chain.iter().find(|e| e.name == pending.name) {
                if original.parent != pending.parent {
                    ops.push((pending.name.clone(), pending.parent.clone()));
                }
            }
        }

        ops
    }

    /// Update the preview for reorder mode
    pub fn update_reorder_preview(&mut self) {
        let state = match &self.reorder_state {
            Some(s) => s.clone(),
            None => return,
        };

        let mut commits_to_rebase = Vec::new();
        let mut potential_conflicts = Vec::new();

        // For each branch that needs reparenting, show its commits
        for entry in &state.pending_chain {
            // Find original parent
            let original_parent = state
                .original_chain
                .iter()
                .find(|e| e.name == entry.name)
                .map(|e| e.parent.clone());

            // If parent changed, this branch needs rebasing
            if original_parent.as_ref() != Some(&entry.parent) {
                // Get commits that will be rebased (using current parent)
                if let Some(orig_parent) = &original_parent {
                    let commits = self
                        .repo
                        .commits_between(orig_parent, &entry.name)
                        .unwrap_or_default();

                    if !commits.is_empty() {
                        commits_to_rebase.push((entry.name.clone(), commits));
                    }

                    // Check for potential conflicts with new parent
                    if let Ok(conflict_files) =
                        self.repo.check_rebase_conflicts(&entry.name, &entry.parent)
                    {
                        for file in conflict_files {
                            potential_conflicts.push(ConflictInfo {
                                file,
                                branches_involved: vec![entry.name.clone(), entry.parent.clone()],
                            });
                        }
                    }
                }
            }
        }

        if let Some(ref mut reorder_state) = self.reorder_state {
            reorder_state.preview = ReorderPreview {
                commits_to_rebase,
                potential_conflicts,
            };
        }
    }

    /// Clear reorder state
    pub fn clear_reorder_state(&mut self) {
        self.reorder_state = None;
    }
}

/// Case-insensitive substring filter. Returns the indices of `candidates`
/// that match `query`. Empty query returns every index in original order.
///
/// Extracted as a pure function so the filter behaviour is unit-testable
/// without spinning up a full `App` (which needs a live `GitRepo`).
fn substring_filter_indices(candidates: &[String], query: &str) -> Vec<usize> {
    let q = query.to_lowercase();
    if q.is_empty() {
        return (0..candidates.len()).collect();
    }
    candidates
        .iter()
        .enumerate()
        .filter(|(_, n)| n.to_lowercase().contains(&q))
        .map(|(i, _)| i)
        .collect()
}

fn live_ci_summary_text(summary: &CiSummary) -> (String, bool) {
    if !summary.has_checks() {
        return (
            "Live CI: no checks reported for the latest push".to_string(),
            true,
        );
    }

    let now = Utc::now();
    let mut parts = Vec::new();

    if summary.is_active() {
        parts.push(format!(
            "{}/{} complete",
            summary.completed_count(),
            summary.total
        ));
    } else {
        parts.push(format!("{} checks", summary.total));
    }

    if summary.failed > 0 {
        parts.push(format!("{} failed", summary.failed));
    }
    if summary.running > 0 {
        parts.push(format!("{} running", summary.running));
    }
    if summary.queued > 0 {
        parts.push(format!("{} queued", summary.queued));
    }
    if summary.passed > 0 {
        parts.push(format!("{} passed", summary.passed));
    }
    if summary.skipped > 0 {
        parts.push(format!("{} skipped", summary.skipped));
    }
    if let Some(percent) = summary.progress_percent(now) {
        if summary.is_active() {
            parts.push(format!("{}%", percent));
        }
    }
    if let Some(elapsed_secs) = summary.elapsed_secs(now) {
        if summary.is_complete() {
            parts.push(format!("{} total", format_duration_compact(elapsed_secs)));
        } else {
            parts.push(format!("{} elapsed", format_duration_compact(elapsed_secs)));
        }
    }
    if let Some(eta_secs) = summary.eta_secs(now) {
        if summary.is_active() && eta_secs > 0 {
            parts.push(format!("~{} left", format_duration_compact(eta_secs)));
        }
    }

    let is_dimmed = summary.failed == 0 && !summary.is_active();
    (format!("Live CI: {}", parts.join("  •  ")), is_dimmed)
}

fn format_duration_compact(secs: u64) -> String {
    if secs < 60 {
        format!("{}s", secs)
    } else if secs < 3600 {
        format!("{}m", secs / 60)
    } else {
        format!("{}h{}m", secs / 3600, (secs % 3600) / 60)
    }
}

fn spawn_branch_details_loader(
    session: RepositorySession,
    requests: Vec<BranchSummary>,
) -> Receiver<BranchDetailsUpdate> {
    let (sender, receiver) = mpsc::channel();

    thread::spawn(move || {
        for request in requests {
            let branch = request.name.clone();
            let update = match session.branch_details(&request) {
                Ok(details) => BranchDetailsUpdate::Loaded { branch, details },
                Err(error) => BranchDetailsUpdate::Unavailable {
                    branch,
                    message: format!("{error:#}"),
                },
            };
            let _ = sender.send(update);
        }

        let _ = sender.send(BranchDetailsUpdate::Done);
    });

    receiver
}

fn spawn_diff_loader(session: RepositorySession, request: DiffRequest) -> Receiver<DiffUpdate> {
    let (sender, receiver) = mpsc::channel();

    thread::spawn(move || {
        let update = match session.diff(&request.branch, &request.parent) {
            Ok(diff) => DiffUpdate::Loaded { request, diff },
            Err(_) => DiffUpdate::Unavailable { request },
        };
        let _ = sender.send(update);
    });

    receiver
}

fn spawn_ci_loader(session: RepositorySession, branch: String) -> Receiver<CiUpdate> {
    let (sender, receiver) = mpsc::channel();

    thread::spawn(move || {
        let update = match session.load_ci(&branch) {
            Ok(summary) => CiUpdate::Loaded { branch, summary },
            Err(error) => CiUpdate::Unavailable {
                branch,
                message: format!("{error:#}"),
            },
        };
        let _ = sender.send(update);
    });

    receiver
}

#[cfg(test)]
mod tests {
    use super::{
        App, BranchCiState, BranchDetailsUpdate, BranchDisplay, CiUpdate, DiffRequest, DiffUpdate,
        FocusedPane, Mode, PaneVisibility, TuiPane, TuiPaneVisibilityState, live_ci_summary_text,
        spawn_branch_details_loader, spawn_ci_loader, spawn_diff_loader, substring_filter_indices,
    };
    use crate::application::{
        BranchDetails, BranchSummary, CiSummary, DiffLineKind, RepositorySession,
    };
    use crate::cache::{DiskCachedDiff, DiskDiffLine, DiskDiffStat, TuiDiffCache, TuiStateCache};
    use crate::engine::{BranchMetadata, Stack};
    use crate::git::GitRepo;
    use std::process::Command;
    use std::time::{Duration, Instant};
    use tempfile::TempDir;

    fn names(values: &[&str]) -> Vec<String> {
        values.iter().map(|s| s.to_string()).collect()
    }

    fn run_git(dir: &std::path::Path, args: &[&str]) {
        let null_path = if cfg!(windows) { "NUL" } else { "/dev/null" };
        let output = Command::new("git")
            .args(args)
            .current_dir(dir)
            .env("GIT_CONFIG_GLOBAL", null_path)
            .env("GIT_CONFIG_SYSTEM", null_path)
            .output()
            .expect("git command should run");
        assert!(
            output.status.success(),
            "git {} failed\nstdout: {}\nstderr: {}",
            args.join(" "),
            String::from_utf8_lossy(&output.stdout),
            String::from_utf8_lossy(&output.stderr)
        );
    }

    fn test_repo() -> (TempDir, GitRepo) {
        let tempdir = TempDir::new().expect("temp repo");
        let path = tempdir.path();
        run_git(path, &["init", "-b", "main"]);
        run_git(path, &["config", "user.email", "test@example.com"]);
        run_git(path, &["config", "user.name", "Test User"]);
        std::fs::write(path.join("README.md"), "hello\n").expect("write README");
        run_git(path, &["add", "README.md"]);
        run_git(path, &["commit", "-m", "initial"]);

        let repo = GitRepo::open_from_path(&path.join(".git")).expect("open test repo");
        repo.set_trunk("main").expect("set trunk");
        (tempdir, repo)
    }

    fn skeleton_branch(name: &str, parent: Option<&str>, is_current: bool) -> BranchDisplay {
        BranchDisplay {
            name: name.to_string(),
            parent: parent.map(str::to_string),
            column: 0,
            is_current,
            is_trunk: parent.is_none(),
            ahead: 0,
            behind: 0,
            needs_restack: false,
            has_remote: false,
            unpushed: 0,
            unpulled: 0,
            pr_number: None,
            pr_state: None,
            ci_state: None,
            commits: Vec::new(),
            details_loaded: parent.is_none(),
            details_error: None,
        }
    }

    fn minimal_app(repo: GitRepo, branches: Vec<BranchDisplay>) -> App {
        let session = RepositorySession::open(repo.workdir().expect("workdir"))
            .expect("open repository session");
        let diff_cache_dir = repo.common_git_dir().expect("common git dir");
        let stack = Stack::load(&repo).expect("load stack");
        App {
            stack,
            repo,
            session,
            diff_cache_dir,
            current_branch: "main".to_string(),
            selected_index: 0,
            branches,
            mode: Mode::Normal,
            search_query: String::new(),
            filtered_indices: Vec::new(),
            input_buffer: String::new(),
            input_cursor: 0,
            selected_diff: Vec::new(),
            diff_scroll: 0,
            focused_pane: FocusedPane::Stack,
            pane_visibility: PaneVisibility::default(),
            diff_stat: Vec::new(),
            status_message: None,
            status_set_at: None,
            should_quit: false,
            pending_command: None,
            needs_refresh: false,
            reorder_state: None,
            move_picker_source: String::new(),
            move_picker_candidates: Vec::new(),
            move_picker_query: String::new(),
            move_picker_selected: 0,
            diff_cache: Default::default(),
            ci_states: Default::default(),
            ci_loader: None,
            ci_loading_branch: None,
            ci_queued_branch: None,
            branch_details_queued: false,
            branch_details_loader: None,
            diff_loader: None,
            diff_loading: None,
            diff_queued: None,
        }
    }

    #[test]
    fn skeleton_branch_defers_expensive_fields_until_background_details_load() {
        let branch = skeleton_branch("feature", Some("main"), false);

        assert!(!branch.details_loaded);
        assert_eq!(branch.ahead, 0);
        assert_eq!(branch.behind, 0);
        assert!(!branch.has_remote);
        assert_eq!(branch.unpushed, 0);
        assert_eq!(branch.unpulled, 0);
        assert!(branch.commits.is_empty());
    }

    #[test]
    fn custom_remote_details_make_selected_branch_eligible_for_ci_queueing() {
        let (_tempdir, repo) = test_repo();
        let mut app = minimal_app(repo, vec![skeleton_branch("feature", Some("main"), true)]);

        app.apply_branch_details_update(BranchDetailsUpdate::Loaded {
            branch: "feature".to_string(),
            details: BranchDetails {
                ahead: 1,
                behind: 0,
                has_remote: true,
                unpushed: 1,
                unpulled: 0,
                commits: vec!["feature commit".to_string()],
            },
        });
        app.queue_ci_refresh_for_selected();

        assert!(app.branches[0].details_loaded);
        assert!(app.branches[0].has_remote);
        assert_eq!(app.ci_queued_branch.as_deref(), Some("feature"));
    }

    #[test]
    fn applying_ci_update_does_not_duplicate_the_session_cache_write() {
        let (_tempdir, repo) = test_repo();
        let cache_path = repo
            .git_dir()
            .expect("git dir")
            .join("stax")
            .join("ci-cache.json");
        let mut app = minimal_app(repo, vec![skeleton_branch("feature", Some("main"), true)]);
        let summary = CiSummary {
            overall_status: Some("success".to_string()),
            total: 1,
            passed: 1,
            failed: 0,
            running: 0,
            queued: 0,
            skipped: 0,
            started_at: None,
            completed_at: None,
            average_secs: None,
        };

        app.apply_ci_update(CiUpdate::Loaded {
            branch: "feature".to_string(),
            summary,
        });

        assert_eq!(app.branches[0].ci_state.as_deref(), Some("success"));
        assert!(!cache_path.exists());
    }

    #[test]
    fn hydration_config_error_precedes_no_remote_ci_guidance_and_recovers() {
        let (_tempdir, repo) = test_repo();
        let workdir = repo.workdir().expect("workdir").to_path_buf();
        run_git(&workdir, &["switch", "-c", "feature"]);
        let main_oid = repo.rev_parse("main").expect("main oid");
        BranchMetadata::new("main", &main_oid)
            .write(repo.inner(), "feature")
            .expect("write feature metadata");
        std::fs::write(
            workdir.join("stax.toml"),
            "[remote\nname = \"origin\"\ntoken = \"super-secret-credential\"\n",
        )
        .expect("write malformed config");
        let request = BranchSummary {
            name: "feature".to_string(),
            parent: Some("main".to_string()),
            column: 0,
            is_current: true,
            is_trunk: false,
            needs_restack: false,
            pr_number: None,
            pr_state: None,
            ci_state: None,
        };
        let session = RepositorySession::open(&workdir).expect("open session");
        let repository_root = session.repository_root().display().to_string();

        let update = spawn_branch_details_loader(session, vec![request])
            .recv_timeout(Duration::from_secs(15))
            .expect("details update");
        match &update {
            BranchDetailsUpdate::Unavailable { branch, message } => {
                assert_eq!(branch, "feature");
                assert!(message.contains("Failed to load stax config"));
                assert!(message.contains(&repository_root));
                assert!(!message.contains("super-secret-credential"));
            }
            BranchDetailsUpdate::Loaded { .. } | BranchDetailsUpdate::Done => {
                panic!("malformed config must make details unavailable")
            }
        }

        let mut app = minimal_app(repo, vec![skeleton_branch("feature", Some("main"), true)]);
        app.apply_branch_details_update(update);
        app.queue_ci_refresh_for_selected();

        assert!(app.branches[0].details_loaded);
        assert!(app.branches[0].details_error.is_some());
        assert!(app.ci_queued_branch.is_none());
        match app.ci_states.get("feature") {
            Some(BranchCiState::Unavailable { message, .. }) => {
                assert!(message.contains("stax config"));
                assert!(!message.contains("super-secret-credential"));
            }
            Some(BranchCiState::Loading | BranchCiState::Ready { .. }) | None => {
                panic!("hydration failure must populate unavailable CI state")
            }
        }
        let (summary, _) = app.ci_summary_line(&app.branches[0]);
        assert!(summary.contains("stax config"));
        assert!(!summary.contains("push branch"));
        assert!(!summary.contains("super-secret-credential"));

        std::fs::write(workdir.join("stax.toml"), "[remote]\nname = \"origin\"\n")
            .expect("fix config");
        app.refresh_branches().expect("refresh branches");
        assert!(app.branch_details_queued);
        let refreshing = app
            .branches
            .iter()
            .find(|branch| branch.name == "feature")
            .expect("refreshed feature");
        assert!(!refreshing.details_loaded);
        assert!(refreshing.details_error.is_some());

        let started = Instant::now();
        loop {
            app.refresh_background();
            let recovered = app
                .branches
                .iter()
                .find(|branch| branch.name == "feature")
                .is_some_and(|branch| branch.details_loaded && branch.details_error.is_none());
            if recovered {
                break;
            }
            assert!(
                started.elapsed() < Duration::from_secs(15),
                "details refresh did not recover"
            );
            std::thread::sleep(Duration::from_millis(10));
        }
        app.select_branch("feature");
        app.queue_ci_refresh_for_selected();

        let recovered = app.selected_branch().expect("selected feature");
        assert!(recovered.details_error.is_none());
        let (summary, _) = app.ci_summary_line(recovered);
        assert!(summary.contains("push branch"));
        assert!(!summary.contains("stax config"));
    }

    #[test]
    fn selecting_next_branch_queues_diff_without_loading_patch_synchronously() {
        let (_tempdir, repo) = test_repo();
        let mut app = minimal_app(
            repo,
            vec![
                skeleton_branch("main", None, true),
                skeleton_branch("feature", Some("main"), false),
            ],
        );

        app.select_next();

        assert_eq!(app.selected_index, 1);
        assert_eq!(
            app.diff_queued,
            Some(DiffRequest::new("feature".to_string(), "main".to_string()))
        );
        assert!(app.selected_diff.is_empty());
        assert!(app.diff_stat.is_empty());
    }

    #[test]
    fn selecting_branch_cache_miss_does_not_compute_patch_synchronously() {
        let (_tempdir, repo) = test_repo();
        let workdir = repo.workdir().expect("workdir").to_path_buf();
        run_git(&workdir, &["switch", "-c", "feature"]);
        std::fs::write(workdir.join("README.md"), "hello\nfeature\n").expect("write README");
        run_git(&workdir, &["add", "README.md"]);
        run_git(&workdir, &["commit", "-m", "feature"]);
        let blob_oid = repo
            .rev_parse("feature:README.md")
            .expect("feature README blob");
        let cache_dir = repo.common_git_dir().expect("common git dir");
        let object_path = cache_dir
            .join("objects")
            .join(&blob_oid[..2])
            .join(&blob_oid[2..]);
        std::fs::remove_file(object_path).expect("remove feature blob");
        let mut app = minimal_app(
            repo,
            vec![
                skeleton_branch("main", None, false),
                skeleton_branch("feature", Some("main"), true),
            ],
        );

        app.select_next();

        assert_eq!(
            app.diff_queued,
            Some(DiffRequest::new("feature".to_string(), "main".to_string()))
        );
        assert!(app.selected_diff.is_empty());
        assert!(app.diff_stat.is_empty());
        assert!(!cache_dir.join("stax").join("tui-diff-cache.json").exists());
    }

    #[test]
    fn toggling_patch_hides_it_and_moves_focus_to_stack() {
        let (_tempdir, repo) = test_repo();
        let mut app = minimal_app(repo, vec![skeleton_branch("main", None, true)]);
        app.focused_pane = FocusedPane::Diff;

        app.toggle_pane_visibility(TuiPane::Patch);

        assert!(!app.pane_visibility.patch);
        assert_eq!(app.focused_pane, FocusedPane::Stack);
        assert_eq!(app.status_message.as_deref(), Some("Patch pane hidden"));
    }

    #[test]
    fn toggling_pane_visibility_persists_for_next_tui_load() {
        let (_tempdir, repo) = test_repo();
        let cache_dir = repo.common_git_dir().expect("common git dir");
        let mut app = minimal_app(repo, vec![skeleton_branch("main", None, true)]);

        app.toggle_pane_visibility(TuiPane::Summary);

        let state = TuiStateCache::load(&cache_dir);
        let panes = state.panes.expect("pane visibility should be persisted");
        assert!(panes.stack);
        assert!(!panes.summary);
        assert!(panes.patch);
    }

    #[test]
    fn invalid_persisted_pane_visibility_falls_back_to_default() {
        let visibility = PaneVisibility::from_persisted(TuiPaneVisibilityState {
            stack: false,
            summary: false,
            patch: false,
        });

        assert_eq!(visibility, PaneVisibility::default());
    }

    #[test]
    fn toggling_does_not_hide_last_visible_pane() {
        let (_tempdir, repo) = test_repo();
        let mut app = minimal_app(repo, vec![skeleton_branch("main", None, true)]);
        app.pane_visibility = PaneVisibility {
            stack: true,
            summary: false,
            patch: false,
        };

        app.toggle_pane_visibility(TuiPane::Stack);

        assert!(app.pane_visibility.stack);
        assert_eq!(
            app.status_message.as_deref(),
            Some("At least one pane must remain visible")
        );
    }

    #[test]
    fn tab_skips_hidden_patch_pane() {
        let (_tempdir, repo) = test_repo();
        let mut app = minimal_app(repo, vec![skeleton_branch("main", None, true)]);
        app.pane_visibility.patch = false;

        app.focus_next_visible_pane();

        assert_eq!(app.focused_pane, FocusedPane::Summary);
    }

    #[test]
    fn selecting_branch_uses_persisted_diff_cache_when_refs_match() {
        let (_tempdir, repo) = test_repo();
        let workdir = repo.workdir().expect("workdir").to_path_buf();
        run_git(&workdir, &["switch", "-c", "feature"]);
        std::fs::write(workdir.join("README.md"), "hello\nfeature\n").expect("write README");
        run_git(&workdir, &["add", "README.md"]);
        run_git(&workdir, &["commit", "-m", "feature"]);

        let parent_oid = repo.rev_parse("main").expect("main oid");
        let branch_oid = repo.rev_parse("feature").expect("feature oid");
        let merge_base_oid = repo.merge_base_refs("main", "feature").expect("merge base");
        let cache_dir = repo.common_git_dir().expect("common git dir");
        let mut disk_cache = TuiDiffCache::default();
        disk_cache.insert(
            TuiDiffCache::key("main", "feature", &parent_oid, &branch_oid, &merge_base_oid),
            DiskCachedDiff {
                stat: vec![DiskDiffStat {
                    file: "README.md".to_string(),
                    additions: 1,
                    deletions: 0,
                }],
                lines: vec![DiskDiffLine {
                    content: "cached diff line".to_string(),
                    line_type: "context".to_string(),
                }],
            },
        );
        disk_cache.save(&cache_dir).expect("save cache");

        let mut app = minimal_app(
            repo,
            vec![
                skeleton_branch("main", None, false),
                skeleton_branch("feature", Some("main"), true),
            ],
        );

        app.select_next();

        assert_eq!(app.diff_queued, None);
        assert_eq!(app.selected_diff.len(), 1);
        assert_eq!(app.selected_diff[0].content, "cached diff line");
        assert_eq!(app.selected_diff[0].kind, DiffLineKind::Context);
        assert_eq!(app.diff_stat.len(), 1);
        assert_eq!(app.diff_stat[0].file, "README.md");
    }

    #[test]
    fn selecting_branch_ignores_persisted_diff_cache_when_branch_tip_changes() {
        let (_tempdir, repo) = test_repo();
        let workdir = repo.workdir().expect("workdir").to_path_buf();
        run_git(&workdir, &["switch", "-c", "feature"]);
        std::fs::write(workdir.join("README.md"), "hello\nfeature\n").expect("write README");
        run_git(&workdir, &["add", "README.md"]);
        run_git(&workdir, &["commit", "-m", "feature"]);

        let old_branch_oid = repo.rev_parse("feature").expect("old feature oid");
        let parent_oid = repo.rev_parse("main").expect("main oid");
        let merge_base_oid = repo.merge_base_refs("main", "feature").expect("merge base");
        let cache_dir = repo.common_git_dir().expect("common git dir");
        let mut disk_cache = TuiDiffCache::default();
        disk_cache.insert(
            TuiDiffCache::key(
                "main",
                "feature",
                &parent_oid,
                &old_branch_oid,
                &merge_base_oid,
            ),
            DiskCachedDiff {
                stat: vec![DiskDiffStat {
                    file: "README.md".to_string(),
                    additions: 1,
                    deletions: 0,
                }],
                lines: vec![DiskDiffLine {
                    content: "stale cached diff line".to_string(),
                    line_type: "context".to_string(),
                }],
            },
        );
        disk_cache.save(&cache_dir).expect("save cache");

        std::fs::write(workdir.join("README.md"), "hello\nfeature\nupdated\n")
            .expect("write README");
        run_git(&workdir, &["add", "README.md"]);
        run_git(&workdir, &["commit", "-m", "update feature"]);

        let mut app = minimal_app(
            repo,
            vec![
                skeleton_branch("main", None, false),
                skeleton_branch("feature", Some("main"), true),
            ],
        );

        app.select_next();

        assert_eq!(
            app.diff_queued,
            Some(DiffRequest::new("feature".to_string(), "main".to_string()))
        );
        assert!(app.selected_diff.is_empty());
        assert!(app.diff_stat.is_empty());
    }

    #[test]
    fn diff_loader_persists_loaded_diff_for_reopen() {
        let (_tempdir, repo) = test_repo();
        let workdir = repo.workdir().expect("workdir").to_path_buf();
        run_git(&workdir, &["switch", "-c", "feature"]);
        std::fs::write(workdir.join("README.md"), "hello\nfeature\n").expect("write README");
        run_git(&workdir, &["add", "README.md"]);
        run_git(&workdir, &["commit", "-m", "feature"]);

        let cache_dir = repo.common_git_dir().expect("common git dir");
        let request = DiffRequest::new("feature".to_string(), "main".to_string());
        let session = RepositorySession::open(&workdir).expect("open session");
        let receiver = spawn_diff_loader(session, request.clone());

        match receiver
            .recv_timeout(Duration::from_secs(15))
            .expect("diff update")
        {
            DiffUpdate::Loaded {
                request: loaded, ..
            } => assert_eq!(loaded, request),
            DiffUpdate::Unavailable { .. } => panic!("diff should load"),
        }

        let parent_oid = repo.rev_parse("main").expect("main oid");
        let branch_oid = repo.rev_parse("feature").expect("feature oid");
        let merge_base_oid = repo.merge_base_refs("main", "feature").expect("merge base");
        let key = TuiDiffCache::key("main", "feature", &parent_oid, &branch_oid, &merge_base_oid);
        let cache = TuiDiffCache::load(&cache_dir);
        let cached = cache.get(&key).expect("persisted diff");
        assert_eq!(cached.stat.len(), 1);
        assert!(cached.lines.iter().any(|line| line.content == "+feature"));
    }

    #[test]
    fn diff_loader_does_not_cache_git_failures_as_empty_success() {
        let (_tempdir, repo) = test_repo();
        let workdir = repo.workdir().expect("workdir").to_path_buf();
        run_git(&workdir, &["switch", "-c", "feature"]);
        std::fs::write(workdir.join("README.md"), "hello\nfeature\n").expect("write README");
        run_git(&workdir, &["add", "README.md"]);
        run_git(&workdir, &["commit", "-m", "feature"]);

        let parent_oid = repo.rev_parse("main").expect("main oid");
        let branch_oid = repo.rev_parse("feature").expect("feature oid");
        let merge_base_oid = repo.merge_base_refs("main", "feature").expect("merge base");
        let blob_oid = repo
            .rev_parse("feature:README.md")
            .expect("feature README blob");
        let cache_dir = repo.common_git_dir().expect("common git dir");
        let object_path = cache_dir
            .join("objects")
            .join(&blob_oid[..2])
            .join(&blob_oid[2..]);
        std::fs::remove_file(object_path).expect("remove feature blob");
        let request = DiffRequest::new("feature".to_string(), "main".to_string());
        let session = RepositorySession::open(&workdir).expect("open session");

        let update = spawn_diff_loader(session, request.clone())
            .recv_timeout(Duration::from_secs(15))
            .expect("diff update");

        match update {
            DiffUpdate::Unavailable { request: failed } => assert_eq!(failed, request),
            DiffUpdate::Loaded { .. } => panic!("failed diff must remain unavailable"),
        }
        let key = TuiDiffCache::key("main", "feature", &parent_oid, &branch_oid, &merge_base_oid);
        assert!(TuiDiffCache::load(&cache_dir).get(&key).is_none());
        assert!(!cache_dir.join("stax").join("tui-diff-cache.json").exists());

        let error = RepositorySession::open(&workdir)
            .expect("open session")
            .diff("feature", "main")
            .unwrap_err();
        let message = format!("{error:#}");
        assert!(message.contains("git diff"), "{message}");
        assert!(message.contains("failed with"), "{message}");
        assert!(TuiDiffCache::load(&cache_dir).get(&key).is_none());
    }

    #[test]
    fn substring_filter_empty_query_returns_all_indices_in_order() {
        let candidates = names(&["main", "feat-a", "feat-b"]);
        assert_eq!(substring_filter_indices(&candidates, ""), vec![0, 1, 2]);
    }

    #[test]
    fn substring_filter_matches_case_insensitively() {
        let candidates = names(&["Main", "FEAT-A", "feat-b"]);
        assert_eq!(substring_filter_indices(&candidates, "feat"), vec![1, 2]);
        assert_eq!(substring_filter_indices(&candidates, "MAIN"), vec![0]);
    }

    #[test]
    fn substring_filter_returns_empty_when_nothing_matches() {
        let candidates = names(&["main", "feat-a"]);
        assert!(substring_filter_indices(&candidates, "xyz").is_empty());
    }

    #[test]
    fn live_ci_text_handles_missing_checks() {
        let summary = CiSummary {
            overall_status: None,
            total: 0,
            passed: 0,
            failed: 0,
            running: 0,
            queued: 0,
            skipped: 0,
            started_at: None,
            completed_at: None,
            average_secs: None,
        };

        let (text, dimmed) = live_ci_summary_text(&summary);
        assert_eq!(text, "Live CI: no checks reported for the latest push");
        assert!(dimmed);
    }

    #[test]
    fn ci_loader_reports_actionable_session_errors() {
        let (_tempdir, repo) = test_repo();
        let session =
            RepositorySession::open(repo.workdir().expect("workdir")).expect("open session");

        let update = spawn_ci_loader(session, "main".to_string())
            .recv_timeout(Duration::from_secs(15))
            .expect("CI update");

        match update {
            CiUpdate::Unavailable { branch, message } => {
                assert_eq!(branch, "main");
                assert!(message.contains("configure a git remote"));
            }
            CiUpdate::Loaded { .. } => panic!("CI should be unavailable without a remote"),
        }
    }
}