pacsea 0.8.2

A fast, friendly TUI for browsing and installing Arch and AUR packages with built-in news and security scanning
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
//! Individual modal handler functions that encapsulate field extraction and restoration.

use crossterm::event::{KeyCode, KeyEvent};
use tokio::sync::mpsc;

use super::restore;
use crate::install::ExecutorRequest;
use crate::state::{AppState, Modal, PackageItem};

/// Startup selector item count.
const STARTUP_SETUP_SELECTOR_ITEMS: usize = 7;

/// What: Check whether a startup selector task can be toggled by the user.
#[must_use]
fn startup_selector_task_selectable(
    task: crate::state::modal::StartupSetupTask,
    app: &AppState,
    active_tool: Option<crate::logic::privilege::PrivilegeTool>,
) -> bool {
    match task {
        crate::state::modal::StartupSetupTask::SshAurSetup => {
            !app.aur_ssh_help_ready.unwrap_or(false)
        }
        crate::state::modal::StartupSetupTask::SudoTimestampSetup => {
            matches!(
                active_tool,
                Some(crate::logic::privilege::PrivilegeTool::Sudo)
            )
        }
        crate::state::modal::StartupSetupTask::DoasPersistSetup => {
            matches!(
                active_tool,
                Some(crate::logic::privilege::PrivilegeTool::Doas)
            )
        }
        _ => true,
    }
}

/// What: Handle key events for Alert modal, including restoration logic.
///
/// Inputs:
/// - `ke`: Key event
/// - `app`: Mutable application state
/// - `modal`: Alert modal variant with message
///
/// Output:
/// - `true` if Esc was pressed (to stop propagation), otherwise `false`
///
/// Details:
/// - Delegates to common handler and handles restoration
/// - Returns the result from common handler to prevent event propagation when Esc is pressed
pub(super) fn handle_alert_modal(ke: KeyEvent, app: &mut AppState, modal: &Modal) -> bool {
    if let Modal::Alert { message } = modal {
        super::common::handle_alert(ke, app, message)
    } else {
        false
    }
}

/// What: Handle key events for `PreflightExec` modal, including restoration logic.
///
/// Inputs:
/// - `ke`: Key event
/// - `app`: Mutable application state
/// - `modal`: `PreflightExec` modal variant
///
/// Output:
/// - `false` (never stops propagation)
///
/// Details:
/// - Delegates to common handler, updates verbose flag, and restores modal if needed
/// - Returns `true` when modal is closed/transitioned to stop key propagation
/// - Defers Enter to post-summary when a repository overlap check is pending but the executor has
///   not yet set `success`, so the overlap step can still run after completion
pub(super) fn handle_preflight_exec_modal(
    ke: KeyEvent,
    app: &mut AppState,
    mut modal: Modal,
) -> bool {
    if let Modal::PreflightExec {
        ref mut verbose,
        ref log_lines,
        ref abortable,
        ref items,
        ref action,
        ref tab,
        ref header_chips,
        ref success,
    } = modal
    {
        // Defer Enter until the executor sets `success`: overlap runs only when
        // `success == Some(true)`; an early Enter would open post-summary with `success` still
        // `None` and drop `Finished` output because the modal is no longer `PreflightExec`.
        if matches!(ke.code, KeyCode::Enter | KeyCode::Char('\n' | '\r'))
            && app.pending_repo_apply_overlap_check.is_some()
            && items.is_empty()
            && success.is_none()
        {
            app.toast_message = Some(crate::i18n::t(
                app,
                "app.toasts.repo_apply_wait_exec_finish",
            ));
            app.toast_expires_at =
                Some(std::time::Instant::now() + std::time::Duration::from_secs(4));
            app.modal = modal;
            return true;
        }
        // Pass success to the handler since app.modal is taken during dispatch
        let should_stop =
            super::common::handle_preflight_exec(ke, app, verbose, *abortable, items, *success);
        if should_stop {
            return true; // Modal was closed or transitioned, stop propagation
        }
        restore::restore_if_not_closed_with_excluded_keys(
            app,
            &ke,
            &[KeyCode::Esc, KeyCode::Char('q')],
            Modal::PreflightExec {
                verbose: *verbose,
                log_lines: log_lines.clone(),
                abortable: *abortable,
                items: items.clone(),
                action: *action,
                tab: *tab,
                success: *success,
                header_chips: header_chips.clone(),
            },
        );
    }
    false
}

/// What: Handle key events for `PostSummary` modal, including restoration logic.
///
/// Inputs:
/// - `ke`: Key event
/// - `app`: Mutable application state
/// - `modal`: `PostSummary` modal variant
///
/// Output:
/// - `false` (never stops propagation)
///
/// Details:
/// - Delegates to common handler and restores modal if needed
/// - Returns `true` when modal is closed to stop key propagation
pub(super) fn handle_post_summary_modal(ke: KeyEvent, app: &mut AppState, modal: &Modal) -> bool {
    if let Modal::PostSummary {
        success,
        changed_files,
        pacnew_count,
        pacsave_count,
        services_pending,
        snapshot_label,
    } = modal
    {
        let should_stop = super::common::handle_post_summary(ke, app, services_pending);
        if should_stop {
            return true; // Modal was closed, stop propagation
        }
        restore::restore_if_not_closed_with_excluded_keys(
            app,
            &ke,
            &[
                KeyCode::Esc,
                KeyCode::Enter,
                KeyCode::Char('q'),
                KeyCode::Char('\n'),
                KeyCode::Char('\r'),
            ],
            Modal::PostSummary {
                success: *success,
                changed_files: *changed_files,
                pacnew_count: *pacnew_count,
                pacsave_count: *pacsave_count,
                services_pending: services_pending.clone(),
                snapshot_label: snapshot_label.clone(),
            },
        );
    }
    false
}

/// What: Handle key events for `SystemUpdate` modal, including restoration logic.
///
/// Inputs:
/// - `ke`: Key event
/// - `app`: Mutable application state
/// - `modal`: `SystemUpdate` modal variant
///
/// Output:
/// - `true` if event propagation should stop, otherwise `false`
///
/// Details:
/// - Delegates to `system_update` handler and restores modal if needed
pub(super) fn handle_system_update_modal(
    ke: KeyEvent,
    app: &mut AppState,
    mut modal: Modal,
) -> bool {
    if let Modal::SystemUpdate {
        ref mut do_mirrors,
        ref mut do_pacman,
        ref mut force_sync,
        ref mut do_aur,
        ref mut do_cache,
        ref mut country_idx,
        ref countries,
        ref mut mirror_count,
        ref mut cursor,
    } = modal
    {
        let should_stop = super::system_update::handle_system_update(
            ke,
            app,
            do_mirrors,
            do_pacman,
            force_sync,
            do_aur,
            do_cache,
            country_idx,
            countries,
            mirror_count,
            cursor,
        );
        return restore::restore_if_not_closed_with_option_result(
            app,
            &ke,
            should_stop,
            Modal::SystemUpdate {
                do_mirrors: *do_mirrors,
                do_pacman: *do_pacman,
                force_sync: *force_sync,
                do_aur: *do_aur,
                do_cache: *do_cache,
                country_idx: *country_idx,
                countries: countries.clone(),
                mirror_count: *mirror_count,
                cursor: *cursor,
            },
        );
    }
    false
}

/// What: Handle key events for `ConfirmInstall` modal.
///
/// Inputs:
/// - `ke`: Key event
/// - `app`: Mutable application state
/// - `modal`: `ConfirmInstall` modal variant
///
/// Output:
/// - `false` (never stops propagation)
///
/// Details:
/// - Delegates to install handler
pub(super) fn handle_confirm_install_modal(
    ke: KeyEvent,
    app: &mut AppState,
    modal: &Modal,
) -> bool {
    if let Modal::ConfirmInstall { items } = modal {
        super::install::handle_confirm_install(ke, app, items);
    }
    false
}

/// What: Handle key events for `ConfirmRemove` modal.
///
/// Inputs:
/// - `ke`: Key event
/// - `app`: Mutable application state
/// - `modal`: `ConfirmRemove` modal variant
///
/// Output:
/// - `false` (never stops propagation)
///
/// Details:
/// - Delegates to install handler
pub(super) fn handle_confirm_remove_modal(ke: KeyEvent, app: &mut AppState, modal: &Modal) -> bool {
    if let Modal::ConfirmRemove { items } = modal {
        super::install::handle_confirm_remove(ke, app, items);
    }
    false
}

/// What: Handle key events for `ConfirmBatchUpdate` modal.
///
/// Inputs:
/// - `ke`: Key event
/// - `app`: Mutable application state
/// - `modal`: `ConfirmBatchUpdate` modal variant
///
/// Output:
/// - `true` if Esc/q was pressed (to stop propagation), otherwise `false`
///
/// Details:
/// - Handles Esc/q to cancel, Enter to continue with batch update
/// - Uses executor pattern (PTY-based execution) instead of spawning terminal
pub(super) fn handle_confirm_batch_update_modal(
    ke: KeyEvent,
    app: &mut AppState,
    modal: &Modal,
) -> bool {
    if let Modal::ConfirmBatchUpdate { items, dry_run } = modal {
        match ke.code {
            KeyCode::Esc | KeyCode::Char('q' | 'Q') => {
                // Cancel update
                app.modal = crate::state::Modal::None;
                return true;
            }
            KeyCode::Enter | KeyCode::Char('\n' | '\r') => {
                // Continue with batch update - use executor pattern instead of spawning terminal
                let items_clone = items.clone();
                let dry_run_clone = *dry_run;
                app.dry_run = dry_run_clone;

                // Get header_chips if available from pending_exec_header_chips, otherwise use default
                let header_chips = app.pending_exec_header_chips.take().unwrap_or_default();

                if crate::events::install::try_open_warn_aur_repo_duplicate_modal(
                    app,
                    &items_clone,
                    header_chips.clone(),
                ) {
                    return true;
                }

                let settings = crate::theme::settings();
                if crate::logic::password::should_use_interactive_auth_handoff(&settings) {
                    match crate::events::try_interactive_auth_handoff() {
                        Ok(true) => crate::events::preflight::start_execution(
                            app,
                            &items_clone,
                            crate::state::PreflightAction::Install,
                            header_chips,
                            None,
                        ),
                        Ok(false) => {
                            app.modal = crate::state::Modal::Alert {
                                message: crate::i18n::t(app, "app.errors.authentication_failed"),
                            };
                        }
                        Err(e) => {
                            app.modal = crate::state::Modal::Alert { message: e };
                        }
                    }
                } else if crate::logic::password::resolve_auth_mode(&settings)
                    == crate::logic::privilege::AuthMode::PasswordlessOnly
                    && crate::logic::password::should_use_passwordless_sudo(&settings)
                {
                    crate::events::preflight::start_execution(
                        app,
                        &items_clone,
                        crate::state::PreflightAction::Install,
                        header_chips,
                        None,
                    );
                } else {
                    app.modal = crate::state::Modal::PasswordPrompt {
                        purpose: crate::state::modal::PasswordPurpose::Install,
                        items: items_clone,
                        input: crate::state::SecureString::default(),
                        cursor: 0,
                        error: None,
                    };
                    app.pending_exec_header_chips = Some(header_chips);
                }
                return true;
            }
            _ => {}
        }
    }
    false
}

/// What: Handle key events for `ConfirmAurUpdate` modal.
///
/// Inputs:
/// - `ke`: Key event
/// - `app`: Mutable application state
/// - `modal`: `ConfirmAurUpdate` modal variant
///
/// Output:
/// - `true` if modal was closed/transitioned, `false` otherwise
///
/// Details:
/// - Enter (Y) continues with AUR update
/// - Esc/q (N) cancels and closes modal
pub(super) fn handle_confirm_aur_update_modal(
    ke: KeyEvent,
    app: &mut AppState,
    modal: &Modal,
) -> bool {
    if let Modal::ConfirmAurUpdate { .. } = modal {
        match ke.code {
            KeyCode::Esc | KeyCode::Char('q' | 'Q' | 'n' | 'N') => {
                // Cancel AUR update
                app.pending_aur_update_command = None;
                app.modal = crate::state::Modal::None;
                return true;
            }
            KeyCode::Enter | KeyCode::Char('\n' | '\r' | 'y' | 'Y') => {
                // Continue with AUR update
                if let Some(aur_command) = app.pending_aur_update_command.take() {
                    let password = app.pending_executor_password.clone();
                    let dry_run = app.dry_run;

                    // Transition back to PreflightExec for AUR update
                    app.modal = Modal::PreflightExec {
                        items: Vec::new(),
                        action: crate::state::PreflightAction::Install,
                        tab: crate::state::PreflightTab::Summary,
                        verbose: false,
                        log_lines: Vec::new(),
                        abortable: true,
                        header_chips: app.pending_exec_header_chips.take().unwrap_or_default(),
                        success: None,
                    };

                    // Execute AUR update command
                    app.pending_executor_request = Some(ExecutorRequest::Update {
                        commands: vec![aur_command],
                        password,
                        dry_run,
                    });
                } else {
                    app.modal = crate::state::Modal::None;
                }
                return true;
            }
            _ => {}
        }
    }
    false
}

/// What: Handle keys for `WarnAurRepoDuplicate`, restoring modal when the key is not consumed.
///
/// Inputs:
/// - `ke`: Key event.
/// - `app`: Application state.
/// - `modal`: Taken modal reference (original state before `mem::take`).
///
/// Output:
/// - `true` when the event was consumed.
///
/// Details:
/// - Delegates to [`super::foreign_overlap::handle_warn_aur_repo_duplicate_modal`].
pub(super) fn handle_warn_aur_repo_duplicate_modal(
    ke: KeyEvent,
    app: &mut AppState,
    modal: &Modal,
) -> bool {
    if let Modal::WarnAurRepoDuplicate {
        dup_names,
        packages,
        header_chips,
    } = modal
    {
        let consumed = super::foreign_overlap::handle_warn_aur_repo_duplicate_modal(
            ke,
            app,
            dup_names,
            packages,
            header_chips,
        );
        if !consumed {
            app.modal = modal.clone();
        }
        return consumed;
    }
    false
}

/// What: Handle keys for `ForeignRepoOverlap`, restoring modal when the key is not consumed.
///
/// Inputs:
/// - `ke`: Key event.
/// - `app`: Application state.
/// - `modal`: Taken modal reference.
///
/// Output:
/// - `true` when the event was consumed.
pub(super) fn handle_foreign_repo_overlap_modal(
    ke: KeyEvent,
    app: &mut AppState,
    modal: &Modal,
) -> bool {
    if let Modal::ForeignRepoOverlap {
        repo_name,
        entries,
        phase,
    } = modal
    {
        let consumed = super::foreign_overlap::handle_foreign_repo_overlap_modal(
            ke,
            app,
            repo_name,
            entries,
            phase.clone(),
        );
        if !consumed {
            app.modal = modal.clone();
        }
        return consumed;
    }
    false
}

/// What: Handle key events for `ConfirmAurVote` modal.
///
/// Inputs:
/// - `ke`: Key event.
/// - `app`: Mutable application state.
/// - `modal`: `ConfirmAurVote` modal variant.
///
/// Output:
/// - `true` if modal was closed or transitioned, `false` otherwise.
///
/// Details:
/// - Enter/y confirms and queues the request for tick-handler dispatch.
/// - Esc/q/n cancels the intent and closes the modal.
pub(super) fn handle_confirm_aur_vote_modal(
    ke: KeyEvent,
    app: &mut AppState,
    modal: &Modal,
) -> bool {
    if let Modal::ConfirmAurVote {
        pkgbase, action, ..
    } = modal
    {
        match ke.code {
            KeyCode::Esc | KeyCode::Char('q' | 'Q' | 'n' | 'N') => {
                app.pending_aur_vote_intent = None;
                app.modal = crate::state::Modal::None;
                app.toast_message =
                    Some(format!("Cancelled AUR {action} request for '{pkgbase}'."));
                app.toast_expires_at =
                    Some(std::time::Instant::now() + std::time::Duration::from_secs(3));
                return true;
            }
            KeyCode::Enter | KeyCode::Char('\n' | '\r' | 'y' | 'Y') => {
                app.pending_aur_vote_intent = None;
                app.pending_aur_vote_request = Some((pkgbase.clone(), *action));
                let action_label = match action {
                    crate::sources::VoteAction::Vote => "vote",
                    crate::sources::VoteAction::Unvote => "unvote",
                };
                app.toast_message = Some(format!(
                    "Queued AUR {action_label} request for '{pkgbase}'."
                ));
                app.toast_expires_at =
                    Some(std::time::Instant::now() + std::time::Duration::from_secs(3));
                app.modal = crate::state::Modal::None;
                return true;
            }
            _ => {}
        }
    }
    false
}

/// What: Handle key events for `ConfirmReinstall` modal.
///
/// Inputs:
/// - `ke`: Key event
/// - `app`: Mutable application state
/// - `modal`: `ConfirmReinstall` modal variant
///
/// Output:
/// - `true` if modal was closed/transitioned, `false` otherwise
///
/// Details:
/// - Handles Esc/q to cancel, Enter to proceed with reinstall
pub(super) fn handle_confirm_reinstall_modal(
    ke: KeyEvent,
    app: &mut AppState,
    modal: &Modal,
) -> bool {
    if let Modal::ConfirmReinstall {
        items: _installed_items,
        all_items,
        header_chips,
    } = modal
    {
        match ke.code {
            KeyCode::Esc | KeyCode::Char('q' | 'Q') => {
                // Cancel reinstall
                app.modal = crate::state::Modal::None;
                return true;
            }
            KeyCode::Enter | KeyCode::Char('\n' | '\r') => {
                // Proceed with reinstall - use executor pattern
                // Use all_items (all packages) instead of just installed ones
                let items_clone = all_items.clone();
                let header_chips_clone = header_chips.clone();
                if crate::events::install::try_open_warn_aur_repo_duplicate_modal(
                    app,
                    &items_clone,
                    header_chips_clone.clone(),
                ) {
                    return true;
                }
                // Retrieve password that was stored when reinstall confirmation was shown
                let password = app.pending_executor_password.take();

                // All installs need sudo (official and AUR both need sudo)
                if password.is_none() {
                    // Check faillock status before proceeding
                    let username = std::env::var("USER").unwrap_or_else(|_| "user".to_string());
                    if let Some(lockout_msg) =
                        crate::logic::faillock::get_lockout_message_if_locked(&username, app)
                    {
                        // User is locked out - show warning
                        app.modal = crate::state::Modal::Alert {
                            message: lockout_msg,
                        };
                        return true;
                    }

                    let settings = crate::theme::settings();
                    if crate::logic::password::should_use_interactive_auth_handoff(&settings) {
                        match crate::events::try_interactive_auth_handoff() {
                            Ok(true) => crate::events::preflight::start_execution(
                                app,
                                &items_clone,
                                crate::state::PreflightAction::Install,
                                header_chips_clone,
                                None,
                            ),
                            Ok(false) => {
                                app.modal = crate::state::Modal::Alert {
                                    message: crate::i18n::t(
                                        app,
                                        "app.errors.authentication_failed",
                                    ),
                                };
                            }
                            Err(e) => {
                                app.modal = crate::state::Modal::Alert { message: e };
                            }
                        }
                    } else if crate::logic::password::resolve_auth_mode(&settings)
                        == crate::logic::privilege::AuthMode::PasswordlessOnly
                        && crate::logic::password::should_use_passwordless_sudo(&settings)
                    {
                        crate::events::preflight::start_execution(
                            app,
                            &items_clone,
                            crate::state::PreflightAction::Install,
                            header_chips_clone,
                            None,
                        );
                    } else {
                        app.modal = crate::state::Modal::PasswordPrompt {
                            purpose: crate::state::modal::PasswordPurpose::Install,
                            items: items_clone,
                            input: crate::state::SecureString::default(),
                            cursor: 0,
                            error: None,
                        };
                        app.pending_exec_header_chips = Some(header_chips_clone);
                    }
                }
                return true;
            }
            _ => {}
        }
    }
    false
}

/// What: Handle key events for Help modal.
///
/// Inputs:
/// - `ke`: Key event
/// - `app`: Mutable application state
/// - `modal`: Help modal variant (unit type)
///
/// Output:
/// - `true` if Esc was pressed (to stop propagation), otherwise `false`
///
/// Details:
/// - Delegates to common handler
pub(super) fn handle_help_modal(ke: KeyEvent, app: &mut AppState, _modal: Modal) -> bool {
    super::common::handle_help(ke, app)
}

/// What: Handle key events for News modal, including restoration logic.
///
/// Inputs:
/// - `ke`: Key event
/// - `app`: Mutable application state
/// - `modal`: News modal variant
///
/// Output:
/// - `true` if Esc was pressed (to stop propagation), otherwise `false`
///
/// Details:
/// - Delegates to common handler and restores modal if needed
pub(super) fn handle_news_modal(ke: KeyEvent, app: &mut AppState, mut modal: Modal) -> bool {
    if let Modal::News {
        ref items,
        ref mut selected,
        ref mut scroll,
    } = modal
    {
        let result = super::common::handle_news(ke, app, items, selected, scroll);
        return restore::restore_if_not_closed_with_bool_result(
            app,
            result,
            Modal::News {
                items: items.clone(),
                selected: *selected,
                scroll: *scroll,
            },
        );
    }
    false
}

/// What: Handle key events for Announcement modal, including restoration logic.
///
/// Inputs:
/// - `ke`: Key event
/// - `app`: Mutable application state
/// - `modal`: Announcement modal variant
///
/// Output:
/// - `true` if Esc was pressed (to stop propagation), otherwise `false`
///
/// Details:
/// - Delegates to common handler and restores modal if needed
pub(super) fn handle_announcement_modal(
    ke: KeyEvent,
    app: &mut AppState,
    mut modal: Modal,
) -> bool {
    if let Modal::Announcement {
        ref title,
        ref content,
        ref id,
        ref mut scroll,
    } = modal
    {
        let old_id = id.clone();
        let result = super::common::handle_announcement(ke, app, id, scroll);
        // Only restore if modal wasn't closed AND it's still the same announcement
        // (don't restore if a new pending announcement was shown)
        match &app.modal {
            Modal::Announcement { id: new_id, .. } if *new_id == old_id => {
                // Same announcement, restore scroll state
                app.modal = Modal::Announcement {
                    title: title.clone(),
                    content: content.clone(),
                    id: old_id,
                    scroll: *scroll,
                };
            }
            _ => {
                // Modal was closed or different modal (e.g., pending announcement was shown), don't restore
            }
        }
        return result;
    }
    false
}

/// What: Handle key events for Updates modal, including restoration logic.
///
/// Inputs:
/// - `ke`: Key event
/// - `app`: Mutable application state
/// - `modal`: Updates modal variant
///
/// Output:
/// - `true` if Esc was pressed (to stop propagation), otherwise `false`
///
/// Details:
/// - Delegates to common handler and restores modal if needed
pub(super) fn handle_updates_modal(ke: KeyEvent, app: &mut AppState, mut modal: Modal) -> bool {
    if let Modal::Updates {
        ref entries,
        ref mut scroll,
        ref mut selected,
        ref mut filter_active,
        ref mut filter_query,
        ref mut filter_caret,
        ref mut last_selected_pkg_name,
        ref mut filtered_indices,
        ref mut selected_pkg_names,
    } = modal
    {
        let result = super::common::handle_updates(
            ke,
            app,
            entries,
            scroll,
            selected,
            filter_active,
            filter_query,
            filter_caret,
            last_selected_pkg_name,
            filtered_indices,
            selected_pkg_names,
        );
        return restore::restore_if_not_closed_with_bool_result(
            app,
            result,
            Modal::Updates {
                entries: entries.clone(),
                scroll: *scroll,
                selected: *selected,
                filter_active: *filter_active,
                filter_query: filter_query.clone(),
                filter_caret: *filter_caret,
                last_selected_pkg_name: last_selected_pkg_name.clone(),
                filtered_indices: filtered_indices.clone(),
                selected_pkg_names: selected_pkg_names.clone(),
            },
        );
    }
    false
}

/// What: Handle key events for `OptionalDeps` modal, including restoration logic.
///
/// Inputs:
/// - `ke`: Key event
/// - `app`: Mutable application state
/// - `modal`: `OptionalDeps` modal variant
///
/// Output:
/// - `true` if event propagation should stop, otherwise `false`
///
/// Details:
/// - Delegates to `optional_deps` handler and restores modal if needed
pub(super) fn handle_optional_deps_modal(
    ke: KeyEvent,
    app: &mut AppState,
    mut modal: Modal,
) -> bool {
    if let Modal::OptionalDeps {
        ref rows,
        ref mut selected,
        ref mut selected_pkg_names,
    } = modal
    {
        let should_stop =
            super::optional_deps::handle_optional_deps(ke, app, rows, selected, selected_pkg_names);
        return restore::restore_if_not_closed_with_option_result(
            app,
            &ke,
            should_stop,
            Modal::OptionalDeps {
                rows: rows.clone(),
                selected: *selected,
                selected_pkg_names: selected_pkg_names.clone(),
            },
        );
    }
    false
}

/// What: Handle key events for the read-only Repositories modal.
///
/// Inputs:
/// - `ke`: Key event.
/// - `app`: Mutable application state.
/// - `modal`: `Repositories` modal variant.
///
/// Output:
/// - `true` when Esc/q should stop propagation, as with other list modals.
///
/// Details:
/// - Restores modal state after navigation unless the user closed it.
pub(super) fn handle_repositories_modal(
    ke: KeyEvent,
    app: &mut AppState,
    mut modal: Modal,
) -> bool {
    if let Modal::Repositories {
        ref rows,
        ref mut selected,
        ref mut scroll,
        ref repos_conf_error,
        ref pacman_warnings,
    } = modal
    {
        if matches!(ke.code, KeyCode::Char(' ')) {
            match super::repositories::toggle_selected_repo_enabled_and_apply(
                app,
                rows,
                *selected,
                *scroll,
                repos_conf_error.as_deref(),
            ) {
                Ok(()) => return true,
                Err(msg) => {
                    app.toast_message = Some(msg);
                    app.toast_expires_at =
                        Some(std::time::Instant::now() + std::time::Duration::from_secs(8));
                    return restore::restore_if_not_closed_with_option_result(
                        app,
                        &ke,
                        Some(false),
                        Modal::Repositories {
                            rows: rows.clone(),
                            selected: *selected,
                            scroll: *scroll,
                            repos_conf_error: repos_conf_error.clone(),
                            pacman_warnings: pacman_warnings.clone(),
                        },
                    );
                }
            }
        }
        if matches!(ke.code, KeyCode::Enter | KeyCode::Char('\n' | '\r')) {
            match super::repositories::enter_repo_apply(
                app,
                rows,
                *selected,
                *scroll,
                repos_conf_error.as_deref(),
            ) {
                Ok(()) => return true,
                Err(msg) => {
                    app.modal = Modal::Alert { message: msg };
                    return true;
                }
            }
        }
        if matches!(ke.code, KeyCode::Char('r' | 'R')) {
            match super::repositories::enter_repo_key_refresh(
                app,
                rows,
                *selected,
                repos_conf_error.as_deref(),
            ) {
                Ok(()) => return true,
                Err(msg) => {
                    app.modal = Modal::Alert { message: msg };
                    return true;
                }
            }
        }
        if matches!(ke.code, KeyCode::Char('s' | 'S')) {
            super::repositories::open_repos_conf_example_in_editor(app);
            return restore::restore_if_not_closed_with_option_result(
                app,
                &ke,
                Some(false),
                Modal::Repositories {
                    rows: rows.clone(),
                    selected: *selected,
                    scroll: *scroll,
                    repos_conf_error: repos_conf_error.clone(),
                    pacman_warnings: pacman_warnings.clone(),
                },
            );
        }
        let should_stop = super::repositories::handle_repositories_modal_keys(
            ke,
            app,
            rows.len(),
            selected,
            scroll,
        );
        return restore::restore_if_not_closed_with_option_result(
            app,
            &ke,
            should_stop,
            Modal::Repositories {
                rows: rows.clone(),
                selected: *selected,
                scroll: *scroll,
                repos_conf_error: repos_conf_error.clone(),
                pacman_warnings: pacman_warnings.clone(),
            },
        );
    }
    false
}

/// What: Handle key events for `SshAurSetup` modal, including restoration logic.
///
/// Inputs:
/// - `ke`: Key event.
/// - `app`: Mutable application state.
/// - `modal`: `SshAurSetup` modal variant.
///
/// Output:
/// - `true` if event propagation should stop, otherwise `false`.
pub(super) fn handle_ssh_setup_modal(ke: KeyEvent, app: &mut AppState, mut modal: Modal) -> bool {
    if let Modal::SshAurSetup {
        ref mut step,
        ref mut status_lines,
        ref mut existing_host_block,
    } = modal
    {
        let result = super::optional_deps::handle_ssh_setup_modal(
            ke,
            app,
            step,
            status_lines,
            existing_host_block,
        );
        return restore::restore_if_not_closed_with_option_result(
            app,
            &ke,
            result,
            Modal::SshAurSetup {
                step: *step,
                status_lines: status_lines.clone(),
                existing_host_block: existing_host_block.clone(),
            },
        );
    }
    false
}

/// What: Handle key events for `ScanConfig` modal, including restoration logic.
///
/// Inputs:
/// - `ke`: Key event
/// - `app`: Mutable application state
/// - `modal`: `ScanConfig` modal variant
///
/// Output:
/// - `false` (never stops propagation)
///
/// Details:
/// - Delegates to scan handler and restores modal if needed
pub(super) fn handle_scan_config_modal(ke: KeyEvent, app: &mut AppState, mut modal: Modal) -> bool {
    if let Modal::ScanConfig {
        ref mut do_clamav,
        ref mut do_trivy,
        ref mut do_semgrep,
        ref mut do_shellcheck,
        ref mut do_virustotal,
        ref mut do_custom,
        ref mut do_sleuth,
        ref mut cursor,
    } = modal
    {
        super::scan::handle_scan_config(
            ke,
            app,
            do_clamav,
            do_trivy,
            do_semgrep,
            do_shellcheck,
            do_virustotal,
            do_custom,
            do_sleuth,
            cursor,
        );
        restore::restore_if_not_closed_with_esc(
            app,
            &ke,
            Modal::ScanConfig {
                do_clamav: *do_clamav,
                do_trivy: *do_trivy,
                do_semgrep: *do_semgrep,
                do_shellcheck: *do_shellcheck,
                do_virustotal: *do_virustotal,
                do_custom: *do_custom,
                do_sleuth: *do_sleuth,
                cursor: *cursor,
            },
        );
    }
    false
}

/// What: Handle key events for `NewsSetup` modal, including restoration logic.
///
/// Inputs:
/// - `ke`: Key event
/// - `app`: Mutable application state
/// - `modal`: `NewsSetup` modal variant
///
/// Output:
/// - `true` if modal was closed (to stop propagation), otherwise `false`
///
/// Details:
/// - Handles navigation, toggles, date selection, and Enter to save settings
/// - On save, persists settings and triggers startup news fetch
pub(super) fn handle_news_setup_modal(ke: KeyEvent, app: &mut AppState, mut modal: Modal) -> bool {
    if let Modal::NewsSetup {
        ref mut show_arch_news,
        ref mut show_advisories,
        ref mut show_aur_updates,
        ref mut show_aur_comments,
        ref mut show_pkg_updates,
        ref mut max_age_days,
        ref mut cursor,
    } = modal
    {
        match ke.code {
            KeyCode::Esc => {
                // Cancel startup-news setup and continue startup flow.
                // Do not restore previous modal here: previous_modal is used by
                // unrelated flows (e.g. scan/preflight) and can be stale.
                app.previous_modal = None;
                app.modal = crate::state::Modal::None;
                if app.pending_startup_setup_steps.is_empty() {
                    super::common::show_next_pending_announcement(app);
                } else {
                    super::common::show_next_startup_setup_step(app);
                }
                return true;
            }
            KeyCode::Up => {
                if *cursor > 0 {
                    *cursor -= 1;
                }
            }
            KeyCode::Down => {
                // Max cursor is 7 (0-4 for toggles, 5-7 for date buttons)
                if *cursor < 7 {
                    *cursor += 1;
                }
            }
            KeyCode::Left => {
                // Navigate between date buttons when on date row (cursor 5-7)
                if *cursor >= 5 && *cursor <= 7 && *cursor > 5 {
                    *cursor -= 1;
                }
            }
            KeyCode::Right => {
                // Navigate between date buttons when on date row (cursor 5-7)
                if *cursor >= 5 && *cursor <= 7 && *cursor < 7 {
                    *cursor += 1;
                }
            }
            KeyCode::Char(' ') => match *cursor {
                0 => *show_arch_news = !*show_arch_news,
                1 => *show_advisories = !*show_advisories,
                2 => *show_aur_updates = !*show_aur_updates,
                3 => *show_aur_comments = !*show_aur_comments,
                4 => *show_pkg_updates = !*show_pkg_updates,
                5 => *max_age_days = Some(7),
                6 => *max_age_days = Some(30),
                7 => *max_age_days = Some(90),
                _ => {}
            },
            KeyCode::Enter | KeyCode::Char('\n' | '\r') => {
                // Save all settings
                crate::theme::save_startup_news_show_arch_news(*show_arch_news);
                crate::theme::save_startup_news_show_advisories(*show_advisories);
                crate::theme::save_startup_news_show_aur_updates(*show_aur_updates);
                crate::theme::save_startup_news_show_aur_comments(*show_aur_comments);
                crate::theme::save_startup_news_show_pkg_updates(*show_pkg_updates);
                crate::theme::save_startup_news_max_age_days(*max_age_days);
                crate::theme::save_startup_news_configured(true);

                // Mark that we need to trigger startup news fetch
                app.trigger_startup_news_fetch = true;

                // Close modal
                app.modal = crate::state::Modal::None;
                if app.pending_startup_setup_steps.is_empty() {
                    super::common::show_next_pending_announcement(app);
                } else {
                    super::common::show_next_startup_setup_step(app);
                }
                return true;
            }
            _ => {}
        }
        restore::restore_if_not_closed_with_esc(
            app,
            &ke,
            Modal::NewsSetup {
                show_arch_news: *show_arch_news,
                show_advisories: *show_advisories,
                show_aur_updates: *show_aur_updates,
                show_aur_comments: *show_aur_comments,
                show_pkg_updates: *show_pkg_updates,
                max_age_days: *max_age_days,
                cursor: *cursor,
            },
        );
    }
    false
}

/// What: Handle key events for `VirusTotalSetup` modal, including restoration logic.
///
/// Inputs:
/// - `ke`: Key event
/// - `app`: Mutable application state
/// - `modal`: `VirusTotalSetup` modal variant
///
/// Output:
/// - `true` (always stops propagation while this modal is active)
///
/// Details:
/// - Delegates to scan handler and restores modal if needed
pub(super) fn handle_virustotal_setup_modal(
    ke: KeyEvent,
    app: &mut AppState,
    mut modal: Modal,
) -> bool {
    if let Modal::VirusTotalSetup {
        ref mut input,
        ref mut cursor,
    } = modal
    {
        let should_advance = matches!(ke.code, KeyCode::Esc)
            || (matches!(ke.code, KeyCode::Enter | KeyCode::Char('\n' | '\r'))
                && !input.trim().is_empty());
        super::scan::handle_virustotal_setup(ke, app, input, cursor);
        if should_advance
            && matches!(app.modal, Modal::None)
            && !app.pending_startup_setup_steps.is_empty()
        {
            super::common::show_next_startup_setup_step(app);
        }
        if !(should_advance && matches!(app.modal, Modal::None)) {
            restore::restore_if_not_closed_with_esc(
                app,
                &ke,
                Modal::VirusTotalSetup {
                    input: input.clone(),
                    cursor: *cursor,
                },
            );
        }
        return true;
    }
    false
}

/// What: Handle key events for `SudoTimestampSetup` modal.
///
/// Inputs:
/// - `ke`: Key event
/// - `app`: Mutable application state
/// - `modal`: `SudoTimestampSetup` modal variant
///
/// Output:
/// - `true` (always stops propagation while this modal is active)
///
/// Details:
/// - Advances the first-startup queue when the wizard completes while a queue is pending.
#[allow(clippy::needless_pass_by_value)] // Matches `handle_modal_key` ownership pattern (`std::mem::take`).
pub(super) fn handle_sudo_timestamp_setup_modal(
    ke: KeyEvent,
    app: &mut AppState,
    modal: Modal,
) -> bool {
    let Modal::SudoTimestampSetup { mut setup } = modal else {
        return false;
    };
    let finished =
        super::sudo_timestamp_setup::handle_sudo_timestamp_setup_key(ke, app, &mut setup);
    if finished {
        app.modal = Modal::None;
        if !app.pending_startup_setup_steps.is_empty() {
            super::common::show_next_startup_setup_step(app);
        }
    } else {
        app.modal = Modal::SudoTimestampSetup { setup };
    }
    true
}

/// What: Handle key events for `DoasPersistSetup` modal.
///
/// Inputs:
/// - `ke`: Key event
/// - `app`: Mutable application state
/// - `modal`: `DoasPersistSetup` modal variant
///
/// Output:
/// - `true` (always stops propagation while this modal is active)
#[allow(clippy::needless_pass_by_value)]
pub(super) fn handle_doas_persist_setup_modal(
    ke: KeyEvent,
    app: &mut AppState,
    modal: Modal,
) -> bool {
    let Modal::DoasPersistSetup { mut setup } = modal else {
        return false;
    };
    let finished = super::doas_persist_setup::handle_doas_persist_setup_key(ke, app, &mut setup);
    if finished {
        app.modal = Modal::None;
        if !app.pending_startup_setup_steps.is_empty() {
            super::common::show_next_startup_setup_step(app);
        }
    } else {
        app.modal = Modal::DoasPersistSetup { setup };
    }
    true
}

/// What: Handle key events for `StartupSetupSelector` modal.
pub(super) fn handle_startup_setup_selector_modal(
    ke: KeyEvent,
    app: &mut AppState,
    mut modal: Modal,
) -> bool {
    if let Modal::StartupSetupSelector {
        ref mut cursor,
        ref mut selected,
        active_privilege_tool,
    } = modal
    {
        match ke.code {
            KeyCode::Esc => {
                app.pending_startup_setup_steps.clear();
                app.modal = Modal::None;
                super::common::show_next_pending_announcement(app);
                return true;
            }
            KeyCode::Char('r' | 'R') => {
                // Never show startup selector again.
                crate::theme::save_startup_news_configured(true);
                app.pending_startup_setup_steps.clear();
                app.modal = Modal::None;
                super::common::show_next_pending_announcement(app);
                return true;
            }
            KeyCode::Up | KeyCode::Char('k') => {
                if *cursor > 0 {
                    *cursor -= 1;
                }
            }
            KeyCode::Down | KeyCode::Char('j') => {
                if *cursor + 1 < STARTUP_SETUP_SELECTOR_ITEMS {
                    *cursor += 1;
                }
            }
            KeyCode::Char(' ') => {
                let max_cursor = STARTUP_SETUP_SELECTOR_ITEMS.saturating_sub(1);
                *cursor = (*cursor).min(max_cursor);
                let task = match *cursor {
                    0 => crate::state::modal::StartupSetupTask::ArchNews,
                    1 => crate::state::modal::StartupSetupTask::SshAurSetup,
                    2 => crate::state::modal::StartupSetupTask::OptionalDepsMissing,
                    3 => crate::state::modal::StartupSetupTask::SudoTimestampSetup,
                    4 => crate::state::modal::StartupSetupTask::DoasPersistSetup,
                    5 => crate::state::modal::StartupSetupTask::AurSleuthSetup,
                    _ => crate::state::modal::StartupSetupTask::VirusTotalSetup,
                };
                if !startup_selector_task_selectable(task, app, active_privilege_tool) {
                    app.modal = Modal::StartupSetupSelector {
                        cursor: *cursor,
                        selected: selected.clone(),
                        active_privilege_tool,
                    };
                    return false;
                }
                if selected.contains(&task) {
                    selected.remove(&task);
                } else {
                    selected.insert(task);
                }
            }
            KeyCode::Enter | KeyCode::Char('\n' | '\r') => {
                if app.aur_ssh_help_ready.unwrap_or(false) {
                    selected.remove(&crate::state::modal::StartupSetupTask::SshAurSetup);
                }
                app.pending_startup_setup_steps =
                    super::common::startup_setup_steps_in_priority(selected);
                app.modal = Modal::None;
                super::common::show_next_startup_setup_step(app);
                return true;
            }
            _ => {}
        }
        app.modal = Modal::StartupSetupSelector {
            cursor: *cursor,
            selected: selected.clone(),
            active_privilege_tool,
        };
    }
    false
}

/// What: Handle key events for `GnomeTerminalPrompt` modal.
///
/// Inputs:
/// - `ke`: Key event
/// - `app`: Mutable application state
/// - `modal`: `GnomeTerminalPrompt` modal variant (unit type)
///
/// Output:
/// - `false` (never stops propagation)
///
/// Details:
/// - Delegates to common handler
pub(super) fn handle_gnome_terminal_prompt_modal(
    ke: KeyEvent,
    app: &mut AppState,
    _modal: Modal,
) -> bool {
    super::common::handle_gnome_terminal_prompt(ke, app);
    false
}

/// What: Handle key events for `PasswordPrompt` modal, including restoration logic.
///
/// Inputs:
/// - `ke`: Key event
/// - `app`: Mutable application state
/// - `modal`: `PasswordPrompt` modal variant
///
/// Output:
/// - `true` if Enter was pressed (password submitted), `false` otherwise
///
/// Details:
/// - Delegates to password handler and restores modal if needed
/// - Returns `true` on Enter to indicate password should be submitted
#[allow(clippy::too_many_lines)] // Complex password validation and execution flow requires many lines (function has 327 lines)
pub(super) fn handle_password_prompt_modal(
    ke: KeyEvent,
    app: &mut AppState,
    mut modal: Modal,
) -> bool {
    if let Modal::PasswordPrompt {
        ref mut input,
        ref mut cursor,
        ref purpose,
        ref items,
        ref mut error,
    } = modal
    {
        let submitted = super::password::handle_password_prompt(ke, app, input, cursor);
        if !submitted && matches!(ke.code, KeyCode::Esc) {
            match purpose {
                crate::state::modal::PasswordPurpose::RepoApply => {
                    app.pending_repo_apply_commands = None;
                    app.pending_repo_apply_summary = None;
                    app.pending_repo_apply_overlap_check = None;
                    app.pending_repositories_modal_resume = None;
                }
                crate::state::modal::PasswordPurpose::RepoForeignMigrate => {
                    app.pending_foreign_migrate_commands = None;
                    app.pending_foreign_migrate_summary = None;
                }
                crate::state::modal::PasswordPurpose::Update => {
                    app.pending_update_commands = None;
                }
                crate::state::modal::PasswordPurpose::Install
                | crate::state::modal::PasswordPurpose::Remove
                | crate::state::modal::PasswordPurpose::Downgrade
                | crate::state::modal::PasswordPurpose::FileSync => {}
            }
        }
        if submitted {
            // Password submitted - validate before starting execution
            let password = if input.trim().is_empty() {
                None
            } else {
                Some(input.clone())
            };

            // Validate password if provided (skip validation for passwordless sudo)
            if let Some(ref pass) = password {
                // Validate password before starting execution
                // Always validate - don't skip even if passwordless sudo might be configured
                match crate::logic::password::validate_sudo_password(pass.as_str()) {
                    Ok(true) => {
                        // Password is valid, continue with execution
                    }
                    Ok(false) => {
                        // Password is invalid - check faillock status and show error
                        let username = std::env::var("USER").unwrap_or_else(|_| "user".to_string());

                        // Check if user is now locked out (this may have just happened)
                        let (is_locked, lockout_until, remaining_minutes) =
                            crate::logic::faillock::get_lockout_info(&username);

                        // Update AppState immediately with lockout status
                        app.faillock_locked = is_locked;
                        app.faillock_lockout_until = lockout_until;
                        app.faillock_remaining_minutes = remaining_minutes;

                        if is_locked {
                            // User is locked out - show alert modal with lockout message
                            let lockout_msg = remaining_minutes.map_or_else(
                                || {
                                    crate::i18n::t_fmt1(
                                        app,
                                        "app.modals.alert.account_locked",
                                        &username,
                                    )
                                },
                                |remaining| {
                                    if remaining > 0 {
                                        crate::i18n::t_fmt(
                                            app,
                                            "app.modals.alert.account_locked_with_time",
                                            &[&username as &dyn std::fmt::Display, &remaining],
                                        )
                                    } else {
                                        crate::i18n::t_fmt1(
                                            app,
                                            "app.modals.alert.account_locked",
                                            &username,
                                        )
                                    }
                                },
                            );

                            // Close password prompt and show alert
                            // Clear any pending executor state to abort the process
                            app.pending_executor_password = None;
                            app.pending_exec_header_chips = None;
                            app.pending_executor_request = None;
                            app.pending_repo_apply_commands = None;
                            app.pending_repo_apply_summary = None;
                            app.pending_repo_apply_overlap_check = None;
                            app.pending_repositories_modal_resume = None;
                            app.pending_foreign_migrate_commands = None;
                            app.pending_foreign_migrate_summary = None;
                            app.modal = crate::state::Modal::Alert {
                                message: lockout_msg,
                            };
                            return true;
                        }

                        // Not locked out, check status for remaining attempts
                        let error_msg = crate::logic::faillock::check_faillock_status(&username)
                            .map_or_else(
                                |_| {
                                    // Couldn't check faillock status, just show generic error
                                    crate::i18n::t(
                                        app,
                                        "app.modals.password_prompt.incorrect_password",
                                    )
                                },
                                |status| {
                                    let remaining =
                                        status.max_attempts.saturating_sub(status.attempts_used);
                                    crate::i18n::t_fmt1(
                                        app,
                                        "app.modals.password_prompt.incorrect_password_attempts",
                                        remaining,
                                    )
                                },
                            );
                        // Update modal with error message and keep it open for retry
                        // Clear the input field so user can immediately type a new password
                        app.modal = crate::state::Modal::PasswordPrompt {
                            purpose: *purpose,
                            items: items.clone(),
                            input: crate::state::SecureString::default(), // Clear input field
                            cursor: 0,                                    // Reset cursor position
                            error: Some(error_msg),
                        };
                        // Don't start execution, keep modal open for retry
                        // Return true to stop event propagation and prevent restore from overwriting
                        return true;
                    }
                    Err(e) => {
                        // Error validating password (e.g., sudo not available)
                        // Update modal with error message and keep it open
                        app.modal = crate::state::Modal::PasswordPrompt {
                            purpose: *purpose,
                            items: items.clone(),
                            input: input.clone(),
                            cursor: *cursor,
                            error: Some(crate::i18n::t_fmt1(
                                app,
                                "app.modals.password_prompt.validation_failed",
                                &e,
                            )),
                        };
                        // Return true to stop event propagation and prevent restore from overwriting
                        return true;
                    }
                }
            }

            // Handle downgrade specially - it's an interactive tool that needs a terminal
            if matches!(purpose, crate::state::modal::PasswordPurpose::Downgrade) {
                // Downgrade tool is interactive and needs to run in a terminal
                // Close the modal and spawn downgrade in a terminal
                app.modal = crate::state::Modal::None;

                let names: Vec<String> = items.iter().map(|p| p.name.clone()).collect();
                let joined = names.join(" ");

                let tool = match crate::logic::privilege::active_tool() {
                    Ok(t) => t,
                    Err(msg) => {
                        app.modal = crate::state::Modal::Alert { message: msg };
                        return true;
                    }
                };
                let cmd = if app.dry_run {
                    let downgrade_cmd = crate::logic::privilege::build_privilege_command(
                        tool,
                        &format!("downgrade {joined}"),
                    );
                    let quoted = crate::install::shell_single_quote(&downgrade_cmd);
                    format!("echo DRY RUN: {quoted}")
                } else {
                    let downgrade_cmd = password.as_ref().map_or_else(
                        || {
                            crate::logic::privilege::build_privilege_command(
                                tool,
                                &format!("downgrade {joined}"),
                            )
                        },
                        |pass| {
                            crate::logic::privilege::build_password_pipe(
                                tool,
                                pass,
                                &format!("downgrade {joined}"),
                            )
                            .unwrap_or_else(|| {
                                crate::logic::privilege::build_privilege_command(
                                    tool,
                                    &format!("downgrade {joined}"),
                                )
                            })
                        },
                    );

                    format!(
                        "if (command -v downgrade >/dev/null 2>&1) || pacman -Qi downgrade >/dev/null 2>&1; then {downgrade_cmd}; else echo 'downgrade tool not found. Install \"downgrade\" package.'; fi"
                    )
                };

                // Clear downgrade list
                app.downgrade_list.clear();
                app.downgrade_list_names.clear();
                app.downgrade_state.select(None);

                // Spawn downgrade in a terminal (interactive tool needs full terminal)
                crate::install::spawn_shell_commands_in_terminal(&[cmd]);

                // Show toast message
                app.toast_message = Some(crate::i18n::t(app, "app.toasts.downgrade_started"));
                app.toast_expires_at =
                    Some(std::time::Instant::now() + std::time::Duration::from_secs(3));

                return true;
            }

            let header_chips = app.pending_exec_header_chips.take().unwrap_or_default();

            // Check if this is a custom command (for special packages like paru/yay/semgrep-bin)
            if let Some(custom_cmd) = app.pending_custom_command.take() {
                // Transition to PreflightExec for custom command
                app.modal = Modal::PreflightExec {
                    items: items.clone(),
                    action: crate::state::PreflightAction::Install,
                    tab: crate::state::PreflightTab::Summary,
                    verbose: false,
                    log_lines: Vec::new(),
                    abortable: false,
                    header_chips,
                    success: None,
                };

                // Store executor request with password
                app.pending_executor_request = Some(ExecutorRequest::CustomCommand {
                    command: custom_cmd,
                    password,
                    dry_run: app.dry_run,
                });

                return true;
            }

            // Handle Update purpose with pending_update_commands
            if matches!(purpose, crate::state::modal::PasswordPurpose::Update) {
                if let Some(commands) = app.pending_update_commands.take() {
                    // Store password and header_chips so AUR update can run after pacman succeeds,
                    // or so ConfirmAurUpdate can run AUR if pacman fails
                    match (&mut app.pending_executor_password, &password) {
                        (Some(p), Some(pass)) => p.clone_from(pass),
                        (None, Some(pass)) => app.pending_executor_password = Some(pass.clone()),
                        (_, None) => app.pending_executor_password = None,
                    }
                    app.pending_exec_header_chips = Some(header_chips.clone());

                    // Transition to PreflightExec for system update
                    app.modal = Modal::PreflightExec {
                        items: Vec::new(), // System update doesn't have package items
                        action: crate::state::PreflightAction::Install,
                        tab: crate::state::PreflightTab::Summary,
                        verbose: false,
                        log_lines: Vec::new(),
                        abortable: false,
                        header_chips,
                        success: None,
                    };

                    // Store executor request with password
                    app.pending_executor_request = Some(ExecutorRequest::Update {
                        commands,
                        password,
                        dry_run: app.dry_run,
                    });

                    return true;
                }
                // No pending commands, this shouldn't happen but handle gracefully
                app.modal = Modal::Alert {
                    message: "No update commands found".to_string(),
                };
                return true;
            }

            if matches!(purpose, crate::state::modal::PasswordPurpose::RepoApply) {
                if let Some(commands) = app.pending_repo_apply_commands.take() {
                    match (&mut app.pending_executor_password, &password) {
                        (Some(p), Some(pass)) => p.clone_from(pass),
                        (None, Some(pass)) => app.pending_executor_password = Some(pass.clone()),
                        (_, None) => app.pending_executor_password = None,
                    }
                    app.pending_exec_header_chips = Some(header_chips.clone());
                    let log_lines = app.pending_repo_apply_summary.take().unwrap_or_default();
                    app.modal = Modal::PreflightExec {
                        items: Vec::new(),
                        action: crate::state::PreflightAction::Install,
                        tab: crate::state::PreflightTab::Summary,
                        verbose: false,
                        log_lines,
                        abortable: false,
                        header_chips,
                        success: None,
                    };
                    app.pending_executor_request = Some(ExecutorRequest::Update {
                        commands,
                        password,
                        dry_run: app.dry_run,
                    });
                    return true;
                }
                app.modal = Modal::Alert {
                    message: crate::i18n::t(app, "app.modals.repositories.apply.missing_commands"),
                };
                return true;
            }

            if matches!(
                purpose,
                crate::state::modal::PasswordPurpose::RepoForeignMigrate
            ) {
                if let Some(commands) = app.pending_foreign_migrate_commands.take() {
                    match (&mut app.pending_executor_password, &password) {
                        (Some(p), Some(pass)) => p.clone_from(pass),
                        (None, Some(pass)) => app.pending_executor_password = Some(pass.clone()),
                        (_, None) => app.pending_executor_password = None,
                    }
                    app.pending_exec_header_chips = Some(header_chips.clone());
                    let log_lines = app
                        .pending_foreign_migrate_summary
                        .take()
                        .unwrap_or_default();
                    app.modal = Modal::PreflightExec {
                        items: Vec::new(),
                        action: crate::state::PreflightAction::Install,
                        tab: crate::state::PreflightTab::Summary,
                        verbose: false,
                        log_lines,
                        abortable: false,
                        header_chips,
                        success: None,
                    };
                    app.pending_executor_request = Some(ExecutorRequest::Update {
                        commands,
                        password,
                        dry_run: app.dry_run,
                    });
                    return true;
                }
                app.modal = Modal::Alert {
                    message: crate::i18n::t(
                        app,
                        "app.modals.foreign_overlap.missing_migrate_commands",
                    ),
                };
                return true;
            }

            // For Install actions, use start_execution to check for reinstall scenarios
            // This ensures the reinstall confirmation modal is shown if needed
            if matches!(purpose, crate::state::modal::PasswordPurpose::Install) {
                use crate::events::preflight::keys;
                keys::start_execution(
                    app,
                    items,
                    crate::state::PreflightAction::Install,
                    header_chips,
                    password,
                );
                return true;
            }

            // For Remove actions, proceed directly (no reinstall check needed)
            let action = match purpose {
                crate::state::modal::PasswordPurpose::Install
                | crate::state::modal::PasswordPurpose::Update
                | crate::state::modal::PasswordPurpose::RepoApply
                | crate::state::modal::PasswordPurpose::RepoForeignMigrate => {
                    // This should never be reached due to the check above
                    unreachable!(
                        "Install/Update/RepoApply/RepoForeignMigrate should be handled above"
                    )
                }
                crate::state::modal::PasswordPurpose::Remove => {
                    crate::state::PreflightAction::Remove
                }
                crate::state::modal::PasswordPurpose::Downgrade => {
                    // This should never be reached due to the check above
                    unreachable!("Downgrade should be handled above")
                }
                crate::state::modal::PasswordPurpose::FileSync => {
                    // This should never be reached - FileSync is handled via custom command above
                    unreachable!("FileSync should be handled via custom command above")
                }
            };
            app.modal = Modal::PreflightExec {
                items: items.clone(),
                action,
                tab: crate::state::PreflightTab::Summary,
                verbose: false,
                log_lines: Vec::new(),
                success: None,
                abortable: false,
                header_chips,
            };

            // Store executor request for remove
            app.pending_executor_request = Some(match purpose {
                crate::state::modal::PasswordPurpose::Install
                | crate::state::modal::PasswordPurpose::Update
                | crate::state::modal::PasswordPurpose::RepoApply
                | crate::state::modal::PasswordPurpose::RepoForeignMigrate => {
                    // This should never be reached due to the check above
                    unreachable!(
                        "Install/Update/RepoApply/RepoForeignMigrate should be handled above"
                    )
                }
                crate::state::modal::PasswordPurpose::Remove => {
                    let names: Vec<String> = items.iter().map(|p| p.name.clone()).collect();
                    ExecutorRequest::Remove {
                        names,
                        password,
                        cascade: app.remove_cascade_mode,
                        dry_run: app.dry_run,
                    }
                }
                crate::state::modal::PasswordPurpose::Downgrade => {
                    // This should never be reached due to the check above, but included for exhaustiveness
                    unreachable!("Downgrade should be handled above")
                }
                crate::state::modal::PasswordPurpose::FileSync => {
                    // This should never be reached - FileSync is handled via custom command above
                    unreachable!("FileSync should be handled via custom command above")
                }
            });

            return true;
        }
        restore::restore_if_not_closed_with_esc(
            app,
            &ke,
            Modal::PasswordPrompt {
                purpose: *purpose,
                items: items.clone(),
                input: input.clone(),
                cursor: *cursor,
                error: error.clone(),
            },
        );
    }
    false
}

/// What: Handle key events for `ImportHelp` modal.
///
/// Inputs:
/// - `ke`: Key event
/// - `app`: Mutable application state
/// - `add_tx`: Channel for adding packages
/// - `modal`: `ImportHelp` modal variant (unit type)
///
/// Output:
/// - `false` (never stops propagation)
///
/// Details:
/// - Delegates to import handler
pub(super) fn handle_import_help_modal(
    ke: KeyEvent,
    app: &mut AppState,
    add_tx: &mpsc::UnboundedSender<PackageItem>,
    _modal: Modal,
) -> bool {
    super::import::handle_import_help(ke, app, add_tx);
    false
}

#[cfg(test)]
mod tests {
    use super::*;
    use crossterm::event::{KeyCode, KeyEvent, KeyModifiers};
    use std::collections::VecDeque;

    #[test]
    fn startup_selector_enter_builds_and_starts_queue() {
        let mut app = AppState::default();
        let mut selected = std::collections::HashSet::new();
        selected.insert(crate::state::modal::StartupSetupTask::ArchNews);
        selected.insert(crate::state::modal::StartupSetupTask::VirusTotalSetup);
        let modal = Modal::StartupSetupSelector {
            cursor: 0,
            selected,
            active_privilege_tool: None,
        };
        let handled = handle_startup_setup_selector_modal(
            KeyEvent::new(KeyCode::Enter, KeyModifiers::empty()),
            &mut app,
            modal,
        );
        assert!(handled);
        assert!(matches!(app.modal, Modal::VirusTotalSetup { .. }));
        assert_eq!(
            app.pending_startup_setup_steps,
            VecDeque::from([crate::state::modal::StartupSetupTask::ArchNews])
        );
    }

    #[test]
    fn startup_selector_esc_skips_all() {
        let mut app = AppState {
            pending_startup_setup_steps: VecDeque::from([
                crate::state::modal::StartupSetupTask::ArchNews,
            ]),
            ..AppState::default()
        };
        let modal = Modal::StartupSetupSelector {
            cursor: 0,
            selected: std::collections::HashSet::new(),
            active_privilege_tool: None,
        };
        let handled = handle_startup_setup_selector_modal(
            KeyEvent::new(KeyCode::Esc, KeyModifiers::empty()),
            &mut app,
            modal,
        );
        assert!(handled);
        assert!(matches!(app.modal, Modal::None));
        assert!(app.pending_startup_setup_steps.is_empty());
    }

    #[test]
    fn startup_selector_space_with_out_of_range_cursor_keeps_modal_and_clamps() {
        let mut app = AppState::default();
        let selected = std::collections::HashSet::new();
        let modal = Modal::StartupSetupSelector {
            cursor: usize::MAX,
            selected,
            active_privilege_tool: None,
        };

        let handled = handle_startup_setup_selector_modal(
            KeyEvent::new(KeyCode::Char(' '), KeyModifiers::empty()),
            &mut app,
            modal,
        );

        assert!(!handled);
        match &app.modal {
            Modal::StartupSetupSelector { cursor, .. } => {
                assert_eq!(*cursor, STARTUP_SETUP_SELECTOR_ITEMS - 1);
            }
            _ => panic!("startup selector modal should remain active"),
        }
    }

    #[test]
    fn sudo_setup_finish_consumes_enter_key() {
        let mut app = AppState::default();
        let modal = Modal::SudoTimestampSetup {
            setup: crate::state::modal::SudoTimestampSetupModalState {
                phase: crate::state::modal::SudoTimestampSetupPhase::Select,
                select_cursor: crate::state::modal::SUDO_TIMESTAMP_SELECT_ROWS - 1,
            },
        };
        let handled = handle_sudo_timestamp_setup_modal(
            KeyEvent::new(KeyCode::Enter, KeyModifiers::empty()),
            &mut app,
            modal,
        );
        assert!(handled);
        assert!(matches!(app.modal, Modal::None));
    }

    #[test]
    fn doas_setup_finish_consumes_enter_key() {
        let mut app = AppState::default();
        let modal = Modal::DoasPersistSetup {
            setup: crate::state::modal::DoasPersistSetupModalState {
                phase: crate::state::modal::DoasPersistSetupPhase::Select,
                select_cursor: crate::state::modal::DOAS_PERSIST_SELECT_ROWS - 1,
            },
        };
        let handled = handle_doas_persist_setup_modal(
            KeyEvent::new(KeyCode::Enter, KeyModifiers::empty()),
            &mut app,
            modal,
        );
        assert!(handled);
        assert!(matches!(app.modal, Modal::None));
    }

    #[test]
    fn virustotal_setup_enter_consumes_key_when_closing_modal() {
        let mut app = AppState::default();
        app.pending_startup_setup_steps.clear();
        let modal = Modal::VirusTotalSetup {
            input: "dummy-api-key".to_string(),
            cursor: 12,
        };
        let handled = handle_virustotal_setup_modal(
            KeyEvent::new(KeyCode::Enter, KeyModifiers::empty()),
            &mut app,
            modal,
        );
        assert!(handled);
        assert!(
            !matches!(app.modal, Modal::VirusTotalSetup { .. }),
            "virustotal setup modal should close on Enter with non-empty key"
        );
    }

    #[test]
    fn news_setup_esc_does_not_restore_stale_previous_modal() {
        let mut app = AppState::default();
        app.pending_startup_setup_steps.clear();
        app.previous_modal = Some(Modal::News {
            items: vec![crate::state::types::NewsFeedItem {
                id: "news-1".to_string(),
                date: "2026-01-01".to_string(),
                title: "Old news".to_string(),
                summary: None,
                url: Some("https://example.com/news-1".to_string()),
                source: crate::state::types::NewsFeedSource::ArchNews,
                severity: None,
                packages: Vec::new(),
            }],
            selected: 0,
            scroll: 0,
        });
        let modal = Modal::NewsSetup {
            show_arch_news: true,
            show_advisories: true,
            show_aur_updates: true,
            show_aur_comments: true,
            show_pkg_updates: true,
            max_age_days: Some(30),
            cursor: 0,
        };

        let handled = handle_news_setup_modal(
            KeyEvent::new(KeyCode::Esc, KeyModifiers::empty()),
            &mut app,
            modal,
        );

        assert!(handled);
        assert!(
            !matches!(app.modal, Modal::News { .. }),
            "Esc in NewsSetup must not resurrect stale News modal"
        );
        assert!(
            app.previous_modal.is_none(),
            "stale previous_modal should be cleared on cancel"
        );
    }
}