cleansys 0.6.7

CleanSys — modern terminal user interface for system cleanup on Linux, macOS, and Windows (Ratatui TUI + CLI)
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
use ratatui::{
    layout::{Constraint, Direction, Layout, Rect},
    style::{Color, Modifier, Style},
    symbols,
    text::{Line, Span},
    widgets::{Axis, Block, Borders, Chart, Clear, Dataset, List, ListItem, Paragraph, Wrap},
    Frame,
};
// Using tui-checkbox library for consistent checkbox symbols across the application
use tui_checkbox::{symbols as checkbox_symbols, Checkbox};
use tui_spinner::{FluxFrames, FluxSpinner};

use crate::app::{App, ChartType, CleanedItemType};
use crate::pie_chart::create_pie_chart_from_distribution;
use cleansys_core::{format_size, Status};

pub fn ui(f: &mut Frame, app: &mut App) {
    // Update animation frame if needed
    app.update_animation();

    // Adjust title and footer heights based on terminal size
    let (title_height, footer_height, min_content_height) = if app.terminal_height < 20 {
        // Very small terminals: minimal UI
        (2, 2, 6)
    } else if app.terminal_height < 30 {
        // Small terminals: compact UI
        (2, 2, 8)
    } else if app.terminal_height < 40 {
        // Medium terminals: standard UI
        (3, 3, 10)
    } else {
        // Large terminals: spacious UI
        (3, 3, 12)
    };

    let chunks = Layout::default()
        .direction(Direction::Vertical)
        .constraints([
            Constraint::Length(title_height),    // Title
            Constraint::Min(min_content_height), // Main content
            Constraint::Length(footer_height),   // Footer
        ])
        .split(f.area());

    render_title(f, app, chunks[0]);

    if app.show_help {
        render_help(f, chunks[1]);
    } else if app.is_running || app.show_progress_screen {
        render_progress_screen(f, app, chunks[1]);
    } else {
        render_main_content(f, app, chunks[1]);
    }

    render_footer(f, app, chunks[2]);

    // Render password prompt as overlay if visible
    if app.password_prompt.is_visible() {
        app.password_prompt.render(f, f.area());
    }

    if app.needs_admin_notice {
        render_admin_notice(f, f.area());
    } else if app.awaiting_run_confirmation {
        render_confirm_run(f, app, f.area());
    } else if app.preview_open {
        render_preview(f, app, f.area());
    }
}

fn render_title(f: &mut Frame, app: &App, area: Rect) {
    // Adjust title content based on terminal width
    let title_lines = if app.terminal_width < 80 {
        // Narrow terminals: shortened version with dimensions indicator
        let mut lines = vec![Line::from(vec![
            Span::styled(
                "Cleansys",
                Style::default()
                    .fg(Color::Cyan)
                    .add_modifier(Modifier::BOLD),
            ),
            Span::raw(" - System Cleaner"),
            if app.terminal_width < 60 || app.terminal_height < 20 {
                Span::styled(
                    format!(" [{}x{}]", app.terminal_width, app.terminal_height),
                    Style::default().fg(Color::DarkGray),
                )
            } else {
                Span::raw("")
            },
        ])];

        // Add help line
        lines.push(Line::from(vec![
            Span::styled("?", Style::default().add_modifier(Modifier::BOLD)),
            Span::raw(" help | "),
            Span::styled("q", Style::default().add_modifier(Modifier::BOLD)),
            Span::raw(" quit"),
        ]));

        lines
    } else {
        // Wide terminals: full version
        vec![
            Line::from(vec![
                Span::styled(
                    "Cleansys",
                    Style::default()
                        .fg(Color::Cyan)
                        .add_modifier(Modifier::BOLD),
                ),
                Span::raw(" - Modern System Cleaner for Linux"),
            ]),
            Line::from(vec![
                Span::raw("Press "),
                Span::styled("?", Style::default().add_modifier(Modifier::BOLD)),
                Span::raw(" for help, "),
                Span::styled("q", Style::default().add_modifier(Modifier::BOLD)),
                Span::raw(" to quit"),
            ]),
        ]
    };

    let title = Paragraph::new(title_lines).block(Block::default().borders(Borders::BOTTOM));

    f.render_widget(title, area);

    // Animated "loading" spinner (via the tui-spinner crate) in the
    // top-right corner of the title bar while a cleaning run is active.
    if app.is_running && area.width > 14 {
        let spinner_width = 12u16;
        let spinner_area = Rect {
            x: area.x + area.width.saturating_sub(spinner_width + 1),
            y: area.y,
            width: spinner_width,
            height: 1,
        };

        let label = Line::from(vec![
            Span::raw(" "),
            Span::styled(
                "RUNNING",
                Style::default()
                    .fg(Color::Yellow)
                    .add_modifier(Modifier::BOLD),
            ),
            Span::raw(" "),
        ]);
        let label_width = label.width() as u16;

        let (label_area, glyph_area) = (
            Rect {
                width: label_width.min(spinner_width),
                ..spinner_area
            },
            Rect {
                x: spinner_area.x + label_width.min(spinner_width),
                width: spinner_area.width.saturating_sub(label_width),
                ..spinner_area
            },
        );

        f.render_widget(Paragraph::new(label), label_area);
        f.render_widget(
            FluxSpinner::new(app.animation_frame as u64)
                .frames(FluxFrames::CLASSIC)
                .color(Color::Cyan),
            glyph_area,
        );
    }
}

fn render_main_content(f: &mut Frame, app: &mut App, area: Rect) {
    // Adjust layout based on terminal width
    let (categories_percent, content_percent) = if app.terminal_width < 80 {
        // Narrow terminals: give more space to content
        (25, 75)
    } else if app.terminal_width < 120 {
        // Medium terminals: balanced layout
        (30, 70)
    } else {
        // Wide terminals: can afford more space for categories
        (35, 65)
    };

    let horizontal_chunks = Layout::default()
        .direction(Direction::Horizontal)
        .constraints([
            Constraint::Percentage(categories_percent), // Categories
            Constraint::Percentage(content_percent),    // Cleaners/Details
        ])
        .split(area);

    render_categories(f, app, horizontal_chunks[0]);

    if app.detailed_view {
        render_details(f, app, horizontal_chunks[1]);
    } else {
        render_cleaners(f, app, horizontal_chunks[1]);
    }
}

fn render_progress_screen(f: &mut Frame, app: &mut App, area: Rect) {
    // Render both progress and details in a unified view
    render_unified_progress_view(f, app, area);
}

fn render_unified_progress_view(f: &mut Frame, app: &mut App, area: Rect) {
    // Update app counters first
    app.update_counters();

    // Ultra-compact layout for extremely small terminals
    if area.width < 50 || area.height < 15 {
        render_ultra_compact_view(f, app, area);
        return;
    }

    // Show 2-section layout: Combined Progress Overview + Removed Items
    let main_chunks = Layout::default()
        .direction(Direction::Vertical)
        .constraints([
            Constraint::Percentage(if app.terminal_height >= 35 {
                55
            } else if app.terminal_height >= 25 {
                50
            } else {
                45
            }), // Combined progress overview - responsive percentage
            Constraint::Percentage(if app.terminal_height >= 35 {
                45
            } else if app.terminal_height >= 25 {
                50
            } else {
                55
            }), // Removed items window - responsive percentage
        ])
        .margin(1)
        .split(area);

    // ===== TOP SECTION: Combined Progress Overview =====
    render_combined_progress_overview(f, app, main_chunks[0]);

    // ===== BOTTOM SECTION: Removed Items Window =====
    render_removed_items_window(f, app, main_chunks[1]);
}

fn render_combined_progress_overview(f: &mut Frame, app: &App, area: Rect) {
    let block = Block::default()
        .title("📊 Progress Overview & Operations")
        .title_style(
            Style::default()
                .fg(Color::Cyan)
                .add_modifier(Modifier::BOLD),
        )
        .borders(Borders::ALL)
        .border_style(Style::default().fg(Color::Cyan));

    let inner_area = block.inner(area);

    // Responsive height allocation based on terminal size - make chart area bigger
    let stats_height = if area.height < 15 {
        5 // Minimal height for very short terminals
    } else if area.height < 20 {
        7 // Compact layout for short terminals
    } else if area.height < 25 {
        9 // Medium layout
    } else {
        12 // Standard height for normal terminals - much bigger for better chart
    };

    // Split into top (stats + chart) and bottom (operations)
    let main_sections = Layout::default()
        .direction(Direction::Vertical)
        .constraints([
            Constraint::Length(stats_height), // Stats and chart section
            Constraint::Min(6),               // Operations section
        ])
        .split(inner_area);

    // Top section: Progress stats and chart
    render_progress_stats_and_chart(f, app, main_sections[0]);

    // Bottom section: Operations summary
    render_operations_summary(f, app, main_sections[1]);

    f.render_widget(block, area);
}

fn render_progress_stats_and_chart(f: &mut Frame, app: &App, area: Rect) {
    let elapsed_time = app.get_elapsed_time();
    let total_ops = app.operation_count;
    let completed_ops = total_ops.saturating_sub(app.errors_count);
    let progress_percent = completed_ops
        .checked_mul(100)
        .and_then(|v| v.checked_div(total_ops))
        .unwrap_or(0);

    // Responsive layout based on terminal width - give chart much more space
    let show_chart = area.width >= 80; // Hide chart on narrow terminals

    let horizontal_chunks = if show_chart {
        let stats_percent = if area.width < 100 {
            45 // Much more space for chart on narrow terminals
        } else if area.width < 130 {
            40 // Balanced layout for medium terminals - chart gets 60%
        } else {
            35 // Even more space for chart on wide terminals - chart gets 65%
        };

        Layout::default()
            .direction(Direction::Horizontal)
            .constraints([
                Constraint::Percentage(stats_percent),
                Constraint::Percentage(100 - stats_percent),
            ])
            .split(area)
    } else {
        // Use full width for stats when chart is hidden
        Layout::default()
            .direction(Direction::Horizontal)
            .constraints([Constraint::Percentage(100)])
            .split(area)
    };

    // Left side: Progress stats
    let stats_lines = vec![
        Line::from(vec![
            Span::styled(
                "Progress: ",
                Style::default()
                    .fg(Color::White)
                    .add_modifier(Modifier::BOLD),
            ),
            Span::styled(
                format!("{}%", progress_percent),
                Style::default()
                    .fg(Color::Green)
                    .add_modifier(Modifier::BOLD),
            ),
            Span::raw(format!(" ({}/{})", completed_ops, total_ops)),
            Span::raw("  ⏱️ "),
            Span::styled(
                elapsed_time,
                Style::default()
                    .fg(Color::Cyan)
                    .add_modifier(Modifier::BOLD),
            ),
        ]),
        Line::from(vec![
            Span::raw("".repeat((progress_percent * 35) / 100)),
            Span::styled(
                "".repeat(35 - (progress_percent * 35) / 100),
                Style::default().fg(Color::DarkGray),
            ),
        ]),
        Line::from(vec![
            Span::styled("", Style::default().fg(Color::Green)),
            Span::styled(
                format!("{} OK", completed_ops),
                Style::default().fg(Color::Green),
            ),
            Span::raw("  "),
            Span::styled("", Style::default().fg(Color::Yellow)),
            Span::styled(
                format!(
                    "{} Active",
                    if app.is_running {
                        total_ops.saturating_sub(completed_ops)
                    } else {
                        0
                    }
                ),
                Style::default().fg(Color::Yellow),
            ),
            Span::raw("  "),
            Span::styled("", Style::default().fg(Color::Red)),
            Span::styled(
                format!("{} Errors", app.errors_count),
                Style::default().fg(Color::Red),
            ),
        ]),
        Line::from(vec![
            Span::styled(
                "💾 Total freed: ",
                Style::default()
                    .fg(Color::White)
                    .add_modifier(Modifier::BOLD),
            ),
            Span::styled(
                format_size(app.total_bytes_cleaned),
                Style::default()
                    .fg(Color::Green)
                    .add_modifier(Modifier::BOLD),
            ),
        ]),
    ];

    let stats_para = Paragraph::new(stats_lines);
    f.render_widget(stats_para, horizontal_chunks[0]);

    // Right side: Chart (only if terminal is wide enough)
    if show_chart && horizontal_chunks.len() > 1 {
        match app.chart_type {
            ChartType::Bar => {
                render_vertical_bar_chart(f, app, horizontal_chunks[1]);
            }
            ChartType::PieCount => {
                render_pie_chart_distribution(f, app, horizontal_chunks[1]);
            }
            ChartType::PieSize => {
                render_pie_chart_size_distribution(f, app, horizontal_chunks[1]);
            }
        }
    }
}

fn render_ultra_compact_view(f: &mut Frame, app: &App, area: Rect) {
    let elapsed_time = app.get_elapsed_time();
    let total_ops = app.operation_count;
    let completed_ops = total_ops.saturating_sub(app.errors_count);
    let progress_percent = completed_ops
        .checked_mul(100)
        .and_then(|v| v.checked_div(total_ops))
        .unwrap_or(0);

    // Ultra-compact single block with essential info only
    let compact_lines = vec![
        Line::from(vec![Span::styled(
            format!("Cleansys [{}x{}]", area.width, area.height),
            Style::default()
                .fg(Color::Cyan)
                .add_modifier(Modifier::BOLD),
        )]),
        Line::from(vec![
            Span::styled(
                format!("{}% ", progress_percent),
                Style::default()
                    .fg(Color::Green)
                    .add_modifier(Modifier::BOLD),
            ),
            Span::raw("".repeat(
                ((progress_percent * (area.width.saturating_sub(10) as usize)) / 100).min(30),
            )),
        ]),
        Line::from(vec![
            Span::styled(
                format!("{}{} ", completed_ops, app.errors_count),
                Style::default().fg(Color::White),
            ),
            Span::styled(
                format_size(app.total_bytes_cleaned),
                Style::default()
                    .fg(Color::Green)
                    .add_modifier(Modifier::BOLD),
            ),
        ]),
        Line::from(vec![
            Span::styled(
                format!("⏱️{} ", elapsed_time),
                Style::default().fg(Color::Cyan),
            ),
            Span::styled(
                if app.is_running { "RUNNING" } else { "DONE" },
                Style::default().fg(if app.is_running {
                    Color::Yellow
                } else {
                    Color::Green
                }),
            ),
        ]),
    ];

    let block = Block::default()
        .borders(Borders::ALL)
        .border_style(Style::default().fg(Color::DarkGray));

    let para = Paragraph::new(compact_lines)
        .block(block)
        .wrap(Wrap { trim: true });

    f.render_widget(para, area);
}

fn render_vertical_bar_chart(f: &mut Frame, app: &App, area: Rect) {
    // Get real data from cleaned items
    let category_distribution = app.get_category_distribution();

    // Only show chart if we have real data
    if !category_distribution.is_empty() {
        // Use real data, limit to top 6 categories to fit in chart
        let limited_data: Vec<_> = category_distribution.iter().take(6).collect();
        let max_count = limited_data
            .iter()
            .map(|(_, count, _)| *count)
            .max()
            .unwrap_or(1) as f64;

        let chart_data: Vec<(f64, f64)> = limited_data
            .iter()
            .enumerate()
            .map(|(i, (_, count, _))| (i as f64, *count as f64))
            .collect();

        let category_names: Vec<&str> = limited_data
            .iter()
            .map(|(name, _, _)| {
                // Truncate label for narrow terminals
                if area.width < 80 {
                    if name.len() > 6 {
                        &name[..6]
                    } else {
                        name
                    }
                } else if area.width < 100 {
                    if name.len() > 8 {
                        &name[..8]
                    } else {
                        name
                    }
                } else if name.len() > 12 {
                    &name[..12]
                } else {
                    name
                }
            })
            .collect();

        // Create dataset for the chart
        let dataset = Dataset::default()
            .name("Cleaned Items")
            .marker(symbols::Marker::Block)
            .style(
                Style::default()
                    .fg(Color::Cyan)
                    .add_modifier(Modifier::BOLD),
            )
            .data(&chart_data);

        // Create x-axis labels
        let x_labels = if category_names.len() <= 3 {
            vec![
                Span::raw(category_names.first().unwrap_or(&"").to_string()),
                Span::raw(category_names.get(1).unwrap_or(&"").to_string()),
                Span::raw(category_names.get(2).unwrap_or(&"").to_string()),
            ]
        } else {
            vec![
                Span::raw(category_names.first().unwrap_or(&"").to_string()),
                Span::raw(
                    category_names
                        .get(category_names.len() / 2)
                        .unwrap_or(&"")
                        .to_string(),
                ),
                Span::raw(category_names.last().unwrap_or(&"").to_string()),
            ]
        };

        // Create y-axis labels
        let y_max = (max_count * 1.1).max(1.0); // Add 10% padding, minimum 1
        let y_labels = vec![
            Span::raw("0"),
            Span::raw(format!("{}", (y_max / 2.0) as u64)),
            Span::raw(format!("{}", y_max as u64)),
        ];

        let chart = Chart::new(vec![dataset])
            .block(
                Block::default()
                    .title(if area.width < 50 {
                        "Items (Bar)"
                    } else {
                        "Items Distribution (Bar Chart)"
                    })
                    .title_style(
                        Style::default()
                            .fg(Color::Cyan)
                            .add_modifier(Modifier::BOLD),
                    )
                    .borders(Borders::ALL)
                    .border_style(Style::default().fg(Color::Cyan)),
            )
            .x_axis(
                Axis::default()
                    .title(if area.width >= 80 { "Categories" } else { "" })
                    .style(Style::default().fg(Color::White))
                    .bounds([0.0, (category_names.len().max(3) - 1) as f64])
                    .labels(x_labels),
            )
            .y_axis(
                Axis::default()
                    .title(if area.width >= 80 { "Count" } else { "" })
                    .style(Style::default().fg(Color::White))
                    .bounds([0.0, y_max])
                    .labels(y_labels),
            );

        f.render_widget(chart, area);
    }
}

fn render_operations_summary(f: &mut Frame, app: &App, area: Rect) {
    // Split into user and system operations columns
    let columns = Layout::default()
        .direction(Direction::Horizontal)
        .constraints([
            Constraint::Percentage(48), // User operations
            Constraint::Percentage(4),  // Spacing
            Constraint::Percentage(48), // System operations
        ])
        .split(area);

    // User operations
    let user_operations = vec![
        ListItem::new(Line::from(vec![Span::styled(
            "👤 USER OPERATIONS",
            Style::default()
                .fg(Color::Green)
                .add_modifier(Modifier::BOLD),
        )])),
        ListItem::new(Line::from(vec![])),
        ListItem::new(Line::from(vec![
            Span::styled("📦 ", Style::default().fg(Color::Green)),
            Span::styled("Package Caches", Style::default().fg(Color::White)),
        ])),
        ListItem::new(Line::from(vec![
            Span::styled("🗑️ ", Style::default().fg(Color::Green)),
            Span::styled("Trash & Temp Files", Style::default().fg(Color::White)),
        ])),
        ListItem::new(Line::from(vec![
            Span::styled("🌐 ", Style::default().fg(Color::Green)),
            Span::styled("Browser Caches", Style::default().fg(Color::White)),
        ])),
    ];

    // System operations
    let system_operations = vec![
        ListItem::new(Line::from(vec![Span::styled(
            "🔒 SYSTEM OPERATIONS",
            Style::default()
                .fg(Color::Yellow)
                .add_modifier(Modifier::BOLD),
        )])),
        ListItem::new(Line::from(vec![])),
        ListItem::new(Line::from(vec![
            Span::styled(
                "📦 ",
                if app.is_root {
                    Style::default().fg(Color::Green)
                } else {
                    Style::default().fg(Color::Yellow)
                },
            ),
            Span::styled("Package Caches", Style::default().fg(Color::White)),
            if !app.is_root {
                Span::styled(" (sudo)", Style::default().fg(Color::Yellow))
            } else {
                Span::raw("")
            },
        ])),
        ListItem::new(Line::from(vec![
            Span::styled(
                "📝 ",
                if app.is_root {
                    Style::default().fg(Color::Green)
                } else {
                    Style::default().fg(Color::Yellow)
                },
            ),
            Span::styled("System Logs", Style::default().fg(Color::White)),
            if !app.is_root {
                Span::styled(" (sudo)", Style::default().fg(Color::Yellow))
            } else {
                Span::raw("")
            },
        ])),
        ListItem::new(Line::from(vec![
            Span::styled(
                "🗄️ ",
                if app.is_root {
                    Style::default().fg(Color::Green)
                } else {
                    Style::default().fg(Color::Yellow)
                },
            ),
            Span::styled("System Temp Files", Style::default().fg(Color::White)),
            if !app.is_root {
                Span::styled(" (sudo)", Style::default().fg(Color::Yellow))
            } else {
                Span::raw("")
            },
        ])),
    ];

    let user_list = List::new(user_operations);
    let system_list = List::new(system_operations);

    f.render_widget(user_list, columns[0]);
    f.render_widget(system_list, columns[2]);
}

fn render_pie_chart_distribution(f: &mut Frame, app: &App, area: Rect) {
    let category_distribution = app.get_category_distribution();

    // Only show real data from actual cleaning operations, and only when
    // there's enough room for tui-piechart to draw something meaningful.
    if !category_distribution.is_empty() && area.width >= 20 && area.height >= 8 {
        let chart = create_pie_chart_from_distribution(
            &category_distribution,
            "Items Distribution (Count)",
            false, // Use count-based distribution
        )
        .show_percentages(area.width >= 40)
        .show_legend(area.width >= 50 || area.height >= 16);

        f.render_widget(chart, area);
    }
}

fn render_pie_chart_size_distribution(f: &mut Frame, app: &App, area: Rect) {
    let category_distribution = app.get_category_distribution();

    // Only show real data from actual cleaning operations, and only when
    // there's enough room for tui-piechart to draw something meaningful.
    if !category_distribution.is_empty() && area.width >= 20 && area.height >= 8 {
        let chart = create_pie_chart_from_distribution(
            &category_distribution,
            "Items Distribution (Size)",
            true, // Use size-based distribution
        )
        .show_percentages(area.width >= 40)
        .show_legend(area.width >= 50 || area.height >= 16);

        f.render_widget(chart, area);
    }
}

fn render_removed_items_window(f: &mut Frame, app: &mut App, area: Rect) {
    let title = if app.is_running {
        "📋 Operation Progress"
    } else if app.show_progress_screen {
        "📋 Cleaning Results - Removed Items"
    } else {
        "📋 Removed Items Details"
    };

    let block = Block::default()
        .title(title)
        .title_style(
            Style::default()
                .fg(Color::Yellow)
                .add_modifier(Modifier::BOLD),
        )
        .borders(Borders::ALL)
        .border_style(Style::default().fg(Color::Yellow));

    let inner_area = block.inner(area);

    let mut display_items = Vec::new();

    // Show operation logs if running, otherwise show removed items
    if app.is_running && !app.operation_logs.is_empty() {
        for log_entry in app.operation_logs.iter().rev().take(15) {
            let (icon, color) = if log_entry.contains("") {
                ("", Color::Green)
            } else if log_entry.contains("") {
                ("", Color::Red)
            } else if log_entry.contains("🔄") {
                ("🔄", Color::Yellow)
            } else if log_entry.contains("📊") {
                ("📊", Color::Cyan)
            } else {
                ("ℹ️", Color::White)
            };

            display_items.push(ListItem::new(Line::from(vec![
                Span::styled(format!("{} ", icon), Style::default().fg(color)),
                Span::styled(log_entry.clone(), Style::default().fg(Color::White)),
            ])));
        }
    } else {
        // Get sample cleaned items for display plus additional entries for demo
        let filtered_items = app.get_filtered_detailed_items();

        if !filtered_items.is_empty() {
            for (index, item) in filtered_items.iter().enumerate() {
                let icon = match item.item_type {
                    CleanedItemType::File => "📄",
                    CleanedItemType::Directory => "📁",
                    CleanedItemType::Log => "📝",
                };

                // File path and size on one line
                display_items.push(ListItem::new(Line::from(vec![
                    Span::styled(format!("{} ", icon), Style::default().fg(Color::Yellow)),
                    Span::styled(item.path.clone(), Style::default().fg(Color::White)),
                    Span::raw(" "),
                    Span::styled(
                        format!("({})", format_size(item.size)),
                        Style::default()
                            .fg(Color::Green)
                            .add_modifier(Modifier::BOLD),
                    ),
                ])));

                // Category and cleaner info on next line (indented)
                display_items.push(ListItem::new(Line::from(vec![
                    Span::raw("   "),
                    Span::styled("📂 ", Style::default().fg(Color::Blue)),
                    Span::styled(item.category.clone(), Style::default().fg(Color::Blue)),
                    Span::raw(""),
                    Span::styled("🔧 ", Style::default().fg(Color::Cyan)),
                    Span::styled(item.cleaner_name.clone(), Style::default().fg(Color::Cyan)),
                ])));

                // Add spacing between entries
                if index < filtered_items.len() - 1 {
                    display_items.push(ListItem::new(Line::from(vec![])));
                }
            }
        } else if !app.is_running && app.show_progress_screen && app.total_bytes_cleaned > 0 {
            // Show summary when cleaning is complete but no detailed items
            display_items.push(ListItem::new(Line::from(vec![
                Span::styled("", Style::default().fg(Color::Green)),
                Span::styled(
                    "Cleaning completed successfully",
                    Style::default()
                        .fg(Color::Green)
                        .add_modifier(Modifier::BOLD),
                ),
            ])));
            display_items.push(ListItem::new(Line::from(vec![])));

            display_items.push(ListItem::new(Line::from(vec![
                Span::styled("📊 ", Style::default().fg(Color::Cyan)),
                Span::styled("Total space freed: ", Style::default().fg(Color::White)),
                Span::styled(
                    format_size(app.total_bytes_cleaned),
                    Style::default()
                        .fg(Color::Green)
                        .add_modifier(Modifier::BOLD),
                ),
            ])));
            display_items.push(ListItem::new(Line::from(vec![])));

            // Show which cleaners were executed
            for category in &app.categories {
                for item in &category.items {
                    if item.bytes_cleaned > 0 {
                        display_items.push(ListItem::new(Line::from(vec![
                            Span::styled("🔧 ", Style::default().fg(Color::Yellow)),
                            Span::styled(item.name.clone(), Style::default().fg(Color::White)),
                            Span::raw(": "),
                            Span::styled(
                                format_size(item.bytes_cleaned),
                                Style::default().fg(Color::Green),
                            ),
                        ])));
                    }
                }
            }

            if display_items.len() == 3 {
                // No items were cleaned with bytes > 0
                display_items.push(ListItem::new(Line::from(vec![])));
                display_items.push(ListItem::new(Line::from(vec![
                    Span::styled("ℹ️ ", Style::default().fg(Color::Blue)),
                    Span::styled(
                        "Detailed file list not available in TUI mode",
                        Style::default().fg(Color::DarkGray),
                    ),
                ])));
            }
        }
    }

    let items_list = List::new(display_items)
        .block(Block::default())
        .highlight_style(
            Style::default()
                .bg(Color::DarkGray)
                .add_modifier(Modifier::BOLD),
        )
        .highlight_symbol("");

    f.render_stateful_widget(items_list, inner_area, &mut app.detailed_list_scroll_state);
    f.render_widget(block, area);
}

fn render_categories(f: &mut Frame, app: &App, area: Rect) {
    // Add icons to category names
    let categories: Vec<ListItem> = app
        .categories
        .iter()
        .enumerate()
        .map(|(i, category)| {
            let content = Line::from(format!("{} ({})", category.name, category.description));
            let style = if i == app.category_index {
                Style::default()
                    .fg(Color::Yellow)
                    .add_modifier(Modifier::BOLD)
            } else {
                Style::default()
            };
            ListItem::new(content).style(style)
        })
        .collect();

    let categories_list = List::new(categories)
        .block(
            Block::default()
                .title("📂 Categories")
                .borders(Borders::ALL),
        )
        .highlight_style(
            Style::default()
                .add_modifier(Modifier::BOLD)
                .fg(Color::Yellow),
        );

    f.render_widget(categories_list, area);
}

fn render_cleaners(f: &mut Frame, app: &mut App, area: Rect) {
    let current_category = &app.categories[app.category_index];

    let items: Vec<ListItem> = current_category
        .items
        .iter()
        .map(|item| {
            let mut parts = vec![];

            // Create checkbox using tui-checkbox with predefined symbols
            // We use the ASCII bracket symbols for maximum terminal compatibility
            let checkbox_style = if item.selected {
                Style::default()
                    .fg(Color::Green)
                    .add_modifier(Modifier::BOLD)
            } else {
                Style::default().fg(Color::White)
            };

            // Use Checkbox::new() with predefined symbols from the library
            let _checkbox = Checkbox::new("", item.selected)
                .checked_symbol(checkbox_symbols::CHECKED_X)
                .unchecked_symbol(checkbox_symbols::UNCHECKED_SPACE);

            // Extract the symbol for use in our composite List item
            let checkbox_symbol = if item.selected {
                checkbox_symbols::CHECKED_X
            } else {
                checkbox_symbols::UNCHECKED_SPACE
            };

            parts.push(Span::styled(checkbox_symbol, checkbox_style));
            parts.push(Span::raw(" "));

            // Name
            let name_style = if item.requires_root && !app.is_root {
                Style::default().fg(Color::DarkGray)
            } else {
                Style::default().fg(Color::White)
            };
            parts.push(Span::styled(&item.name, name_style));

            // Root indicator
            if item.requires_root {
                parts.push(Span::styled(" (root)", Style::default().fg(Color::Red)));
            }

            // Status indicator
            if let Some(status) = &item.status {
                match status {
                    Status::Running => {
                        parts.push(Span::styled(
                            " [Running]",
                            Style::default().fg(Color::Yellow),
                        ));
                    }
                    Status::Success(msg) => {
                        parts.push(Span::styled(
                            format!(" [{}]", msg),
                            Style::default().fg(Color::Green),
                        ));
                    }
                    Status::Error(msg) => {
                        parts.push(Span::styled(
                            format!(" [Error: {}]", msg),
                            Style::default().fg(Color::Red),
                        ));
                    }
                    Status::Pending => {
                        parts.push(Span::styled(
                            " [Pending]",
                            Style::default().fg(Color::DarkGray),
                        ));
                    }
                }
            }

            // If item has cleaned bytes, show it
            if item.bytes_cleaned > 0 {
                parts.push(Span::styled(
                    format!(" (Freed: {})", format_size(item.bytes_cleaned)),
                    Style::default().fg(Color::Green),
                ));
            }

            ListItem::new(Line::from(parts))
        })
        .collect();

    let items_list = List::new(items)
        .block(
            Block::default()
                .title(format!("{} Items", current_category.name))
                .borders(Borders::ALL),
        )
        .highlight_style(
            Style::default()
                .add_modifier(Modifier::BOLD)
                .bg(Color::DarkGray),
        )
        .highlight_symbol("> ");

    f.render_stateful_widget(items_list, area, &mut app.item_list_state);
}

fn render_details(f: &mut Frame, app: &App, area: Rect) {
    let current_category = &app.categories[app.category_index];

    if let Some(selected) = app.item_list_state.selected() {
        if selected < current_category.items.len() {
            let item = &current_category.items[selected];

            let mut text = vec![
                Line::from(vec![Span::styled(
                    format!("{} Keyboard Controls", item.name),
                    Style::default()
                        .fg(Color::Cyan)
                        .add_modifier(Modifier::BOLD),
                )]),
                Line::from(vec![Span::raw("")]),
                Line::from(vec![
                    Span::raw("Description: "),
                    Span::styled(&item.description, Style::default().fg(Color::White)),
                ]),
                Line::from(vec![Span::raw("")]),
                Line::from(vec![
                    Span::raw("Requires root: "),
                    if item.requires_root {
                        Span::styled("Yes", Style::default().fg(Color::Red))
                    } else {
                        Span::styled("No", Style::default().fg(Color::Green))
                    },
                ]),
                Line::from(vec![
                    Span::raw("Status: "),
                    match &item.status {
                        Some(Status::Running) => {
                            let spinner = Status::Running.get_animation_frame(app.animation_frame);
                            Span::styled(
                                format!("{} Running...", spinner),
                                Style::default().fg(Color::Yellow),
                            )
                        }
                        Some(Status::Success(msg)) => {
                            Span::styled(format!("{}", msg), Style::default().fg(Color::Green))
                        }
                        Some(Status::Error(msg)) => Span::styled(
                            format!("✗ Error: {}", msg),
                            Style::default().fg(Color::Red),
                        ),
                        Some(Status::Pending) => {
                            Span::styled("• Waiting to start", Style::default().fg(Color::DarkGray))
                        }
                        None => Span::raw("Not run"),
                    },
                ]),
            ];

            if item.bytes_cleaned > 0 {
                text.push(Line::from(vec![
                    Span::raw("Space freed: "),
                    Span::styled(
                        format!("{:.2} GB", item.bytes_cleaned as f64 / 1_073_741_824.0),
                        Style::default().fg(Color::Green),
                    ),
                ]));
            }

            let details = Paragraph::new(text)
                .block(Block::default().title("Details").borders(Borders::ALL))
                .wrap(Wrap { trim: true });

            f.render_widget(details, area);
        }
    }
}

fn render_footer(f: &mut Frame, app: &App, area: Rect) {
    let block = Block::default()
        .borders(Borders::TOP)
        .border_style(Style::default().fg(Color::DarkGray));

    let inner_area = block.inner(area);

    if app.is_running || app.show_progress_screen {
        // Progress mode footer - clean and simple
        let footer_chunks = Layout::default()
            .direction(Direction::Horizontal)
            .constraints([
                Constraint::Percentage(60), // Status info
                Constraint::Percentage(40), // Controls
            ])
            .split(inner_area);

        // Status information
        let status_text = vec![Line::from(vec![
            Span::styled(
                "Status: ",
                Style::default()
                    .fg(Color::White)
                    .add_modifier(Modifier::BOLD),
            ),
            if app.paused {
                Span::styled(
                    "PAUSED",
                    Style::default()
                        .fg(Color::Yellow)
                        .add_modifier(Modifier::BOLD),
                )
            } else if app.is_running {
                Span::styled(
                    "CLEANING",
                    Style::default()
                        .fg(Color::Green)
                        .add_modifier(Modifier::BOLD),
                )
            } else if app.operation_end_time.is_some() {
                Span::styled(
                    "FINISHED",
                    Style::default()
                        .fg(Color::Cyan)
                        .add_modifier(Modifier::BOLD),
                )
            } else {
                Span::styled(
                    "READY",
                    Style::default()
                        .fg(Color::White)
                        .add_modifier(Modifier::BOLD),
                )
            },
            Span::raw(""),
            Span::styled("Total Freed: ", Style::default().fg(Color::White)),
            Span::styled(
                format_size(app.total_bytes_cleaned),
                Style::default()
                    .fg(Color::Green)
                    .add_modifier(Modifier::BOLD),
            ),
        ])];

        // Controls - different for running vs completed operations
        let controls_text = if app.is_running {
            vec![Line::from(vec![
                Span::styled(
                    "ESC",
                    Style::default()
                        .fg(Color::Yellow)
                        .add_modifier(Modifier::BOLD),
                ),
                Span::raw(": Cancel  "),
                Span::styled(
                    "↑/↓",
                    Style::default()
                        .fg(Color::Cyan)
                        .add_modifier(Modifier::BOLD),
                ),
                Span::raw(": Scroll Items  "),
                Span::styled(
                    "q",
                    Style::default().fg(Color::Red).add_modifier(Modifier::BOLD),
                ),
                Span::raw(": Quit"),
            ])]
        } else {
            // Operations completed - show different controls
            vec![Line::from(vec![
                Span::styled(
                    "ESC",
                    Style::default()
                        .fg(Color::Yellow)
                        .add_modifier(Modifier::BOLD),
                ),
                Span::raw(": Return to Menu  "),
                Span::styled(
                    "↑/↓",
                    Style::default()
                        .fg(Color::Cyan)
                        .add_modifier(Modifier::BOLD),
                ),
                Span::raw(": Scroll Items  "),
                Span::styled(
                    "q",
                    Style::default().fg(Color::Red).add_modifier(Modifier::BOLD),
                ),
                Span::raw(": Quit"),
            ])]
        };

        let status_para = Paragraph::new(status_text);
        let controls_para =
            Paragraph::new(controls_text).alignment(ratatui::layout::Alignment::Right);

        f.render_widget(status_para, footer_chunks[0]);
        f.render_widget(controls_para, footer_chunks[1]);
    } else {
        // Main menu footer - organized and clean
        let footer_chunks = Layout::default()
            .direction(Direction::Horizontal)
            .constraints([
                Constraint::Percentage(40), // Status info
                Constraint::Percentage(60), // Controls
            ])
            .split(inner_area);

        // Status information
        let status_text = vec![Line::from(vec![
            Span::styled(
                "User: ",
                Style::default()
                    .fg(Color::White)
                    .add_modifier(Modifier::BOLD),
            ),
            if app.is_root {
                Span::styled(
                    "root",
                    Style::default().fg(Color::Red).add_modifier(Modifier::BOLD),
                )
            } else {
                Span::styled(
                    "standard",
                    Style::default()
                        .fg(Color::Green)
                        .add_modifier(Modifier::BOLD),
                )
            },
            Span::raw(""),
            Span::styled("Selected: ", Style::default().fg(Color::White)),
            Span::styled(
                format!("{}", app.selected_cleaners_count),
                Style::default()
                    .fg(Color::Blue)
                    .add_modifier(Modifier::BOLD),
            ),
        ])];

        // Controls - organized by function
        let controls_text = vec![Line::from(vec![
            Span::styled(
                "Space",
                Style::default()
                    .fg(Color::Yellow)
                    .add_modifier(Modifier::BOLD),
            ),
            Span::raw(": Select  "),
            Span::styled(
                "Enter",
                Style::default()
                    .fg(Color::Green)
                    .add_modifier(Modifier::BOLD),
            ),
            Span::raw(": Run  "),
            Span::styled(
                "Tab",
                Style::default()
                    .fg(Color::Blue)
                    .add_modifier(Modifier::BOLD),
            ),
            Span::raw(": Category  "),
            Span::styled(
                "?",
                Style::default()
                    .fg(Color::Magenta)
                    .add_modifier(Modifier::BOLD),
            ),
            Span::raw(": Help  "),
            Span::styled(
                "q",
                Style::default().fg(Color::Red).add_modifier(Modifier::BOLD),
            ),
            Span::raw(": Quit"),
        ])];

        let status_para = Paragraph::new(status_text);
        let controls_para =
            Paragraph::new(controls_text).alignment(ratatui::layout::Alignment::Right);

        f.render_widget(status_para, footer_chunks[0]);
        f.render_widget(controls_para, footer_chunks[1]);
    }

    f.render_widget(block, area);
}

fn render_help(f: &mut Frame, area: Rect) {
    let help_text = vec![
        Line::from(vec![Span::styled(
            "🔍 Cleansys Help",
            Style::default()
                .fg(Color::Cyan)
                .add_modifier(Modifier::BOLD),
        )]),
        Line::from(vec![Span::raw("")]),
        Line::from(vec![Span::styled(
            "📍 Navigation:",
            Style::default().add_modifier(Modifier::BOLD),
        )]),
        Line::from(vec![Span::raw("  ↑/↓: Navigate items")]),
        Line::from(vec![Span::raw("  Tab/Shift+Tab: Switch categories")]),
        Line::from(vec![Span::raw("")]),
        Line::from(vec![Span::styled(
            "🔧 Actions:",
            Style::default().add_modifier(Modifier::BOLD),
        )]),
        Line::from(vec![Span::raw("  Space: Toggle selection")]),
        Line::from(vec![Span::raw(
            "  Enter: Run selected cleaners (asks for confirmation)",
        )]),
        Line::from(vec![Span::raw(
            "  d: Preview selected cleaners (dry-run, deletes nothing)",
        )]),
        Line::from(vec![Span::raw("  a: Select all in current category")]),
        Line::from(vec![Span::raw("  n: Deselect all in current category")]),
        Line::from(vec![Span::raw("  A: Select all across every category")]),
        Line::from(vec![Span::raw("  N: Deselect all across every category")]),
        Line::from(vec![Span::raw(
            "  c: Cycle chart type (Bar → Count Pie → Size Pie → Bar)",
        )]),
        Line::from(vec![Span::raw("  /: Search in detailed view")]),
        Line::from(vec![Span::raw("")]),
        Line::from(vec![Span::styled(
            "🎛️ Advanced Controls:",
            Style::default().add_modifier(Modifier::BOLD),
        )]),
        Line::from(vec![Span::raw("  m: Toggle compact mode")]),
        Line::from(vec![Span::raw(
            "  v: Cycle view mode (Standard/Compact/Detailed/Performance)",
        )]),
        Line::from(vec![Span::raw("  p: Toggle performance statistics")]),
        Line::from(vec![Span::raw(
            "  s: Toggle auto-scroll log (during operations)",
        )]),
        Line::from(vec![Span::raw("  o: Cycle sort mode")]),
        Line::from(vec![Span::raw("  f: Cycle filter mode")]),
        Line::from(vec![Span::raw("  y: Toggle confirmation prompts")]),
        Line::from(vec![Span::raw("  x: Clear all errors")]),
        Line::from(vec![Span::raw(
            "  j/k: Scroll detailed items list (vi-style)",
        )]),
        Line::from(vec![Span::raw("  /: Search files/paths in detailed view")]),
        Line::from(vec![Span::raw(
            "  ESC: Clear search / Cancel operation / Return to menu",
        )]),
        Line::from(vec![Span::raw("  Backspace: Remove search character")]),
        Line::from(vec![Span::raw("  PgUp/PgDn: Scroll operation log")]),
        Line::from(vec![Span::raw("  Home/End: Jump to first/last item")]),
        Line::from(vec![Span::raw("  Ctrl+Space: Pause/Resume operations")]),
        Line::from(vec![Span::raw("")]),
        Line::from(vec![Span::styled(
            "🔍 Search Features:",
            Style::default().add_modifier(Modifier::BOLD),
        )]),
        Line::from(vec![Span::raw(
            "  Search matches file paths, categories, and cleaner names",
        )]),
        Line::from(vec![Span::raw(
            "  Real-time filtering with highlighted results",
        )]),
        Line::from(vec![Span::raw("  Category distribution shown at bottom")]),
        Line::from(vec![Span::raw("")]),
        Line::from(vec![Span::styled(
            "📊 Chart Types (press 'c' to cycle):",
            Style::default().add_modifier(Modifier::BOLD),
        )]),
        Line::from(vec![Span::raw(
            "  Bar Chart: Traditional vertical bars for comparison",
        )]),
        Line::from(vec![Span::raw(
            "  Pie Count: Circular chart showing item distribution by count",
        )]),
        Line::from(vec![Span::raw(
            "  Pie Size: Circular chart showing space usage by category",
        )]),
        Line::from(vec![Span::raw("")]),
        Line::from(vec![Span::styled(
            "🔒 System Operations:",
            Style::default().add_modifier(Modifier::BOLD),
        )]),
        Line::from(vec![Span::raw(
            "  System cleaners require sudo/root privileges",
        )]),
        Line::from(vec![Span::raw(
            "  Run 'sudo cleansys' or provide password when prompted",
        )]),
        Line::from(vec![Span::raw(
            "  Items marked (sudo) will request elevated privileges",
        )]),
        Line::from(vec![Span::raw("")]),
        Line::from(vec![Span::styled(
            "🔄 Other:",
            Style::default().add_modifier(Modifier::BOLD),
        )]),
        Line::from(vec![Span::raw("  ?: Show/hide help")]),
        Line::from(vec![Span::raw("  q: Exit application")]),
    ];

    let help = Paragraph::new(help_text)
        .block(Block::default().title("📚 Help").borders(Borders::ALL))
        .wrap(Wrap { trim: true });

    f.render_widget(help, area);
}

/// Compute a centered popup `Rect` covering roughly `width_pct`/`height_pct`
/// of `area`, clamped to a sensible minimum/maximum size.
fn centered_popup(area: Rect, width_pct: u16, height_pct: u16) -> Rect {
    let width = (area.width * width_pct / 100).clamp(30, area.width.saturating_sub(2).max(30));
    let height = (area.height * height_pct / 100).clamp(10, area.height.saturating_sub(2).max(10));
    let x = area.x + (area.width.saturating_sub(width)) / 2;
    let y = area.y + (area.height.saturating_sub(height)) / 2;
    Rect {
        x,
        y,
        width,
        height,
    }
}

/// Overlay shown before actually cleaning: lists exactly what's selected and
/// requires an explicit Enter/y (confirm) or Esc/n (cancel).
fn render_confirm_run(f: &mut Frame, app: &App, area: Rect) {
    let popup = centered_popup(area, 70, 60);

    let selected_count = app.pending_run_selection.len();
    let mut lines = vec![
        Line::from(vec![Span::styled(
            "⚠️  Confirm Cleaning",
            Style::default()
                .fg(Color::Yellow)
                .add_modifier(Modifier::BOLD),
        )]),
        Line::from(vec![Span::raw("")]),
        Line::from(vec![Span::raw(format!(
            "This will permanently delete files for {selected_count} selected cleaner(s):"
        ))]),
        Line::from(vec![Span::raw("")]),
    ];

    for (_, _, name, _, requires_root) in app.pending_run_selection.iter().take(15) {
        let suffix = if *requires_root { " (root)" } else { "" };
        lines.push(Line::from(vec![Span::raw(format!("{name}{suffix}"))]));
    }
    if app.pending_run_selection.len() > 15 {
        lines.push(Line::from(vec![Span::styled(
            format!("  … and {} more", app.pending_run_selection.len() - 15),
            Style::default().fg(Color::DarkGray),
        )]));
    }

    lines.push(Line::from(vec![Span::raw("")]));
    lines.push(Line::from(vec![Span::styled(
        "Enter/y: Run now    Esc/n: Cancel",
        Style::default()
            .fg(Color::Green)
            .add_modifier(Modifier::BOLD),
    )]));

    let popup_widget = Paragraph::new(lines)
        .block(
            Block::default()
                .title("Confirm")
                .borders(Borders::ALL)
                .border_style(Style::default().fg(Color::Yellow)),
        )
        .wrap(Wrap { trim: true });

    f.render_widget(Clear, popup);
    f.render_widget(popup_widget, popup);
}

/// Overlay shown for a preview (dry-run): lists what *would* be cleaned and
/// its real measured size, without anything having been deleted.
fn render_preview(f: &mut Frame, app: &App, area: Rect) {
    let popup = centered_popup(area, 80, 75);

    let total_bytes: u64 = app.preview_results.iter().map(|(_, r)| r.total_bytes).sum();
    let total_items: usize = app
        .preview_results
        .iter()
        .map(|(_, r)| r.item_count())
        .sum();

    let mut lines = vec![
        Line::from(vec![Span::styled(
            "🔍 Preview (dry-run)",
            Style::default()
                .fg(Color::Cyan)
                .add_modifier(Modifier::BOLD),
        )]),
        Line::from(vec![Span::raw("")]),
        Line::from(vec![Span::raw(format!(
            "Would free {} across {total_items} item(s). Nothing has been deleted.",
            format_size(total_bytes)
        ))]),
        Line::from(vec![Span::raw("")]),
    ];

    if app.preview_results.is_empty() {
        lines.push(Line::from(vec![Span::styled(
            "Nothing to clean — all selected cleaners are already empty.",
            Style::default().fg(Color::DarkGray),
        )]));
    }

    for (name, result) in &app.preview_results {
        lines.push(Line::from(vec![Span::styled(
            format!(
                "{name}{} across {} item(s)",
                format_size(result.total_bytes),
                result.item_count()
            ),
            Style::default().add_modifier(Modifier::BOLD),
        )]));
        for item in result.items.iter().take(3) {
            lines.push(Line::from(vec![Span::raw(format!(
                "{} ({})",
                item.path_str(),
                format_size(item.size)
            ))]));
        }
        if result.items.len() > 3 {
            lines.push(Line::from(vec![Span::styled(
                format!("    … and {} more", result.items.len() - 3),
                Style::default().fg(Color::DarkGray),
            )]));
        }
        lines.push(Line::from(vec![Span::raw("")]));
    }

    lines.push(Line::from(vec![Span::styled(
        "Enter/Esc/q: Close",
        Style::default()
            .fg(Color::Green)
            .add_modifier(Modifier::BOLD),
    )]));

    let popup_widget = Paragraph::new(lines)
        .block(
            Block::default()
                .title("Preview")
                .borders(Borders::ALL)
                .border_style(Style::default().fg(Color::Cyan)),
        )
        .wrap(Wrap { trim: true });

    f.render_widget(Clear, popup);
    f.render_widget(popup_widget, popup);
}

/// Overlay shown when a selected cleaner needs Administrator privileges on
/// Windows, where there is no interactive sudo-password prompt to fall back
/// to — the user must restart the process elevated themselves.
fn render_admin_notice(f: &mut Frame, area: Rect) {
    let popup = centered_popup(area, 60, 30);

    let lines = vec![
        Line::from(vec![Span::styled(
            "⚠️  Administrator privileges required",
            Style::default()
                .fg(Color::Yellow)
                .add_modifier(Modifier::BOLD),
        )]),
        Line::from(vec![Span::raw("")]),
        Line::from(vec![Span::raw(
            "One or more selected cleaners need Administrator privileges.",
        )]),
        Line::from(vec![Span::raw(
            "Restart CleanSys as Administrator to use them.",
        )]),
        Line::from(vec![Span::raw("")]),
        Line::from(vec![Span::styled(
            "Enter/Esc/q: Close",
            Style::default()
                .fg(Color::Green)
                .add_modifier(Modifier::BOLD),
        )]),
    ];

    let popup_widget = Paragraph::new(lines)
        .block(
            Block::default()
                .title("Administrator required")
                .borders(Borders::ALL)
                .border_style(Style::default().fg(Color::Yellow)),
        )
        .wrap(Wrap { trim: true });

    f.render_widget(Clear, popup);
    f.render_widget(popup_widget, popup);
}