orbit-tui 1.2.0

Terminal UI for AWS - navigate, observe, and manage AWS resources
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
mod app;
mod aws;
mod completion;
mod config;
mod demo;
mod event;
mod resource;
mod ui;

/// Version from Cargo.toml, embedded at compile time.
pub const VERSION: &str = env!("CARGO_PKG_VERSION");

use anyhow::Result;
use app::{App, Mode, SsoLoginState};
use aws::client::ClientResult;
use clap::{CommandFactory, Parser, Subcommand, ValueEnum};
use clap_complete::{generate, Shell};
use config::Config;
use crossterm::{
    event::{poll, read, Event, KeyCode, KeyModifiers},
    execute,
    terminal::{disable_raw_mode, enable_raw_mode, EnterAlternateScreen, LeaveAlternateScreen},
};
use ratatui::prelude::*;
use std::io;
use std::path::PathBuf;
use std::time::Duration;
use tracing::Level;
use tracing_subscriber::fmt::writer::MakeWriterExt;
use ui::splash::{render as render_splash, SplashState};

/// Terminal UI for AWS
#[derive(Parser, Debug)]
#[command(name = "orbit", version, about, long_about = None)]
struct Args {
    /// AWS profile to use
    #[arg(short, long)]
    profile: Option<String>,

    /// AWS region to use
    #[arg(short, long)]
    region: Option<String>,

    /// Log level for debugging (logs to platform config dir: Linux ~/.config/orbit/orbit.log, macOS ~/Library/Application Support/orbit/orbit.log, Windows %APPDATA%/orbit/orbit.log)
    #[arg(long, value_enum, default_value = "off")]
    log_level: LogLevel,

    /// Run in read-only mode (block all write operations). This is the default.
    #[arg(long, default_value = "true")]
    readonly: bool,

    /// Run in write mode (allow all write operations). Overrides --readonly.
    #[arg(long)]
    write: bool,

    /// Custom AWS endpoint URL (for LocalStack, etc.). Also reads from AWS_ENDPOINT_URL env var.
    #[arg(long)]
    endpoint_url: Option<String>,

    /// Run with synthetic demo data (no AWS connection required).
    /// Bare `--demo` shows EC2 instances. `--demo all` shows everything.
    /// Or choose specific resources: `--demo ec2-instances,route53-hosted-zones`.
    #[arg(long, num_args = 0..=1, default_missing_value = "ec2-instances")]
    demo: Option<String>,

    #[command(subcommand)]
    command: Option<Command>,
}

#[derive(Subcommand, Debug)]
enum Command {
    /// Generate shell completion scripts
    Completion {
        /// Shell to generate completions for
        #[arg(value_enum)]
        shell: Shell,
    },
    /// List available AWS profiles (for shell completion)
    #[command(hide = true)]
    ListProfiles,
    /// List available AWS regions (for shell completion)
    #[command(hide = true)]
    ListRegions,
}

#[derive(Debug, Clone, Copy, ValueEnum)]
enum LogLevel {
    Off,
    Error,
    Warn,
    Info,
    Debug,
    Trace,
}

impl LogLevel {
    fn to_tracing_level(self) -> Option<Level> {
        match self {
            LogLevel::Off => None,
            LogLevel::Error => Some(Level::ERROR),
            LogLevel::Warn => Some(Level::WARN),
            LogLevel::Info => Some(Level::INFO),
            LogLevel::Debug => Some(Level::DEBUG),
            LogLevel::Trace => Some(Level::TRACE),
        }
    }
}

fn setup_logging(level: LogLevel) -> Option<tracing_appender::non_blocking::WorkerGuard> {
    let tracing_level = level.to_tracing_level()?;

    // Get log file path
    let log_path = get_log_path();

    // Ensure parent directory exists
    if let Some(parent) = log_path.parent() {
        let _ = std::fs::create_dir_all(parent);
    }

    // Create file appender
    let file = std::fs::OpenOptions::new()
        .create(true)
        .append(true)
        .open(&log_path)
        .expect("Failed to open log file");

    let (non_blocking, guard) = tracing_appender::non_blocking(file);

    tracing_subscriber::fmt()
        .with_max_level(tracing_level)
        .with_writer(non_blocking.with_max_level(tracing_level))
        .with_ansi(false)
        .with_target(true)
        .with_thread_ids(false)
        .with_file(true)
        .with_line_number(true)
        .init();

    tracing::info!("orbit started with log level: {:?}", level);
    tracing::info!("Log file: {:?}", log_path);

    Some(guard)
}

fn get_log_path() -> PathBuf {
    if let Some(config_dir) = dirs::config_dir() {
        return config_dir.join("orbit").join("orbit.log");
    }
    if let Some(home) = dirs::home_dir() {
        return home.join(".orbit").join("orbit.log");
    }
    PathBuf::from("orbit.log")
}

#[tokio::main]
async fn main() -> Result<()> {
    // Parse CLI arguments
    let args = Args::parse();

    // Handle subcommands that don't need TUI
    match &args.command {
        Some(Command::Completion { shell }) => {
            match shell {
                Shell::Bash => print!("{}", completion::generate_bash()),
                Shell::Zsh => print!("{}", completion::generate_zsh()),
                Shell::Fish => print!("{}", completion::generate_fish()),
                Shell::PowerShell => print!("{}", completion::generate_powershell()),
                _ => {
                    // Fall back to clap's default for other shells (e.g., Elvish)
                    let mut cmd = Args::command();
                    generate(*shell, &mut cmd, "orbit", &mut std::io::stdout());
                }
            }
            return Ok(());
        }
        Some(Command::ListProfiles) => {
            // Output profiles for shell completion
            if let Ok(profiles) = aws::profiles::list_profiles() {
                for profile in profiles {
                    println!("{}", profile);
                }
            }
            return Ok(());
        }
        Some(Command::ListRegions) => {
            // Output regions for shell completion
            for region in aws::profiles::list_regions() {
                println!("{}", region);
            }
            return Ok(());
        }
        None => {}
    }

    // Setup logging (keep guard alive for the duration of the program)
    let _log_guard = setup_logging(args.log_level);

    // Setup terminal
    enable_raw_mode()?;
    let mut stdout = io::stdout();
    execute!(stdout, EnterAlternateScreen)?;
    let backend = CrosstermBackend::new(stdout);
    let mut terminal = Terminal::new(backend)?;

    // Show splash screen and initialize
    let result = initialize_with_splash(&mut terminal, &args).await;

    match result {
        Ok(Some(mut app)) => {
            // Run the main app
            let run_result = run_app(&mut terminal, &mut app).await;

            // Restore terminal
            cleanup_terminal(&mut terminal)?;

            if let Err(err) = run_result {
                eprintln!("Error: {err:?}");
            }
        }
        Ok(None) => {
            // User aborted during initialization
            cleanup_terminal(&mut terminal)?;
        }
        Err(err) => {
            // Restore terminal before showing error
            cleanup_terminal(&mut terminal)?;
            eprintln!("Initialization error: {err:?}");
        }
    }

    Ok(())
}

fn cleanup_terminal<B: Backend + std::io::Write>(terminal: &mut Terminal<B>) -> Result<()>
where
    B::Error: Send + Sync + 'static,
{
    disable_raw_mode()?;
    execute!(terminal.backend_mut(), LeaveAlternateScreen)?;
    terminal.show_cursor()?;
    Ok(())
}

/// Result of initialization - either an App or SSO login is required
#[allow(clippy::large_enum_variant)]
enum InitResult {
    App(App),
    /// SSO login required (IAM Identity Center) - user needs `aws sso login`
    SsoRequired {
        profile: String,
        sso_session: String,
        region: String,
        endpoint_url: Option<String>,
        config: Config,
        available_profiles: Vec<String>,
        available_regions: Vec<String>,
        readonly: bool,
    },
    /// Console login required - user needs `aws login`
    ConsoleLoginRequired {
        profile: String,
        login_session: String,
        region: String,
        endpoint_url: Option<String>,
        config: Config,
        available_profiles: Vec<String>,
        available_regions: Vec<String>,
        readonly: bool,
    },
}

async fn initialize_with_splash<B: Backend>(
    terminal: &mut Terminal<B>,
    args: &Args,
) -> Result<Option<App>>
where
    B::Error: Send + Sync + 'static,
{
    match initialize_inner(terminal, args).await? {
        None => Ok(None), // User aborted
        Some(InitResult::App(app)) => Ok(Some(app)),
        Some(InitResult::SsoRequired {
            profile,
            sso_session,
            region,
            endpoint_url,
            config,
            available_profiles,
            available_regions,
            readonly,
        }) => {
            // Handle SSO login flow (aws sso login)
            handle_sso_login_flow(
                terminal,
                profile,
                sso_session,
                region,
                endpoint_url,
                config,
                available_profiles,
                available_regions,
                readonly,
            )
            .await
        }
        Some(InitResult::ConsoleLoginRequired {
            profile,
            login_session,
            region,
            endpoint_url,
            config,
            available_profiles,
            available_regions,
            readonly,
        }) => {
            // Handle console login flow (aws login)
            handle_console_login_flow(
                terminal,
                profile,
                login_session,
                region,
                endpoint_url,
                config,
                available_profiles,
                available_regions,
                readonly,
            )
            .await
        }
    }
}

async fn initialize_inner<B: Backend>(
    terminal: &mut Terminal<B>,
    args: &Args,
) -> Result<Option<InitResult>>
where
    B::Error: Send + Sync + 'static,
{
    let readonly = !args.write && args.readonly;

    let mut splash = SplashState::new(readonly);

    // Render initial splash
    terminal.draw(|f| render_splash(f, &splash))?;

    // Check for abort
    if check_abort()? {
        return Ok(None);
    }

    // Step 1: Load configuration (CLI args > env vars > saved config)
    let config = Config::load();
    let profile = args
        .profile
        .clone()
        .unwrap_or_else(|| config.effective_profile());
    let region = args
        .region
        .clone()
        .unwrap_or_else(|| config.effective_region());

    // Get endpoint URL from CLI arg or environment variable
    let endpoint_url = args
        .endpoint_url
        .clone()
        .or_else(|| std::env::var("AWS_ENDPOINT_URL").ok());

    tracing::info!(
        "Using profile: {}, region: {}, endpoint_url: {:?}",
        profile,
        region,
        endpoint_url
    );

    splash.set_message(&format!("Loading AWS config [profile: {}]", profile));
    terminal.draw(|f| render_splash(f, &splash))?;
    splash.complete_step();

    if check_abort()? {
        return Ok(None);
    }

    // Step 2: Load profiles early (needed for SSO flow too)
    splash.set_message("Reading ~/.aws/config");
    terminal.draw(|f| render_splash(f, &splash))?;

    let available_profiles =
        aws::profiles::list_profiles().unwrap_or_else(|_| vec!["default".to_string()]);
    let available_regions = aws::profiles::list_regions();
    splash.complete_step();

    if check_abort()? {
        return Ok(None);
    }

    // Step 3: Initialize AWS clients (or use dummy in demo mode)
    let (clients, actual_region) = if args.demo.is_some() {
        splash.set_message("Demo mode — no AWS connection");
        terminal.draw(|f| render_splash(f, &splash))?;
        (aws::client::AwsClients::dummy(), "eu-west-1".to_string())
    } else {
        splash.set_message(&format!("Connecting to AWS services [{}]", region));
        terminal.draw(|f| render_splash(f, &splash))?;

        let client_result =
            aws::client::AwsClients::new_with_sso_check(&profile, &region, endpoint_url.clone())
                .await?;

        match client_result {
            ClientResult::Ok(clients, actual_region) => (clients, actual_region),
            ClientResult::SsoLoginRequired {
                profile,
                sso_session,
                region,
                endpoint_url,
            } => {
                tracing::debug!(
                    "SSO login required for profile '{}', session '{}' - showing login dialog",
                    profile,
                    sso_session
                );
                return Ok(Some(InitResult::SsoRequired {
                    profile,
                    sso_session,
                    region,
                    endpoint_url,
                    config,
                    available_profiles,
                    available_regions,
                    readonly,
                }));
            }
            ClientResult::ConsoleLoginRequired {
                profile,
                login_session,
                region,
                endpoint_url,
            } => {
                tracing::debug!(
                    "Console login required for profile '{}', session '{}' - showing login dialog",
                    profile,
                    login_session
                );
                return Ok(Some(InitResult::ConsoleLoginRequired {
                    profile,
                    login_session,
                    region,
                    endpoint_url,
                    config,
                    available_profiles,
                    available_regions,
                    readonly,
                }));
            }
        }
    };

    splash.complete_step();

    if check_abort()? {
        return Ok(None);
    }

    // Step 4: Fetch EC2 instances (or load demo data)
    let (instances, initial_error, demo, first_resource) = if let Some(ref selection) = args.demo {
        splash.set_message("Loading demo data");
        terminal.draw(|f| render_splash(f, &splash))?;
        let keys: Vec<&str> = selection.split(',').map(|s| s.trim()).collect();
        let (demo_data, initial_key) = demo::load(&keys);
        let instances = demo_data.get(&*initial_key).cloned().unwrap_or_default();
        (instances, None, true, initial_key)
    } else {
        splash.set_message(&format!("Fetching instances from {}", actual_region));
        terminal.draw(|f| render_splash(f, &splash))?;

        match resource::fetch_resources_paginated("ec2-instances", &clients, &[], None).await {
            Ok(result) => (result.items, None, false, "ec2-instances".to_string()),
            Err(e) => {
                let error_msg = aws::client::format_aws_error(&e);
                (
                    Vec::new(),
                    Some(error_msg),
                    false,
                    "ec2-instances".to_string(),
                )
            }
        }
    };

    splash.complete_step();
    splash.set_message("Ready!");
    terminal.draw(|f| render_splash(f, &splash))?;

    // Small delay to show completion
    tokio::time::sleep(Duration::from_millis(200)).await;

    // Create the app with config
    let mut app = App::from_initialized(
        clients,
        profile,
        actual_region,
        available_profiles,
        available_regions,
        instances,
        config,
        readonly,
        endpoint_url,
        demo,
        &first_resource,
    );

    // Set initial error if any
    if let Some(err) = initial_error {
        app.error_message = Some(err);
    }

    Ok(Some(InitResult::App(app)))
}

/// Handle SSO login flow interactively
#[allow(clippy::too_many_arguments)]
async fn handle_sso_login_flow<B: Backend>(
    terminal: &mut Terminal<B>,
    profile: String,
    sso_session: String,
    region: String,
    endpoint_url: Option<String>,
    config: Config,
    available_profiles: Vec<String>,
    available_regions: Vec<String>,
    readonly: bool,
) -> Result<Option<App>>
where
    B::Error: Send + Sync + 'static,
{
    use aws::sso;

    tracing::info!(
        "Entering SSO login flow for profile '{}', session '{}'",
        profile,
        sso_session
    );

    // Create a minimal app state for the SSO dialog
    let mut sso_state = SsoLoginState::Prompt {
        profile: profile.clone(),
        sso_session: sso_session.clone(),
    };

    loop {
        // Render SSO dialog
        terminal.draw(|f| {
            render_sso_standalone(f, &sso_state);
        })?;

        // Handle input
        if poll(Duration::from_millis(100))? {
            if let Event::Key(key) = read()? {
                match &sso_state {
                    SsoLoginState::Prompt { profile, .. } => {
                        match key.code {
                            KeyCode::Enter => {
                                // First check if we already have a valid cached token (e.g., from aws sso login)
                                let profile_clone = profile.clone();

                                enum SsoStartResult {
                                    ExistingToken(String),
                                    NeedAuth {
                                        profile: String,
                                        device_auth: sso::DeviceAuthInfo,
                                        sso_region: String,
                                    },
                                    Error(String),
                                }

                                let result = tokio::task::spawn_blocking(move || {
                                    let sso_config = match sso::get_sso_config(&profile_clone) {
                                        Some(c) => c,
                                        None => {
                                            return SsoStartResult::Error(format!(
                                                "SSO config not found for profile '{}'",
                                                profile_clone
                                            ))
                                        }
                                    };

                                    // Check for existing valid token first
                                    if let Some(_token) = sso::check_existing_token(&sso_config) {
                                        return SsoStartResult::ExistingToken(profile_clone);
                                    }

                                    // No valid token, start device authorization
                                    match sso::start_device_authorization(&sso_config) {
                                        Ok(device_auth) => {
                                            // Open browser
                                            let _ = sso::open_sso_browser(
                                                &device_auth.verification_uri_complete,
                                            );
                                            SsoStartResult::NeedAuth {
                                                profile: profile_clone,
                                                device_auth,
                                                sso_region: sso_config.sso_region,
                                            }
                                        }
                                        Err(e) => SsoStartResult::Error(format!(
                                            "Failed to start SSO: {}",
                                            e
                                        )),
                                    }
                                })
                                .await?;

                                match result {
                                    SsoStartResult::ExistingToken(prof) => {
                                        // Already have valid token, skip straight to success
                                        sso_state = SsoLoginState::Success { profile: prof };
                                    }
                                    SsoStartResult::NeedAuth {
                                        profile: prof,
                                        device_auth,
                                        sso_region,
                                    } => {
                                        sso_state = SsoLoginState::WaitingForAuth {
                                            profile: prof,
                                            user_code: device_auth.user_code,
                                            verification_uri: device_auth.verification_uri,
                                            device_code: device_auth.device_code,
                                            interval: device_auth.interval as u64,
                                            sso_region,
                                        };
                                    }
                                    SsoStartResult::Error(e) => {
                                        sso_state = SsoLoginState::Failed { error: e };
                                    }
                                }
                            }
                            KeyCode::Esc | KeyCode::Char('q') => {
                                return Ok(None); // User cancelled
                            }
                            KeyCode::Char('c') if key.modifiers.contains(KeyModifiers::CONTROL) => {
                                return Ok(None);
                            }
                            _ => {}
                        }
                    }
                    SsoLoginState::WaitingForAuth { profile, .. } => {
                        match key.code {
                            KeyCode::Esc => {
                                return Ok(None); // User cancelled
                            }
                            KeyCode::Char('c') if key.modifiers.contains(KeyModifiers::CONTROL) => {
                                return Ok(None);
                            }
                            _ => {
                                // Any other key - continue polling
                            }
                        }

                        // Poll for token - run blocking code on separate thread
                        let profile_clone = profile.clone();
                        let result = tokio::task::spawn_blocking(move || {
                            if let Some(sso_config) = sso::get_sso_config(&profile_clone) {
                                match sso::poll_for_token(&sso_config) {
                                    Ok(Some(_token)) => Ok(Some(profile_clone)),
                                    Ok(None) => Ok(None),
                                    Err(e) => Err(e.to_string()),
                                }
                            } else {
                                Ok(None)
                            }
                        })
                        .await?;

                        match result {
                            Ok(Some(prof)) => {
                                sso_state = SsoLoginState::Success { profile: prof };
                            }
                            Ok(None) => {
                                // Still pending
                            }
                            Err(e) => {
                                sso_state = SsoLoginState::Failed { error: e };
                            }
                        }
                    }
                    SsoLoginState::Success {
                        profile: _sso_profile,
                    } => {
                        // Note: _sso_profile should match the outer `profile` variable for initial SSO
                        match key.code {
                            KeyCode::Enter | KeyCode::Esc => {
                                // SSO successful - now create the client and continue initialization
                                // AwsClients::new handles blocking internally via spawn_blocking
                                let (clients, actual_region) = aws::client::AwsClients::new(
                                    &profile,
                                    &region,
                                    endpoint_url.clone(),
                                )
                                .await?;

                                // Fetch initial resources
                                let (instances, initial_error) = {
                                    match resource::fetch_resources_paginated(
                                        "ec2-instances",
                                        &clients,
                                        &[],
                                        None,
                                    )
                                    .await
                                    {
                                        Ok(result) => (result.items, None),
                                        Err(e) => {
                                            let error_msg = aws::client::format_aws_error(&e);
                                            (Vec::new(), Some(error_msg))
                                        }
                                    }
                                };

                                let mut app = App::from_initialized(
                                    clients,
                                    profile,
                                    actual_region,
                                    available_profiles,
                                    available_regions,
                                    instances,
                                    config,
                                    readonly,
                                    endpoint_url,
                                    false,
                                    "ec2-instances",
                                );

                                if let Some(err) = initial_error {
                                    app.error_message = Some(err);
                                }

                                return Ok(Some(app));
                            }
                            KeyCode::Char('c') if key.modifiers.contains(KeyModifiers::CONTROL) => {
                                return Ok(None);
                            }
                            _ => {}
                        }
                    }
                    SsoLoginState::Failed { .. } => {
                        match key.code {
                            KeyCode::Enter | KeyCode::Esc => {
                                return Ok(None); // Exit on failure
                            }
                            KeyCode::Char('c') if key.modifiers.contains(KeyModifiers::CONTROL) => {
                                return Ok(None);
                            }
                            _ => {}
                        }
                    }
                }
            }
        } else {
            // No key event - poll for SSO if waiting
            if let SsoLoginState::WaitingForAuth {
                profile: waiting_profile,
                ..
            } = &sso_state
            {
                let waiting_profile = waiting_profile.clone();
                let result = tokio::task::spawn_blocking(move || {
                    if let Some(sso_config) = sso::get_sso_config(&waiting_profile) {
                        match sso::poll_for_token(&sso_config) {
                            Ok(Some(_token)) => Ok(Some(waiting_profile)),
                            Ok(None) => Ok(None),
                            Err(e) => Err(e.to_string()),
                        }
                    } else {
                        Ok(None)
                    }
                })
                .await?;

                match result {
                    Ok(Some(prof)) => {
                        sso_state = SsoLoginState::Success { profile: prof };
                    }
                    Ok(None) => {
                        // Still pending
                    }
                    Err(e) => {
                        sso_state = SsoLoginState::Failed { error: e };
                    }
                }
            }
        }
    }
}

/// Render SSO dialog standalone (during initialization, before app is created)
fn render_sso_standalone(f: &mut ratatui::Frame, sso_state: &SsoLoginState) {
    use ratatui::{
        layout::{Alignment, Constraint, Direction, Layout, Rect},
        style::{Color, Modifier, Style},
        text::{Line, Span},
        widgets::{Block, Borders, Clear, Paragraph},
    };

    fn centered_rect(percent_x: u16, height: u16, r: Rect) -> Rect {
        let popup_layout = Layout::default()
            .direction(Direction::Vertical)
            .constraints([
                Constraint::Percentage(40),
                Constraint::Length(height),
                Constraint::Percentage(40),
            ])
            .split(r);

        Layout::default()
            .direction(Direction::Horizontal)
            .constraints([
                Constraint::Percentage((100 - percent_x) / 2),
                Constraint::Percentage(percent_x),
                Constraint::Percentage((100 - percent_x) / 2),
            ])
            .split(popup_layout[1])[1]
    }

    // Clear the screen with a dark background
    let area = f.area();
    f.render_widget(Clear, area);
    let bg_block = Block::default().style(Style::default().bg(Color::Black));
    f.render_widget(bg_block, area);

    match sso_state {
        SsoLoginState::Prompt {
            profile,
            sso_session,
        } => {
            let dialog_area = centered_rect(70, 10, area);
            f.render_widget(Clear, dialog_area);

            let text = vec![
                Line::from(Span::styled(
                    "<SSO Login Required>",
                    Style::default()
                        .fg(Color::Cyan)
                        .add_modifier(Modifier::BOLD),
                )),
                Line::from(""),
                Line::from(Span::styled(
                    format!("Profile '{}' requires SSO authentication.", profile),
                    Style::default().fg(Color::White),
                )),
                Line::from(Span::styled(
                    format!("Session: {}", sso_session),
                    Style::default().fg(Color::DarkGray),
                )),
                Line::from(""),
                Line::from(Span::styled(
                    "Press Enter to open browser for login, Esc to cancel",
                    Style::default().fg(Color::Yellow),
                )),
            ];

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

            let paragraph = Paragraph::new(text)
                .block(block)
                .alignment(Alignment::Center);
            f.render_widget(paragraph, dialog_area);
        }

        SsoLoginState::WaitingForAuth {
            user_code,
            verification_uri,
            ..
        } => {
            let dialog_area = centered_rect(70, 12, area);
            f.render_widget(Clear, dialog_area);

            let text = vec![
                Line::from(Span::styled(
                    "<Waiting for SSO Authentication>",
                    Style::default()
                        .fg(Color::Yellow)
                        .add_modifier(Modifier::BOLD),
                )),
                Line::from(""),
                Line::from(Span::styled(
                    "Complete authentication in your browser.",
                    Style::default().fg(Color::White),
                )),
                Line::from(""),
                Line::from(vec![
                    Span::styled("Code: ", Style::default().fg(Color::DarkGray)),
                    Span::styled(
                        user_code,
                        Style::default()
                            .fg(Color::Cyan)
                            .add_modifier(Modifier::BOLD),
                    ),
                ]),
                Line::from(vec![
                    Span::styled("URL: ", Style::default().fg(Color::DarkGray)),
                    Span::styled(verification_uri, Style::default().fg(Color::Blue)),
                ]),
                Line::from(""),
                Line::from(Span::styled(
                    "Waiting... (Press Esc to cancel)",
                    Style::default().fg(Color::DarkGray),
                )),
            ];

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

            let paragraph = Paragraph::new(text)
                .block(block)
                .alignment(Alignment::Center);
            f.render_widget(paragraph, dialog_area);
        }

        SsoLoginState::Success { profile } => {
            let dialog_area = centered_rect(50, 7, area);
            f.render_widget(Clear, dialog_area);

            let text = vec![
                Line::from(Span::styled(
                    "<SSO Login Successful>",
                    Style::default()
                        .fg(Color::Green)
                        .add_modifier(Modifier::BOLD),
                )),
                Line::from(""),
                Line::from(Span::styled(
                    format!("Authenticated '{}'. Press Enter to continue.", profile),
                    Style::default().fg(Color::White),
                )),
            ];

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

            let paragraph = Paragraph::new(text)
                .block(block)
                .alignment(Alignment::Center);
            f.render_widget(paragraph, dialog_area);
        }

        SsoLoginState::Failed { error } => {
            let dialog_area = centered_rect(70, 9, area);
            f.render_widget(Clear, dialog_area);

            let text = vec![
                Line::from(Span::styled(
                    "<SSO Login Failed>",
                    Style::default().fg(Color::Red).add_modifier(Modifier::BOLD),
                )),
                Line::from(""),
                Line::from(Span::styled(
                    error.as_str(),
                    Style::default().fg(Color::White),
                )),
                Line::from(""),
                Line::from(Span::styled(
                    "Press Enter or Esc to exit",
                    Style::default().fg(Color::DarkGray),
                )),
            ];

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

            let paragraph = Paragraph::new(text)
                .block(block)
                .alignment(Alignment::Center);
            f.render_widget(paragraph, dialog_area);
        }
    }
}

/// Handle console login flow (aws login command via subprocess)
#[allow(clippy::too_many_arguments)]
async fn handle_console_login_flow<B: Backend>(
    terminal: &mut Terminal<B>,
    profile: String,
    login_session: String,
    region: String,
    endpoint_url: Option<String>,
    config: Config,
    available_profiles: Vec<String>,
    available_regions: Vec<String>,
    readonly: bool,
) -> Result<Option<App>>
where
    B::Error: Send + Sync + 'static,
{
    use app::ConsoleLoginState;
    use aws::console_login;

    tracing::info!(
        "Entering console login flow for profile '{}', session '{}'",
        profile,
        login_session
    );

    let mut console_state = ConsoleLoginState::Prompt {
        profile: profile.clone(),
        login_session: login_session.clone(),
    };
    let mut child_process: Option<std::process::Child> = None;
    let mut login_rx: Option<std::sync::mpsc::Receiver<console_login::LoginInfo>> = None;

    loop {
        // Render console login dialog
        terminal.draw(|f| {
            render_console_login_standalone(f, &console_state);
        })?;

        // Poll child process status if waiting
        if let ConsoleLoginState::WaitingForAuth {
            profile: waiting_profile,
            login_session: waiting_login_session,
            url: current_url,
        } = &console_state
        {
            // Check for URL updates from the receiver
            if let Some(ref rx) = login_rx {
                if let Ok(info) = rx.try_recv() {
                    if info.url.is_some() {
                        console_state = ConsoleLoginState::WaitingForAuth {
                            profile: waiting_profile.clone(),
                            login_session: waiting_login_session.clone(),
                            url: info.url,
                        };
                        continue;
                    }
                }
            }

            if let Some(ref mut child) = child_process {
                match console_login::check_login_status(child) {
                    Ok(Some(true)) => {
                        // Success!
                        child_process = None;
                        login_rx = None;
                        console_state = ConsoleLoginState::Success {
                            profile: waiting_profile.clone(),
                        };
                        continue;
                    }
                    Ok(Some(false)) => {
                        // Failed - get error message from stderr
                        let error = console_login::read_child_stderr(child)
                            .unwrap_or_else(|| "aws login command failed".to_string());
                        child_process = None;
                        login_rx = None;
                        console_state = ConsoleLoginState::Failed {
                            profile: waiting_profile.clone(),
                            error,
                        };
                        continue;
                    }
                    Ok(None) => {
                        // Still running - preserve current URL state
                        let _ = current_url; // Suppress unused warning
                    }
                    Err(e) => {
                        child_process = None;
                        login_rx = None;
                        console_state = ConsoleLoginState::Failed {
                            profile: waiting_profile.clone(),
                            error: format!("Error checking login status: {}", e),
                        };
                        continue;
                    }
                }
            }
        }

        // Handle input
        if poll(Duration::from_millis(100))? {
            if let Event::Key(key) = read()? {
                match &console_state {
                    ConsoleLoginState::Prompt {
                        profile: prompt_profile,
                        login_session: prompt_login_session,
                    } => {
                        match key.code {
                            KeyCode::Enter => {
                                // Check if AWS CLI supports `aws login`
                                if !console_login::is_aws_login_available() {
                                    console_state = ConsoleLoginState::Failed {
                                        profile: prompt_profile.clone(),
                                        error: "AWS CLI v2.32.0+ required for 'aws login' command. Please upgrade your AWS CLI.".to_string(),
                                    };
                                    continue;
                                }

                                // Spawn `aws login` subprocess
                                match console_login::spawn_aws_login(prompt_profile, &region) {
                                    Ok((child, rx)) => {
                                        child_process = Some(child);
                                        login_rx = Some(rx);
                                        console_state = ConsoleLoginState::WaitingForAuth {
                                            profile: prompt_profile.clone(),
                                            login_session: prompt_login_session.clone(),
                                            url: None,
                                        };
                                    }
                                    Err(e) => {
                                        console_state = ConsoleLoginState::Failed {
                                            profile: prompt_profile.clone(),
                                            error: format!("Failed to spawn aws login: {}", e),
                                        };
                                    }
                                }
                            }
                            KeyCode::Esc | KeyCode::Char('q') => {
                                return Ok(None); // User cancelled
                            }
                            KeyCode::Char('c') if key.modifiers.contains(KeyModifiers::CONTROL) => {
                                return Ok(None);
                            }
                            _ => {}
                        }
                    }
                    ConsoleLoginState::WaitingForAuth { .. } => {
                        match key.code {
                            KeyCode::Esc => {
                                // Kill the subprocess and cancel
                                if let Some(mut child) = child_process.take() {
                                    let _ = child.kill();
                                }
                                return Ok(None);
                            }
                            KeyCode::Char('c') if key.modifiers.contains(KeyModifiers::CONTROL) => {
                                if let Some(mut child) = child_process.take() {
                                    let _ = child.kill();
                                }
                                return Ok(None);
                            }
                            _ => {
                                // Continue waiting
                            }
                        }
                    }
                    ConsoleLoginState::Success { .. } => {
                        match key.code {
                            KeyCode::Enter | KeyCode::Esc => {
                                // Console login successful - create the client and continue
                                let (clients, actual_region) = aws::client::AwsClients::new(
                                    &profile,
                                    &region,
                                    endpoint_url.clone(),
                                )
                                .await?;

                                // Fetch initial resources
                                let (instances, initial_error) = {
                                    match resource::fetch_resources_paginated(
                                        "ec2-instances",
                                        &clients,
                                        &[],
                                        None,
                                    )
                                    .await
                                    {
                                        Ok(result) => (result.items, None),
                                        Err(e) => {
                                            let error_msg = aws::client::format_aws_error(&e);
                                            (Vec::new(), Some(error_msg))
                                        }
                                    }
                                };

                                let mut app = App::from_initialized(
                                    clients,
                                    profile,
                                    actual_region,
                                    available_profiles,
                                    available_regions,
                                    instances,
                                    config,
                                    readonly,
                                    endpoint_url,
                                    false,
                                    "ec2-instances",
                                );

                                if let Some(err) = initial_error {
                                    app.error_message = Some(err);
                                }

                                return Ok(Some(app));
                            }
                            KeyCode::Char('c') if key.modifiers.contains(KeyModifiers::CONTROL) => {
                                return Ok(None);
                            }
                            _ => {}
                        }
                    }
                    ConsoleLoginState::Failed { .. } => {
                        match key.code {
                            KeyCode::Enter => {
                                // Retry - go back to prompt state
                                console_state = ConsoleLoginState::Prompt {
                                    profile: profile.clone(),
                                    login_session: login_session.clone(),
                                };
                            }
                            KeyCode::Esc => {
                                return Ok(None); // Exit on failure
                            }
                            KeyCode::Char('c') if key.modifiers.contains(KeyModifiers::CONTROL) => {
                                return Ok(None);
                            }
                            _ => {}
                        }
                    }
                }
            }
        }
    }
}

/// Render console login dialog standalone (during initialization, before app is created)
fn render_console_login_standalone(f: &mut ratatui::Frame, console_state: &app::ConsoleLoginState) {
    use app::ConsoleLoginState;
    use ratatui::{
        layout::{Alignment, Constraint, Direction, Layout, Rect},
        style::{Color, Modifier, Style},
        text::{Line, Span},
        widgets::{Block, Borders, Clear, Paragraph},
    };

    fn centered_rect(percent_x: u16, height: u16, r: Rect) -> Rect {
        let popup_layout = Layout::default()
            .direction(Direction::Vertical)
            .constraints([
                Constraint::Percentage(40),
                Constraint::Length(height),
                Constraint::Percentage(40),
            ])
            .split(r);

        Layout::default()
            .direction(Direction::Horizontal)
            .constraints([
                Constraint::Percentage((100 - percent_x) / 2),
                Constraint::Percentage(percent_x),
                Constraint::Percentage((100 - percent_x) / 2),
            ])
            .split(popup_layout[1])[1]
    }

    // Clear the screen with a dark background
    let area = f.area();
    f.render_widget(Clear, area);
    let bg_block = Block::default().style(Style::default().bg(Color::Black));
    f.render_widget(bg_block, area);

    match console_state {
        ConsoleLoginState::Prompt {
            profile,
            login_session,
        } => {
            let dialog_area = centered_rect(70, 12, area);
            f.render_widget(Clear, dialog_area);

            let text = vec![
                Line::from(Span::styled(
                    "<Console Login Required>",
                    Style::default()
                        .fg(Color::Cyan)
                        .add_modifier(Modifier::BOLD),
                )),
                Line::from(""),
                Line::from(Span::styled(
                    format!("Profile '{}' requires AWS Console login.", profile),
                    Style::default().fg(Color::White),
                )),
                Line::from(Span::styled(
                    format!("Session: {}", login_session),
                    Style::default().fg(Color::DarkGray),
                )),
                Line::from(""),
                Line::from(Span::styled(
                    "Press Enter to open browser for login",
                    Style::default().fg(Color::Yellow),
                )),
                Line::from(Span::styled(
                    "(requires AWS CLI v2.32.0+)",
                    Style::default().fg(Color::DarkGray),
                )),
                Line::from(""),
                Line::from(Span::styled(
                    "Press Esc to cancel",
                    Style::default().fg(Color::DarkGray),
                )),
            ];

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

            let paragraph = Paragraph::new(text)
                .block(block)
                .alignment(Alignment::Center);
            f.render_widget(paragraph, dialog_area);
        }

        ConsoleLoginState::WaitingForAuth { profile, url, .. } => {
            // Adjust height based on whether URL is shown
            let height = if url.is_some() { 14 } else { 11 };
            let dialog_area = centered_rect(70, height, area);
            f.render_widget(Clear, dialog_area);

            let mut text = vec![
                Line::from(Span::styled(
                    "<Waiting for Console Authentication>",
                    Style::default()
                        .fg(Color::Yellow)
                        .add_modifier(Modifier::BOLD),
                )),
                Line::from(""),
                Line::from(Span::styled(
                    "Complete authentication in your browser.",
                    Style::default().fg(Color::White),
                )),
                Line::from(""),
            ];

            // Display URL if available (like SSO does)
            if let Some(ref login_url) = url {
                text.push(Line::from(Span::styled(
                    "If browser didn't open, visit:",
                    Style::default().fg(Color::DarkGray),
                )));
                text.push(Line::from(Span::styled(
                    login_url.as_str(),
                    Style::default().fg(Color::Blue),
                )));
                text.push(Line::from(""));
            }

            text.push(Line::from(Span::styled(
                format!("Profile: {}", profile),
                Style::default().fg(Color::DarkGray),
            )));
            text.push(Line::from(Span::styled(
                "Waiting... (Press Esc to cancel)",
                Style::default().fg(Color::DarkGray),
            )));

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

            let paragraph = Paragraph::new(text)
                .block(block)
                .alignment(Alignment::Center);
            f.render_widget(paragraph, dialog_area);
        }

        ConsoleLoginState::Success { profile } => {
            let dialog_area = centered_rect(50, 7, area);
            f.render_widget(Clear, dialog_area);

            let text = vec![
                Line::from(Span::styled(
                    "<Console Login Successful>",
                    Style::default()
                        .fg(Color::Green)
                        .add_modifier(Modifier::BOLD),
                )),
                Line::from(""),
                Line::from(Span::styled(
                    format!("Authenticated '{}'. Press Enter to continue.", profile),
                    Style::default().fg(Color::White),
                )),
            ];

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

            let paragraph = Paragraph::new(text)
                .block(block)
                .alignment(Alignment::Center);
            f.render_widget(paragraph, dialog_area);
        }

        ConsoleLoginState::Failed { error, .. } => {
            let dialog_area = centered_rect(70, 9, area);
            f.render_widget(Clear, dialog_area);

            let text = vec![
                Line::from(Span::styled(
                    "<Console Login Failed>",
                    Style::default().fg(Color::Red).add_modifier(Modifier::BOLD),
                )),
                Line::from(""),
                Line::from(Span::styled(
                    error.as_str(),
                    Style::default().fg(Color::White),
                )),
                Line::from(""),
                Line::from(Span::styled(
                    "Press Enter to retry, Esc to exit",
                    Style::default().fg(Color::DarkGray),
                )),
            ];

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

            let paragraph = Paragraph::new(text)
                .block(block)
                .alignment(Alignment::Center);
            f.render_widget(paragraph, dialog_area);
        }
    }
}

fn check_abort() -> Result<bool> {
    if poll(Duration::from_millis(50))? {
        if let Event::Key(key) = read()? {
            if key.code == KeyCode::Char('c') && key.modifiers.contains(KeyModifiers::CONTROL) {
                return Ok(true);
            }
        }
    }
    Ok(false)
}

async fn run_app<B: Backend>(terminal: &mut Terminal<B>, app: &mut App) -> Result<()>
where
    B::Error: Send + Sync + 'static,
{
    loop {
        terminal.draw(|f| ui::render(f, app))?;

        // Handle user input
        if event::handle_events(app).await? {
            return Ok(());
        }

        // Handle SSM connect request (requires suspending TUI)
        if let Some(request) = app.take_ssm_connect_request() {
            execute_ssm_connect(terminal, &request)?;
        }

        // Poll SSO if in waiting state
        if app.mode == Mode::SsoLogin {
            event::poll_sso_if_waiting(app).await;
        }

        // Poll console login subprocess if waiting
        if app.mode == Mode::ConsoleLogin {
            event::poll_console_login_if_waiting(app).await;
        }

        // Poll for new log events if in log tail mode
        if app.mode == Mode::LogTail {
            event::poll_logs_if_tailing(app).await;
        }

        // Auto-refresh every 5 seconds (only in Normal mode)
        if app.needs_refresh() {
            let _ = app.refresh_current().await;
        }
    }
}

/// Execute SSM connect by suspending TUI and running aws ssm start-session
fn execute_ssm_connect<B: Backend>(
    terminal: &mut Terminal<B>,
    request: &app::SsmConnectRequest,
) -> Result<()>
where
    B::Error: Send + Sync + 'static,
{
    use std::io::Write;

    // Suspend TUI - restore terminal to normal mode
    crossterm::terminal::disable_raw_mode()?;
    crossterm::execute!(
        std::io::stdout(),
        crossterm::terminal::LeaveAlternateScreen,
        crossterm::cursor::Show
    )?;

    // Print connection info
    println!(
        "\n\x1b[1;36m>>> Connecting to {} via SSM...\x1b[0m\n",
        request.instance_id
    );
    std::io::stdout().flush()?;

    // Run aws ssm start-session
    let status = std::process::Command::new("aws")
        .args([
            "ssm",
            "start-session",
            "--target",
            &request.instance_id,
            "--region",
            &request.region,
            "--profile",
            &request.profile,
        ])
        .status();

    match status {
        Ok(exit_status) => {
            if !exit_status.success() {
                let code = exit_status.code().unwrap_or(-1);
                println!("\n\x1b[1;33mSSM session exited with code: {}\x1b[0m", code);
                if code == 254 {
                    println!("\x1b[0;33mThis usually means the instance is not connected to SSM.");
                    println!(
                        "Check that SSM Agent is installed and running on the instance.\x1b[0m"
                    );
                }
            }
        }
        Err(e) => {
            println!("\n\x1b[1;31mFailed to start SSM session: {}\x1b[0m", e);
        }
    }

    println!("\n\x1b[1;36m>>> Returning to orbit... Press any key.\x1b[0m");
    std::io::stdout().flush()?;

    // Wait for a key press before restoring TUI
    crossterm::terminal::enable_raw_mode()?;
    let _ = crossterm::event::read(); // Wait for any key
    crossterm::terminal::disable_raw_mode()?;

    // Restore TUI
    crossterm::terminal::enable_raw_mode()?;
    crossterm::execute!(
        std::io::stdout(),
        crossterm::terminal::EnterAlternateScreen,
        crossterm::cursor::Hide
    )?;
    terminal.clear()?;

    Ok(())
}