huddle-gui 2.0.5

Native desktop GUI (egui/eframe) for huddle — end-to-end-encrypted chat over a Tor onion relay.
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
//! Modal overlays, rendered with egui's `Modal` container (centered, dimmed
//! backdrop that blocks the rest of the UI). Each modal mutates its own state
//! and pushes `UiAction`s on submit / cancel; the app applies them after the
//! frame and owns the actual `AppHandle` calls.

use egui::{Id, RichText, TextEdit};

use crate::fmt;
use crate::model::{
    AcceptRotationState, AddContactState, AttachPathState, ChangePassphraseState,
    ConfirmDeleteState, ConfirmInviteState, DisappearingState, EditAliasState, EditUsernameState,
    EmojiPickerState, ExportSeedState, ExportSeedStep, GoDarkState, InboundDialState, JoinState,
    JoinWithCodeState, Modal, NewDmState, NewGroupState, PasteInviteState, RotateState,
    SafetyNumberChangedState, SasStage, SasState, SearchState, SetRelayState, UiAction,
    VerifyState, DISAPPEARING_OPTIONS, GO_DARK_CONFIRM_PHRASE, ONBOARDING_PAGES, REACTION_EMOJIS,
};
use crate::theme::palette;

fn right<R>(ui: &mut egui::Ui, add: impl FnOnce(&mut egui::Ui) -> R) {
    ui.with_layout(egui::Layout::right_to_left(egui::Align::Center), add);
}

pub fn render(ctx: &egui::Context, modal: &mut Modal, our_id: &str, actions: &mut Vec<UiAction>) {
    match modal {
        Modal::None => {}
        Modal::NewGroup(s) => new_group(ctx, s, actions),
        Modal::NewDm(s) => new_dm(ctx, s, actions),
        Modal::AddContact(s) => add_contact(ctx, s, actions),
        Modal::EditAlias(s) => edit_alias(ctx, s, actions),
        Modal::Join(s) => join(ctx, s, actions),
        Modal::InboundDial(s) => inbound_dial(ctx, s, actions),
        Modal::Verify(s) => verify(ctx, s, actions),
        Modal::Sas(s) => sas(ctx, s, actions),
        Modal::Search(s) => search(ctx, s, actions),
        Modal::Rotate(s) => rotate(ctx, s, actions),
        Modal::AcceptRotation(s) => accept_rotation(ctx, s, actions),
        Modal::ShowInvite(url) => show_invite(ctx, url, actions),
        Modal::PasteInvite(s) => paste_invite(ctx, s, actions),
        Modal::ConfirmInvite(s) => confirm_invite(ctx, s, actions),
        Modal::SetRelay(s) => set_relay(ctx, s, actions),
        Modal::AttachPath(s) => attach_path(ctx, s, actions),
        Modal::JoinWithCode(s) => join_with_code(ctx, s, actions),
        Modal::EditUsername(s) => edit_username(ctx, s, actions),
        Modal::GoDark(s) => go_dark(ctx, s, actions),
        Modal::Qr => qr(ctx, our_id, actions),
        Modal::About => about(ctx, actions),
        Modal::Onboarding { cursor } => onboarding(ctx, *cursor, actions),
        Modal::UpdateOptIn => update_opt_in(ctx, actions),
        Modal::QuitConfirm => quit_confirm(ctx, actions),
        Modal::ChangePassphrase(s) => change_passphrase(ctx, s, actions),
        Modal::ExportSeed(s) => export_seed(ctx, s, actions),
        Modal::SafetyNumberChanged(s) => safety_number_changed(ctx, s, actions),
        Modal::Disappearing(s) => disappearing(ctx, s, actions),
        Modal::EmojiPicker(s) => emoji_picker(ctx, s, actions),
        Modal::ConfirmDelete(s) => confirm_delete(ctx, s, actions),
        Modal::Error(m) => message(ctx, "error", m, palette().error, actions),
        Modal::Info(m) => message(ctx, "huddle", m, palette().text, actions),
    }
}

/// huddle 2.0.0 (F5): change the master passphrase. Validates locally (non-empty
/// + new == confirm); the core verifies the current passphrase and re-keys the
/// DB. A wrong-current-passphrase error comes back tagged and lands in `s.error`.
fn change_passphrase(
    ctx: &egui::Context,
    s: &mut ChangePassphraseState,
    actions: &mut Vec<UiAction>,
) {
    let resp = egui::Modal::new(Id::new("modal-change-passphrase")).show(ctx, |ui| {
        ui.set_width(420.0);
        ui.heading("Change master passphrase");
        ui.label(
            RichText::new(
                "re-encrypts your local database under a new key. There is no recovery if \
                 you forget the new passphrase — keep a backup before changing it.",
            )
            .small()
            .color(palette().text_dim),
        );
        ui.add_space(10.0);
        ui.label("current passphrase");
        ui.add(
            TextEdit::singleline(&mut s.current)
                .password(true)
                .desired_width(f32::INFINITY),
        );
        ui.add_space(6.0);
        ui.label("new passphrase");
        ui.add(
            TextEdit::singleline(&mut s.new)
                .password(true)
                .desired_width(f32::INFINITY),
        );
        ui.add_space(6.0);
        ui.label("confirm new passphrase");
        ui.add(
            TextEdit::singleline(&mut s.confirm)
                .password(true)
                .desired_width(f32::INFINITY),
        );
        if let Some(e) = &s.error {
            ui.add_space(6.0);
            ui.colored_label(palette().error, e);
        }
        ui.add_space(12.0);
        ui.horizontal(|ui| {
            if ui.button("Change passphrase").clicked() {
                if s.current.is_empty() {
                    s.error = Some("enter your current passphrase".into());
                } else if s.new.is_empty() {
                    s.error = Some("the new passphrase can't be empty".into());
                } else if s.new != s.confirm {
                    s.error = Some("the new passphrases don't match".into());
                } else {
                    s.error = None;
                    actions.push(UiAction::SubmitChangePassphrase {
                        current: s.current.clone(),
                        new: s.new.clone(),
                    });
                }
            }
            if ui.button("Cancel").clicked() {
                actions.push(UiAction::CloseModal);
            }
        });
    });
    if resp.should_close() {
        actions.push(UiAction::CloseModal);
    }
}

/// huddle 2.0.0 (F6): show the 24-word identity seed once, then make the user
/// re-type it to prove they wrote it down before relying on it for recovery.
fn export_seed(ctx: &egui::Context, s: &mut ExportSeedState, actions: &mut Vec<UiAction>) {
    let resp = egui::Modal::new(Id::new("modal-export-seed")).show(ctx, |ui| {
        ui.set_width(460.0);
        ui.heading("Recovery seed phrase");
        match s.step {
            ExportSeedStep::Reveal => {
                ui.colored_label(
                    palette().error,
                    "⚠ Anyone with these 24 words IS you. Write them down on paper, never \
                     share them, and store them offline. This is shown only once.",
                );
                ui.add_space(10.0);
                let body = if s.revealed {
                    s.phrase.clone()
                } else {
                    "•••• •••• •••• ••••  (hidden)".to_string()
                };
                egui::Frame::group(ui.style()).show(ui, |ui| {
                    ui.add(
                        egui::Label::new(RichText::new(body).monospace().size(15.0))
                            .wrap()
                            .selectable(s.revealed),
                    );
                });
                ui.add_space(10.0);
                ui.horizontal(|ui| {
                    if ui
                        .button(if s.revealed { "Hide" } else { "Reveal" })
                        .clicked()
                    {
                        s.revealed = !s.revealed;
                    }
                    // huddle 2.0.3 (audit N-M5): no "Copy" for the recovery seed.
                    // Writing the 24-word root identity secret to the OS clipboard
                    // exposes it to every process and (on macOS) syncs it off-device
                    // via Universal Clipboard. The Verify step below already assumes
                    // manual transcription, so a copy affordance is pure risk.
                    right(ui, |ui| {
                        if ui.button("I've written it down →").clicked() {
                            s.step = ExportSeedStep::Verify;
                            s.revealed = false;
                            s.error = None;
                        }
                    });
                });
            }
            ExportSeedStep::Verify => {
                ui.label("Re-type the full 24-word phrase to confirm your backup:");
                ui.add_space(8.0);
                ui.add(
                    // `&mut *s.reentry` exposes the inner `String` to egui; the
                    // `Zeroizing` wrapper still scrubs it on drop (F6).
                    TextEdit::multiline(&mut *s.reentry)
                        .desired_width(f32::INFINITY)
                        .desired_rows(3)
                        .hint_text("word1 word2 … word24"),
                );
                if let Some(e) = &s.error {
                    ui.add_space(6.0);
                    ui.colored_label(palette().error, e);
                }
                ui.add_space(10.0);
                ui.horizontal(|ui| {
                    if ui.button("Verify").clicked() {
                        actions.push(UiAction::ExportSeedVerify {
                            reentry: s.reentry.trim().to_string(),
                        });
                    }
                    if ui.button("Back").clicked() {
                        s.step = ExportSeedStep::Reveal;
                        s.error = None;
                    }
                });
            }
            ExportSeedStep::Done => {
                ui.add_space(8.0);
                ui.colored_label(palette().success, "✓ Backup verified.");
                ui.label(
                    RichText::new(
                        "store the paper somewhere safe. On a fresh install, choose \
                         “Import existing identity” and paste these words to restore.",
                    )
                    .small()
                    .color(palette().text_dim),
                );
                ui.add_space(12.0);
                if ui.button("Done").clicked() {
                    actions.push(UiAction::CloseModal);
                }
            }
        }
    });
    if resp.should_close() {
        actions.push(UiAction::CloseModal);
    }
}

/// huddle 2.0.0 (F3): a pinned peer key changed mid-session (TOFU drift). The
/// offending message was already dropped; the user re-verifies (SAS) or blocks
/// the peer. "Dismiss" leaves the pin as-is (future messages from the new key
/// keep getting dropped until they re-verify).
fn safety_number_changed(
    ctx: &egui::Context,
    s: &SafetyNumberChangedState,
    actions: &mut Vec<UiAction>,
) {
    let who = s
        .display_name
        .clone()
        .unwrap_or_else(|| fmt::display_id(&s.fingerprint));
    let resp = egui::Modal::new(Id::new("modal-safety-number")).show(ctx, |ui| {
        ui.set_width(460.0);
        ui.heading(RichText::new(format!("⚠ Safety number changed: {who}")).color(palette().warn));
        ui.add_space(6.0);
        ui.label(
            "The identity key huddle pinned for this peer no longer matches the one signing \
             their messages. This happens if they reinstalled or rotated their identity — \
             but it can also be a sign of impersonation. Their last message was dropped.",
        );
        ui.add_space(8.0);
        ui.label(
            RichText::new(format!("peer: {}", fmt::display_id(&s.fingerprint)))
                .small()
                .monospace()
                .color(palette().text_dim),
        );
        ui.label(
            RichText::new(format!("old key: {}", short_key(&s.old_pubkey_b64)))
                .small()
                .monospace()
                .color(palette().text_dim),
        );
        ui.label(
            RichText::new(format!("new key: {}", short_key(&s.new_pubkey_b64)))
                .small()
                .monospace()
                .color(palette().text_dim),
        );
        ui.add_space(12.0);
        ui.horizontal(|ui| {
            if ui.button("Re-verify (SAS)").clicked() {
                actions.push(UiAction::StartSas {
                    room_id: s.room_id.clone(),
                    fingerprint: s.fingerprint.clone(),
                });
            }
            if ui
                .button(RichText::new("Block peer").color(palette().error))
                .clicked()
            {
                actions.push(UiAction::PersonBlock(s.fingerprint.clone()));
                actions.push(UiAction::CloseModal);
            }
            right(ui, |ui| {
                if ui.button("Dismiss").clicked() {
                    actions.push(UiAction::CloseModal);
                }
            });
        });
    });
    if resp.should_close() {
        actions.push(UiAction::CloseModal);
    }
}

/// First 10 chars of a base64 key, for a glanceable (non-authoritative) diff.
fn short_key(b64: &str) -> String {
    let head: String = b64.chars().take(10).collect();
    format!("{head}")
}

/// huddle 2.0.0 (F9): pick the room's disappearing-messages TTL. Off by default;
/// only owners' choices propagate to other members (enforced in the core).
fn disappearing(ctx: &egui::Context, s: &DisappearingState, actions: &mut Vec<UiAction>) {
    let resp = egui::Modal::new(Id::new("modal-disappearing")).show(ctx, |ui| {
        ui.set_width(360.0);
        ui.heading("Disappearing messages");
        ui.label(
            RichText::new(
                "auto-delete messages in this room after they age out — locally, on every \
                 peer running huddle 2.0+. Best-effort (depends on each device's clock).",
            )
            .small()
            .color(palette().text_dim),
        );
        ui.add_space(10.0);
        for (label, ttl) in DISAPPEARING_OPTIONS {
            let selected = s.current == *ttl;
            if ui.selectable_label(selected, *label).clicked() && !selected {
                actions.push(UiAction::SetDisappearing {
                    room_id: s.room_id.clone(),
                    ttl_secs: *ttl,
                });
            }
        }
        ui.add_space(12.0);
        if ui.button("Cancel").clicked() {
            actions.push(UiAction::CloseModal);
        }
    });
    if resp.should_close() {
        actions.push(UiAction::CloseModal);
    }
}

/// huddle 2.0.0 (F10): pick an emoji to react to a message with.
fn emoji_picker(ctx: &egui::Context, s: &EmojiPickerState, actions: &mut Vec<UiAction>) {
    let resp = egui::Modal::new(Id::new("modal-emoji-picker")).show(ctx, |ui| {
        ui.set_width(280.0);
        ui.heading("React");
        ui.add_space(8.0);
        ui.horizontal_wrapped(|ui| {
            for emoji in REACTION_EMOJIS {
                if ui.button(RichText::new(*emoji).size(22.0)).clicked() {
                    actions.push(UiAction::SendReaction {
                        room_id: s.room_id.clone(),
                        target_msg_id: s.target_msg_id.clone(),
                        emoji: (*emoji).to_string(),
                        removed: false,
                    });
                }
            }
        });
        ui.add_space(10.0);
        if ui.button("Cancel").clicked() {
            actions.push(UiAction::CloseModal);
        }
    });
    if resp.should_close() {
        actions.push(UiAction::CloseModal);
    }
}

/// huddle 2.0.0 (F10): confirm a permanent (for-everyone) message delete.
fn confirm_delete(ctx: &egui::Context, s: &ConfirmDeleteState, actions: &mut Vec<UiAction>) {
    let resp = egui::Modal::new(Id::new("modal-confirm-delete")).show(ctx, |ui| {
        ui.set_width(380.0);
        ui.heading("Delete message?");
        ui.add_space(6.0);
        ui.label(
            RichText::new("This removes it for everyone in the room. It can't be undone.")
                .small()
                .color(palette().text_dim),
        );
        if !s.preview.is_empty() {
            ui.add_space(6.0);
            ui.label(
                RichText::new(format!("{}", s.preview))
                    .italics()
                    .color(palette().text_dim),
            );
        }
        ui.add_space(12.0);
        ui.horizontal(|ui| {
            if ui
                .button(RichText::new("Delete").color(palette().error))
                .clicked()
            {
                actions.push(UiAction::SendDelete {
                    room_id: s.room_id.clone(),
                    target_msg_id: s.target_msg_id.clone(),
                });
            }
            if ui.button("Cancel").clicked() {
                actions.push(UiAction::CloseModal);
            }
        });
    });
    if resp.should_close() {
        actions.push(UiAction::CloseModal);
    }
}

fn edit_username(ctx: &egui::Context, s: &mut EditUsernameState, actions: &mut Vec<UiAction>) {
    let resp = egui::Modal::new(Id::new("modal-edit-username")).show(ctx, |ui| {
        ui.set_width(360.0);
        ui.heading("Edit username");
        ui.label(
            RichText::new("broadcast to peers you share rooms with. Empty clears it (you show as [anonymous]).")
                .small()
                .color(palette().text_dim),
        );
        ui.add_space(8.0);
        ui.add(TextEdit::singleline(&mut s.input).desired_width(f32::INFINITY).hint_text("display name"));
        ui.add_space(10.0);
        ui.horizontal(|ui| {
            if ui.button("Save").clicked() {
                let v = s.input.trim();
                actions.push(UiAction::SubmitUsername(if v.is_empty() {
                    None
                } else {
                    Some(v.to_string())
                }));
            }
            if ui.button("Cancel").clicked() {
                actions.push(UiAction::CloseModal);
            }
        });
    });
    if resp.should_close() {
        actions.push(UiAction::CloseModal);
    }
}

fn go_dark(ctx: &egui::Context, s: &mut GoDarkState, actions: &mut Vec<UiAction>) {
    let resp = egui::Modal::new(Id::new("modal-go-dark")).show(ctx, |ui| {
        ui.set_width(420.0);
        ui.heading(RichText::new("Go dark").color(palette().error));
        ui.label(
            "This permanently deletes your account and wipes all local data. There is no undo.",
        );
        ui.add_space(10.0);
        if s.requires_passphrase {
            ui.label("enter your master passphrase to confirm");
            ui.add(
                TextEdit::singleline(&mut s.input)
                    .password(true)
                    .desired_width(f32::INFINITY),
            );
        } else {
            ui.label(format!("type `{GO_DARK_CONFIRM_PHRASE}` to confirm"));
            ui.add(TextEdit::singleline(&mut s.input).desired_width(f32::INFINITY));
        }
        if let Some(e) = &s.error {
            ui.add_space(6.0);
            ui.colored_label(palette().error, e);
        }
        ui.add_space(12.0);
        ui.horizontal(|ui| {
            if ui
                .button(RichText::new("Delete everything").color(palette().error))
                .clicked()
            {
                actions.push(UiAction::SubmitGoDark(s.input.clone()));
            }
            if ui.button("Cancel").clicked() {
                actions.push(UiAction::CloseModal);
            }
        });
    });
    if resp.should_close() {
        actions.push(UiAction::CloseModal);
    }
}

fn qr(ctx: &egui::Context, data: &str, actions: &mut Vec<UiAction>) {
    let resp = egui::Modal::new(Id::new("modal-qr")).show(ctx, |ui| {
        ui.set_width(300.0);
        ui.heading("Your identity");
        ui.add_space(10.0);
        ui.vertical_centered(|ui| match qrcode::QrCode::new(data.as_bytes()) {
            Ok(code) => {
                let w = code.width();
                let colors = code.to_colors();
                let px = 240.0;
                let quiet = 2usize;
                let module = px / (w + quiet * 2) as f32;
                let (rect, _) = ui.allocate_exact_size(egui::vec2(px, px), egui::Sense::hover());
                let painter = ui.painter();
                painter.rect_filled(rect, 2.0, egui::Color32::WHITE);
                for y in 0..w {
                    for x in 0..w {
                        if matches!(colors[y * w + x], qrcode::Color::Dark) {
                            let min = rect.min
                                + egui::vec2(
                                    (x + quiet) as f32 * module,
                                    (y + quiet) as f32 * module,
                                );
                            painter.rect_filled(
                                egui::Rect::from_min_size(min, egui::vec2(module, module)),
                                0.0,
                                egui::Color32::BLACK,
                            );
                        }
                    }
                }
            }
            Err(_) => {
                ui.label("could not render QR");
            }
        });
        ui.add_space(8.0);
        ui.monospace(data);
        ui.add_space(10.0);
        if ui.button("Done").clicked() {
            actions.push(UiAction::CloseModal);
        }
    });
    if resp.should_close() {
        actions.push(UiAction::CloseModal);
    }
}

fn onboarding(ctx: &egui::Context, cursor: usize, actions: &mut Vec<UiAction>) {
    let (title, body) = ONBOARDING_PAGES.get(cursor).copied().unwrap_or(("", ""));
    let last = cursor + 1 >= ONBOARDING_PAGES.len();
    egui::Modal::new(Id::new("modal-onboarding")).show(ctx, |ui| {
        ui.set_width(440.0);
        ui.heading(title);
        ui.add_space(10.0);
        ui.label(body);
        ui.add_space(14.0);
        ui.horizontal(|ui| {
            if ui
                .button(if last { "Get started" } else { "Next" })
                .clicked()
            {
                actions.push(if last {
                    UiAction::OnboardingDone
                } else {
                    UiAction::OnboardingNext
                });
            }
            ui.label(
                RichText::new(format!("{}/{}", cursor + 1, ONBOARDING_PAGES.len()))
                    .small()
                    .color(palette().text_dim),
            );
        });
    });
}

fn update_opt_in(ctx: &egui::Context, actions: &mut Vec<UiAction>) {
    egui::Modal::new(Id::new("modal-update-optin")).show(ctx, |ui| {
        ui.set_width(400.0);
        ui.heading("Check for updates?");
        ui.add_space(8.0);
        ui.label(
            "huddle can check crates.io once a day for a newer version — no telemetry, just a \
             version compare. You can change this later in Settings.",
        );
        ui.add_space(12.0);
        ui.horizontal(|ui| {
            if ui.button("Yes, check").clicked() {
                actions.push(UiAction::UpdateOptInSet(true));
            }
            if ui.button("No thanks").clicked() {
                actions.push(UiAction::UpdateOptInSet(false));
            }
        });
    });
}

fn quit_confirm(ctx: &egui::Context, actions: &mut Vec<UiAction>) {
    let resp = egui::Modal::new(Id::new("modal-quit")).show(ctx, |ui| {
        ui.set_width(320.0);
        ui.heading("Quit huddle?");
        ui.add_space(10.0);
        ui.horizontal(|ui| {
            if ui.button("Quit").clicked() {
                actions.push(UiAction::RequestShutdown);
            }
            if ui.button("Stay").clicked() {
                actions.push(UiAction::CancelQuit);
            }
        });
    });
    if resp.should_close() {
        actions.push(UiAction::CancelQuit);
    }
}

fn verify(ctx: &egui::Context, s: &mut VerifyState, actions: &mut Vec<UiAction>) {
    let room_id = s.room_id.clone();
    let resp = egui::Modal::new(Id::new("modal-verify")).show(ctx, |ui| {
        ui.set_width(440.0);
        ui.heading("Verify members");
        ui.label(
            RichText::new("check a peer after confirming their HD-ID out of band, or run an interactive SAS exchange.")
                .small()
                .color(palette().text_dim),
        );
        ui.add_space(8.0);
        egui::ScrollArea::vertical().max_height(300.0).show(ui, |ui| {
            for (fp, verified) in &mut s.members {
                ui.horizontal(|ui| {
                    let mut v = *verified;
                    if ui.checkbox(&mut v, fmt::display_id(fp)).changed() {
                        *verified = v;
                        actions.push(UiAction::ToggleMemberVerified {
                            room_id: room_id.clone(),
                            fingerprint: fp.clone(),
                            verified: v,
                        });
                    }
                    right(ui, |ui| {
                        if ui.button("SAS").clicked() {
                            actions.push(UiAction::StartSas {
                                room_id: room_id.clone(),
                                fingerprint: fp.clone(),
                            });
                        }
                    });
                });
            }
        });
        ui.add_space(8.0);
        if ui.button("Done").clicked() {
            actions.push(UiAction::CloseModal);
        }
    });
    if resp.should_close() {
        actions.push(UiAction::CloseModal);
    }
}

fn sas(ctx: &egui::Context, s: &mut SasState, actions: &mut Vec<UiAction>) {
    let tx_id = s.tx_id.clone();
    let partner = s.partner_fingerprint.clone();
    let resp = egui::Modal::new(Id::new("modal-sas")).show(ctx, |ui| {
        ui.set_width(400.0);
        ui.heading("SAS verification");
        ui.label(
            RichText::new(format!("with {}", fmt::display_id(&partner))).color(palette().text_dim),
        );
        ui.add_space(12.0);
        match &mut s.stage {
            SasStage::Waiting => {
                ui.horizontal(|ui| {
                    ui.spinner();
                    ui.label("waiting for the other side…");
                });
            }
            SasStage::Comparing {
                words,
                decimal,
                our_matched,
            } => {
                ui.label("compare these with your partner out of band:");
                ui.add_space(8.0);
                ui.label(
                    RichText::new(decimal.clone())
                        .heading()
                        .monospace()
                        .color(palette().accent),
                );
                ui.label(RichText::new(words.clone()).color(palette().text));
                ui.add_space(12.0);
                if *our_matched {
                    ui.label(
                        RichText::new("waiting for your partner to confirm…")
                            .color(palette().text_dim),
                    );
                } else {
                    ui.horizontal(|ui| {
                        if ui.button("They match").clicked() {
                            *our_matched = true;
                            actions.push(UiAction::SasMatch(tx_id.clone()));
                        }
                        if ui.button("Cancel").clicked() {
                            actions.push(UiAction::SasCancel(tx_id.clone()));
                        }
                    });
                }
            }
        }
        if matches!(s.stage, SasStage::Waiting) && ui.button("Cancel").clicked() {
            actions.push(UiAction::SasCancel(tx_id.clone()));
        }
    });
    if resp.should_close() {
        actions.push(UiAction::SasCancel(s.tx_id.clone()));
    }
}

fn show_invite(ctx: &egui::Context, url: &str, actions: &mut Vec<UiAction>) {
    let resp = egui::Modal::new(Id::new("modal-show-invite")).show(ctx, |ui| {
        ui.set_width(460.0);
        ui.heading("Invite link");
        ui.label(
            RichText::new(
                "share this out of band. For encrypted rooms, share the passphrase separately.",
            )
            .small()
            .color(palette().text_dim),
        );
        ui.add_space(8.0);
        egui::ScrollArea::vertical()
            .max_height(120.0)
            .show(ui, |ui| {
                ui.add(TextEdit::multiline(&mut url.to_string()).desired_width(f32::INFINITY));
            });
        ui.add_space(10.0);
        ui.horizontal(|ui| {
            if ui.button("Copy").clicked() {
                actions.push(UiAction::Copy(url.to_string()));
            }
            if ui.button("Done").clicked() {
                actions.push(UiAction::CloseModal);
            }
        });
    });
    if resp.should_close() {
        actions.push(UiAction::CloseModal);
    }
}

fn paste_invite(ctx: &egui::Context, s: &mut PasteInviteState, actions: &mut Vec<UiAction>) {
    let resp = egui::Modal::new(Id::new("modal-paste-invite")).show(ctx, |ui| {
        ui.set_width(460.0);
        ui.heading("Paste an invite");
        ui.add_space(8.0);
        ui.add(
            TextEdit::multiline(&mut s.url)
                .desired_width(f32::INFINITY)
                .hint_text("huddle://… invite link"),
        );
        if let Some(e) = &s.error {
            ui.add_space(6.0);
            ui.colored_label(palette().error, e);
        }
        ui.add_space(10.0);
        ui.horizontal(|ui| {
            if ui.button("Continue").clicked() {
                if s.url.trim().is_empty() {
                    s.error = Some("paste a link first".into());
                } else {
                    actions.push(UiAction::SubmitPasteInvite(s.url.trim().to_string()));
                }
            }
            if ui.button("Cancel").clicked() {
                actions.push(UiAction::CloseModal);
            }
        });
    });
    if resp.should_close() {
        actions.push(UiAction::CloseModal);
    }
}

/// huddle 1.0: set (or clear) the clearnet relay URL — e.g. a cloudflared
/// tunnel `wss://<rand>.trycloudflare.com/ws`. Applies on the next launch.
fn set_relay(ctx: &egui::Context, s: &mut SetRelayState, actions: &mut Vec<UiAction>) {
    let resp = egui::Modal::new(Id::new("modal-set-relay")).show(ctx, |ui| {
        ui.set_width(460.0);
        ui.heading("Clearnet relay");
        ui.add_space(4.0);
        ui.label(
            RichText::new(
                "Connect through a clearnet relay you control instead of (or alongside) \
                 Tor — e.g. a cloudflared tunnel. Paste the wss:// URL, or a ws://ip:port \
                 URL. Leave empty and Save to clear. Applies on the next launch.",
            )
            .small()
            .color(palette().text_dim),
        );
        ui.add_space(8.0);
        ui.add(
            TextEdit::singleline(&mut s.url)
                .desired_width(f32::INFINITY)
                .hint_text("wss://abc123.trycloudflare.com/ws"),
        );
        if let Some(e) = &s.error {
            ui.add_space(6.0);
            ui.colored_label(palette().error, e);
        }
        ui.add_space(10.0);
        ui.horizontal(|ui| {
            if ui.button("Save").clicked() {
                let trimmed = s.url.trim();
                let val = if trimmed.is_empty() {
                    None
                } else {
                    Some(trimmed.to_string())
                };
                actions.push(UiAction::SetClearnetRelay(val));
            }
            if ui.button("Clear").clicked() {
                actions.push(UiAction::SetClearnetRelay(None));
            }
            if ui.button("Cancel").clicked() {
                actions.push(UiAction::CloseModal);
            }
        });
    });
    if resp.should_close() {
        actions.push(UiAction::CloseModal);
    }
}

/// Manual file-path entry for Attach — the alternative to the native rfd file
/// dialog, enabled by the "Attach by typing a path" Settings toggle.
fn attach_path(ctx: &egui::Context, s: &mut AttachPathState, actions: &mut Vec<UiAction>) {
    let resp = egui::Modal::new(Id::new("modal-attach-path")).show(ctx, |ui| {
        ui.set_width(460.0);
        ui.heading("Attach a file");
        ui.add_space(4.0);
        ui.label(
            RichText::new("Type an absolute path to a file to send.")
                .small()
                .color(palette().text_dim),
        );
        ui.add_space(8.0);
        let r = ui.add(
            TextEdit::singleline(&mut s.path)
                .desired_width(f32::INFINITY)
                .hint_text("/path/to/file"),
        );
        // Enter in the field submits, like the other single-field modals.
        let enter = r.lost_focus() && ui.input(|i| i.key_pressed(egui::Key::Enter));
        if let Some(e) = &s.error {
            ui.add_space(6.0);
            ui.colored_label(palette().error, e);
        }
        ui.add_space(10.0);
        let mut submit = enter;
        ui.horizontal(|ui| {
            if ui.button("Attach").clicked() {
                submit = true;
            }
            if ui.button("Cancel").clicked() {
                actions.push(UiAction::CloseModal);
            }
        });
        if submit {
            actions.push(UiAction::SubmitAttachPath {
                room_id: s.room_id.clone(),
                path: s.path.trim().to_string(),
            });
        }
    });
    if resp.should_close() {
        actions.push(UiAction::CloseModal);
    }
}

fn confirm_invite(ctx: &egui::Context, s: &ConfirmInviteState, actions: &mut Vec<UiAction>) {
    let resp = egui::Modal::new(Id::new("modal-confirm-invite")).show(ctx, |ui| {
        ui.set_width(440.0);
        ui.heading("Confirm invite");
        ui.add_space(8.0);
        ui.label(&s.summary);
        ui.add_space(4.0);
        ui.label(
            RichText::new(format!("from {}", fmt::display_id(&s.invite.fingerprint)))
                .small()
                .color(palette().text_dim),
        );
        if s.invite.signature_b64.is_none() {
            ui.add_space(4.0);
            ui.colored_label(palette().warn, "⚠ this invite is unsigned");
        }
        // huddle 1.0: a v3 invite adopts the inviter's clearnet relay.
        if let Some(relay) = &s.invite.relay_url {
            ui.add_space(6.0);
            ui.label(
                RichText::new(format!("connects you through their relay: {relay}"))
                    .small()
                    .color(palette().text_dim),
            );
        }
        ui.add_space(12.0);
        ui.horizontal(|ui| {
            if ui.button("Accept").clicked() {
                actions.push(UiAction::ConfirmInvite);
            }
            if ui.button("Cancel").clicked() {
                actions.push(UiAction::CloseModal);
            }
        });
    });
    if resp.should_close() {
        actions.push(UiAction::CloseModal);
    }
}

fn join_with_code(ctx: &egui::Context, s: &mut JoinWithCodeState, actions: &mut Vec<UiAction>) {
    let resp = egui::Modal::new(Id::new("modal-join-code")).show(ctx, |ui| {
        ui.set_width(380.0);
        ui.heading(format!("Join “{}” with a code", s.room_name));
        ui.add_space(8.0);
        ui.label("join code");
        ui.add(TextEdit::singleline(&mut s.code).desired_width(f32::INFINITY));
        ui.add_space(10.0);
        ui.horizontal(|ui| {
            if ui.button("Join").clicked() && !s.code.trim().is_empty() {
                actions.push(UiAction::SubmitJoinWithCode {
                    room_id: s.room_id.clone(),
                    code: s.code.trim().to_string(),
                });
            }
            if ui.button("Cancel").clicked() {
                actions.push(UiAction::CloseModal);
            }
        });
    });
    if resp.should_close() {
        actions.push(UiAction::CloseModal);
    }
}

fn search(ctx: &egui::Context, s: &mut SearchState, actions: &mut Vec<UiAction>) {
    let room_id = s.room_id.clone();
    let resp = egui::Modal::new(Id::new("modal-search")).show(ctx, |ui| {
        ui.set_width(460.0);
        ui.heading("Search this conversation");
        ui.add_space(8.0);
        let r = ui.add(
            TextEdit::singleline(&mut s.query)
                .desired_width(f32::INFINITY)
                .hint_text("type to search…"),
        );
        if r.changed() {
            actions.push(UiAction::RunSearch {
                room_id: room_id.clone(),
                query: s.query.clone(),
            });
        }
        ui.add_space(8.0);
        ui.separator();
        egui::ScrollArea::vertical()
            .max_height(320.0)
            .show(ui, |ui| {
                if s.searched && s.results.is_empty() {
                    ui.label(RichText::new("no matches").color(palette().text_dim));
                }
                for m in &s.results {
                    ui.horizontal(|ui| {
                        ui.label(
                            RichText::new(fmt::hhmm(m.sent_at))
                                .small()
                                .monospace()
                                .color(palette().text_dim),
                        );
                        ui.add(egui::Label::new(&m.body).wrap());
                    });
                }
            });
        ui.add_space(8.0);
        if ui.button("Done").clicked() {
            actions.push(UiAction::CloseModal);
        }
    });
    if resp.should_close() {
        actions.push(UiAction::CloseModal);
    }
}

fn rotate(ctx: &egui::Context, s: &mut RotateState, actions: &mut Vec<UiAction>) {
    let resp = egui::Modal::new(Id::new("modal-rotate")).show(ctx, |ui| {
        ui.set_width(380.0);
        ui.heading("Rotate room key");
        ui.label(
            RichText::new(
                "everyone re-derives the key from a new passphrase — share it out of band.",
            )
            .small()
            .color(palette().text_dim),
        );
        ui.add_space(8.0);
        ui.label("new passphrase");
        ui.add(
            TextEdit::singleline(&mut s.passphrase)
                .password(true)
                .desired_width(f32::INFINITY),
        );
        if let Some(e) = &s.error {
            ui.add_space(6.0);
            ui.colored_label(palette().error, e);
        }
        ui.add_space(10.0);
        ui.horizontal(|ui| {
            if ui.button("Rotate").clicked() {
                if s.passphrase.is_empty() {
                    s.error = Some("passphrase can't be empty".into());
                } else {
                    actions.push(UiAction::SubmitRotate {
                        room_id: s.room_id.clone(),
                        passphrase: s.passphrase.clone(),
                    });
                }
            }
            if ui.button("Cancel").clicked() {
                actions.push(UiAction::CloseModal);
            }
        });
    });
    if resp.should_close() {
        actions.push(UiAction::CloseModal);
    }
}

fn accept_rotation(ctx: &egui::Context, s: &mut AcceptRotationState, actions: &mut Vec<UiAction>) {
    let resp = egui::Modal::new(Id::new("modal-accept-rotation")).show(ctx, |ui| {
        ui.set_width(380.0);
        ui.heading("Room key rotated");
        ui.label(
            RichText::new(format!(
                "{} rotated this room's key. Enter the new passphrase to keep receiving messages.",
                fmt::display_id(&s.rotator_fingerprint)
            ))
            .small()
            .color(palette().text_dim),
        );
        ui.add_space(8.0);
        ui.label("new passphrase");
        ui.add(
            TextEdit::singleline(&mut s.passphrase)
                .password(true)
                .desired_width(f32::INFINITY),
        );
        if let Some(e) = &s.error {
            ui.add_space(6.0);
            ui.colored_label(palette().error, e);
        }
        ui.add_space(10.0);
        ui.horizontal(|ui| {
            if ui.button("Apply").clicked() {
                if s.passphrase.is_empty() {
                    s.error = Some("passphrase can't be empty".into());
                } else {
                    actions.push(UiAction::SubmitAcceptRotation {
                        room_id: s.room_id.clone(),
                        new_salt: s.new_salt.clone(),
                        passphrase: s.passphrase.clone(),
                    });
                }
            }
            if ui.button("Later").clicked() {
                actions.push(UiAction::CloseModal);
            }
        });
    });
    if resp.should_close() {
        actions.push(UiAction::CloseModal);
    }
}

fn inbound_dial(ctx: &egui::Context, s: &InboundDialState, actions: &mut Vec<UiAction>) {
    let resp = egui::Modal::new(Id::new("modal-inbound")).show(ctx, |ui| {
        ui.set_width(380.0);
        ui.heading("Incoming connection");
        ui.add_space(8.0);
        ui.label("an unknown peer is dialing you:");
        ui.monospace(fmt::display_id(&s.fingerprint));
        ui.label(RichText::new(&s.address).small().color(palette().text_dim));
        ui.add_space(12.0);
        ui.horizontal(|ui| {
            if ui.button("Accept once").clicked() {
                actions.push(UiAction::InboundAccept {
                    peer_id: s.peer_id,
                    address: s.address.clone(),
                });
            }
            if ui.button("Trust & accept").clicked() {
                actions.push(UiAction::InboundTrust {
                    peer_id: s.peer_id,
                    fingerprint: s.fingerprint.clone(),
                    address: s.address.clone(),
                });
            }
            if ui.button("Reject").clicked() {
                actions.push(UiAction::InboundReject {
                    peer_id: s.peer_id,
                    fingerprint: s.fingerprint.clone(),
                });
            }
        });
    });
    // Backdrop-dismiss = reject (never leave an unknown peer attached).
    if resp.should_close() {
        actions.push(UiAction::InboundReject {
            peer_id: s.peer_id,
            fingerprint: s.fingerprint.clone(),
        });
    }
}

fn new_group(ctx: &egui::Context, s: &mut NewGroupState, actions: &mut Vec<UiAction>) {
    let resp = egui::Modal::new(Id::new("modal-new-group")).show(ctx, |ui| {
        ui.set_width(340.0);
        ui.heading("New room");
        ui.add_space(8.0);
        ui.label("name");
        ui.add(
            TextEdit::singleline(&mut s.name)
                .desired_width(f32::INFINITY)
                .hint_text("room name"),
        );
        ui.add_space(6.0);
        ui.checkbox(&mut s.encrypted, "end-to-end encrypted");
        if s.encrypted {
            ui.add_space(4.0);
            ui.label("passphrase");
            ui.add(
                TextEdit::singleline(&mut s.passphrase)
                    .password(true)
                    .desired_width(f32::INFINITY),
            );
        }
        if let Some(e) = &s.error {
            ui.add_space(6.0);
            ui.colored_label(palette().error, e);
        }
        ui.add_space(12.0);
        ui.horizontal(|ui| {
            if ui.button("Create").clicked() {
                if s.name.trim().is_empty() {
                    s.error = Some("name can't be empty".into());
                } else if s.encrypted && s.passphrase.is_empty() {
                    s.error = Some("an encrypted room needs a passphrase".into());
                } else {
                    actions.push(UiAction::SubmitNewGroup {
                        name: s.name.trim().to_string(),
                        encrypted: s.encrypted,
                        passphrase: s.passphrase.clone(),
                    });
                }
            }
            if ui.button("Cancel").clicked() {
                actions.push(UiAction::CloseModal);
            }
        });
    });
    if resp.should_close() {
        actions.push(UiAction::CloseModal);
    }
}

fn new_dm(ctx: &egui::Context, s: &mut NewDmState, actions: &mut Vec<UiAction>) {
    let resp = egui::Modal::new(Id::new("modal-new-dm")).show(ctx, |ui| {
        ui.set_width(340.0);
        ui.heading("New message");
        ui.add_space(8.0);
        ui.label("who? (HD-ID or username)");
        let r = ui.add(
            TextEdit::singleline(&mut s.target)
                .desired_width(f32::INFINITY)
                .hint_text("HD-XXXX-… or a username"),
        );
        let enter = r.lost_focus() && ui.input(|i| i.key_pressed(egui::Key::Enter));
        if let Some(e) = &s.error {
            ui.add_space(6.0);
            ui.colored_label(palette().error, e);
        }
        ui.add_space(12.0);
        let mut go = enter;
        ui.horizontal(|ui| {
            if ui.button("Start chat").clicked() {
                go = true;
            }
            if ui.button("Cancel").clicked() {
                actions.push(UiAction::CloseModal);
            }
        });
        if go {
            if s.target.trim().is_empty() {
                s.error = Some("enter an HD-ID or username".into());
            } else {
                actions.push(UiAction::SubmitNewDm {
                    target: s.target.trim().to_string(),
                });
            }
        }
    });
    if resp.should_close() {
        actions.push(UiAction::CloseModal);
    }
}

fn add_contact(ctx: &egui::Context, s: &mut AddContactState, actions: &mut Vec<UiAction>) {
    let resp = egui::Modal::new(Id::new("modal-add-contact")).show(ctx, |ui| {
        ui.set_width(380.0);
        ui.heading("Add a contact");
        ui.label(
            RichText::new(
                "enter their HD-ID or a connect code they shared. huddle sends a signed \
                 contact request over the relay (works across the internet) and also tries \
                 a direct LAN connection.",
            )
            .small()
            .color(palette().text_dim),
        );
        ui.add_space(10.0);
        ui.label("HD-ID or connect code");
        let r = ui.add(
            TextEdit::singleline(&mut s.target)
                .desired_width(f32::INFINITY)
                .hint_text("HD-XXXX-XXXX-…  or  K7M9Q2X4"),
        );
        let enter = r.lost_focus() && ui.input(|i| i.key_pressed(egui::Key::Enter));
        ui.add_space(6.0);
        ui.label(
            RichText::new("note (optional)")
                .small()
                .color(palette().text_dim),
        );
        ui.add(
            TextEdit::singleline(&mut s.note)
                .desired_width(f32::INFINITY)
                .hint_text("\"hi, it's me from …\""),
        );
        if let Some(e) = &s.error {
            ui.add_space(6.0);
            ui.colored_label(palette().error, e);
        }

        // huddle 1.2.1: the other direction — mint a short-lived code THEY can
        // type to add you, instead of reading out your full HD-ID.
        ui.add_space(12.0);
        ui.separator();
        ui.add_space(6.0);
        ui.label(
            RichText::new("…or let them add you")
                .small()
                .strong()
                .color(palette().text_dim),
        );
        match &s.code {
            Some((code, expires_at)) => {
                let now = std::time::SystemTime::now()
                    .duration_since(std::time::UNIX_EPOCH)
                    .map(|d| d.as_secs() as i64)
                    .unwrap_or(0);
                let remaining = (*expires_at - now).max(0);
                let pretty = if code.len() == 8 {
                    format!("{}-{}", &code[..4], &code[4..])
                } else {
                    code.clone()
                };
                ui.horizontal(|ui| {
                    ui.label(
                        RichText::new(&pretty)
                            .heading()
                            .monospace()
                            .color(palette().accent),
                    );
                    if ui.button("Copy").clicked() {
                        actions.push(UiAction::Copy(code.clone()));
                    }
                });
                ui.label(
                    RichText::new(format!(
                        "valid {}m {:02}s — they enter it above on their device",
                        remaining / 60,
                        remaining % 60
                    ))
                    .small()
                    .color(palette().text_dim),
                );
                // Keep the countdown ticking while the modal is open.
                ui.ctx()
                    .request_repaint_after(std::time::Duration::from_secs(1));
            }
            None => {
                if ui.button("Generate a code to share").clicked() {
                    actions.push(UiAction::GenerateConnectCode);
                }
            }
        }

        ui.add_space(12.0);
        let mut go = enter;
        ui.horizontal(|ui| {
            if ui.button("Send request").clicked() {
                go = true;
            }
            if ui.button("Cancel").clicked() {
                actions.push(UiAction::CloseModal);
            }
        });
        if go {
            if s.target.trim().is_empty() {
                s.error = Some("enter an HD-ID".into());
            } else {
                let note = s.note.trim();
                actions.push(UiAction::SubmitAddContact {
                    target: s.target.trim().to_string(),
                    note: (!note.is_empty()).then(|| note.to_string()),
                });
            }
        }
    });
    if resp.should_close() {
        actions.push(UiAction::CloseModal);
    }
}

/// huddle 1.2.1: the About window — app name, version, a one-line summary, and
/// a clickable link to the GitHub repository.
fn about(ctx: &egui::Context, actions: &mut Vec<UiAction>) {
    let resp = egui::Modal::new(Id::new("modal-about")).show(ctx, |ui| {
        ui.set_width(360.0);
        ui.vertical_centered(|ui| {
            ui.heading("huddle");
            ui.label(
                RichText::new(format!("version {}", env!("CARGO_PKG_VERSION")))
                    .small()
                    .color(palette().text_dim),
            );
        });
        ui.add_space(10.0);
        ui.label(
            RichText::new(
                "Terminal- and desktop-native chat over a self-hosted Tor onion relay, \
                 end-to-end encrypted.",
            )
            .small()
            .color(palette().text_dim),
        );
        ui.add_space(12.0);
        ui.horizontal(|ui| {
            ui.label("Source code:");
            ui.hyperlink_to(
                "github.com/richer-richard/huddle",
                "https://github.com/richer-richard/huddle",
            );
        });
        ui.add_space(6.0);
        ui.label(
            RichText::new("MIT OR Apache-2.0")
                .small()
                .color(palette().text_dim),
        );
        ui.add_space(12.0);
        ui.vertical_centered(|ui| {
            if ui.button("Close").clicked() {
                actions.push(UiAction::CloseModal);
            }
        });
    });
    if resp.should_close() {
        actions.push(UiAction::CloseModal);
    }
}

fn edit_alias(ctx: &egui::Context, s: &mut EditAliasState, actions: &mut Vec<UiAction>) {
    let resp = egui::Modal::new(Id::new("modal-edit-alias")).show(ctx, |ui| {
        ui.set_width(360.0);
        ui.heading("Rename contact");
        ui.label(
            RichText::new(format!(
                "{} — a local nickname, only you see it.",
                s.current_label
            ))
            .small()
            .color(palette().text_dim),
        );
        ui.add_space(8.0);
        let r = ui.add(
            TextEdit::singleline(&mut s.input)
                .desired_width(f32::INFINITY)
                .hint_text("alias (empty clears it)"),
        );
        let enter = r.lost_focus() && ui.input(|i| i.key_pressed(egui::Key::Enter));
        ui.add_space(10.0);
        let mut go = enter;
        ui.horizontal(|ui| {
            if ui.button("Save").clicked() {
                go = true;
            }
            if ui.button("Cancel").clicked() {
                actions.push(UiAction::CloseModal);
            }
        });
        if go {
            let v = s.input.trim();
            actions.push(UiAction::SubmitEditAlias {
                fingerprint: s.fingerprint.clone(),
                alias: (!v.is_empty()).then(|| v.to_string()),
            });
        }
    });
    if resp.should_close() {
        actions.push(UiAction::CloseModal);
    }
}

fn join(ctx: &egui::Context, s: &mut JoinState, actions: &mut Vec<UiAction>) {
    let resp = egui::Modal::new(Id::new("modal-join")).show(ctx, |ui| {
        ui.set_width(340.0);
        ui.heading(format!("Join “{}", s.room_name));
        ui.add_space(8.0);
        if s.encrypted {
            ui.label("this room is encrypted — enter its passphrase");
            ui.add(
                TextEdit::singleline(&mut s.passphrase)
                    .password(true)
                    .desired_width(f32::INFINITY),
            );
        } else {
            ui.label(
                RichText::new("this room is public (no passphrase)").color(palette().text_dim),
            );
        }
        if let Some(e) = &s.error {
            ui.add_space(6.0);
            ui.colored_label(palette().error, e);
        }
        ui.add_space(12.0);
        ui.horizontal(|ui| {
            if ui.button("Join").clicked() {
                if s.encrypted && s.passphrase.is_empty() {
                    s.error = Some("this room needs a passphrase".into());
                } else {
                    let passphrase = if s.encrypted {
                        Some(s.passphrase.clone())
                    } else {
                        None
                    };
                    actions.push(UiAction::SubmitJoin {
                        room_id: s.room_id.clone(),
                        passphrase,
                    });
                }
            }
            if ui.button("Cancel").clicked() {
                actions.push(UiAction::CloseModal);
            }
        });
    });
    if resp.should_close() {
        actions.push(UiAction::CloseModal);
    }
}

fn message(
    ctx: &egui::Context,
    title: &str,
    body: &str,
    color: egui::Color32,
    actions: &mut Vec<UiAction>,
) {
    let resp = egui::Modal::new(Id::new("modal-message")).show(ctx, |ui| {
        ui.set_width(360.0);
        ui.heading(title);
        ui.add_space(8.0);
        ui.colored_label(color, body);
        ui.add_space(12.0);
        if ui.button("OK").clicked() {
            actions.push(UiAction::CloseModal);
        }
    });
    if resp.should_close() {
        actions.push(UiAction::CloseModal);
    }
}