textual 1.0.0-dev

A reactive TUI framework inspired by the Python Textual library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
use std::collections::HashMap;
use std::sync::{Arc, RwLock};
use std::time::Duration;

use rich_rs::{Console, ConsoleOptions, Segments};

use crate::action::{ActionDecl, ParsedAction};
use crate::compose::ComposeResult;
use crate::event::{Event, EventCtx};
use crate::message::{
    MarkdownTableOfContentsSelected, MarkdownTableOfContentsUpdated, Message, MessageEvent,
    NavigatorUpdated, ScrollbarAxis, ScrollbarScrollTo, TreeNodeActivated,
};

use super::containers::VerticalScroll;
use super::delegate::{delegate_renderable, delegate_widget_method};
use super::markdown_model::parse_markdown_headings_with_lines;
use super::{Markdown, Tree, TreeNode, Widget, WidgetStyles};

// ---------------------------------------------------------------------------
// MarkdownTableOfContents
// ---------------------------------------------------------------------------

type HeadingEntry = (usize, String, String);

const MARKDOWN_VIEWER_ACTIONS: &[ActionDecl] = &[ActionDecl {
    name: "link",
    namespace: "markdown_viewer",
    description: "Follow a markdown link",
    default_binding: None,
}];

/// A sidebar widget showing the headings of a Markdown document as a tree.
///
/// Mirrors Python's `MarkdownTableOfContents` (which composes a real `Tree` child).
pub struct MarkdownTableOfContents {
    shared_headings: Arc<RwLock<Vec<HeadingEntry>>>,
    styles: WidgetStyles,
}

impl MarkdownTableOfContents {
    pub fn new(headings: Vec<HeadingEntry>) -> Self {
        Self {
            shared_headings: Arc::new(RwLock::new(headings)),
            styles: WidgetStyles::default(),
        }
    }

    pub fn with_shared_headings(shared: Arc<RwLock<Vec<HeadingEntry>>>) -> Self {
        Self {
            shared_headings: shared,
            styles: WidgetStyles::default(),
        }
    }

    pub fn set_headings(&mut self, headings: Vec<HeadingEntry>) {
        if let Ok(mut data) = self.shared_headings.write() {
            *data = headings;
        }
    }

    /// Build a Tree from the current headings, nesting by heading level.
    ///
    /// Python builds H1 → root children, H2 → under last H1, H3 → under last H2, etc.
    /// Python sets `show_root = False` and `auto_expand = False`.
    fn build_tree_from_headings(headings: &[HeadingEntry]) -> Tree {
        if headings.is_empty() {
            let mut tree = Tree::new(vec![TreeNode::new("Contents")]);
            tree.set_show_root_plain(false);
            return tree;
        }

        let root = TreeNode::new("Contents").expanded(true).allow_expand(true);
        let nodes = build_heading_nodes(headings);
        let mut root = root;
        for node in nodes {
            root = root.with_child(node);
        }
        let mut tree = Tree::new(vec![root]);
        tree.set_show_root_plain(false);
        tree.set_auto_expand(false);
        tree
    }
}

struct MarkdownTableOfContentsTree {
    headings: Vec<HeadingEntry>,
    shared_headings: Arc<RwLock<Vec<HeadingEntry>>>,
    tree: Tree,
}

impl MarkdownTableOfContentsTree {
    fn with_shared_headings(shared: Arc<RwLock<Vec<HeadingEntry>>>) -> Self {
        let initial = shared.read().map(|h| h.clone()).unwrap_or_default();
        let tree = MarkdownTableOfContents::build_tree_from_headings(&initial);
        Self {
            headings: initial,
            shared_headings: shared,
            tree,
        }
    }

    fn sync_headings(&mut self) {
        let next = self.shared_headings.read().ok().map(|h| h.clone());
        if let Some(headings) = next
            && headings != self.headings
        {
            self.headings = headings;
            self.tree = MarkdownTableOfContents::build_tree_from_headings(&self.headings);
        }
    }
}

impl Widget for MarkdownTableOfContentsTree {
    fn style_type(&self) -> &'static str {
        // Keep selector compatibility with Python and default CSS:
        // `MarkdownTableOfContents > Tree`.
        "Tree"
    }

    fn content_width(&self) -> Option<usize> {
        // In Python, the composed Tree fills the TOC pane; pane width is driven by
        // the parent `MarkdownTableOfContents` dock/intrinsic sizing. Returning `None`
        // avoids a second intrinsic-width clamp on the child Tree.
        None
    }

    fn on_layout(&mut self, width: u16, height: u16) {
        self.sync_headings();
        self.tree.on_layout(width, height);
    }

    // delegate-audit: 70 methods as of 2026-02-26
    delegate_widget_method!(
        tree,
        [
            render,
            render_with_debug,
            render_line,
            render_lines,
            compose,
            take_composed_children,
            focusable,
            can_focus,
            can_focus_children,
            set_focus,
            has_focus,
            on_mount,
            on_unmount,
            on_tick,
            on_resize,
            set_virtual_content_size,
            on_event_capture,
            on_event,
            on_message,
            on_mouse_scroll,
            on_mouse_move,
            on_app_key,
            on_app_action,
            on_app_message,
            on_app_tick,
            on_app_mount,
            scroll_offset,
            scroll_offset_f32,
            scroll_viewport_size,
            scroll_virtual_content_size,
            clips_descendants_to_content,
            child_display_for_tree,
            tree_child_content_inset,
            layout_height,
            layout_constraints,
            preserve_underlay,
            bindings,
            binding_hints,
            execute_action,
            action_namespace,
            action_registry,
            styles,
            styles_mut,
            style_type_aliases,
            style_id,
            style_classes,
            set_style_id,
            border_title,
            border_subtitle,
            is_disabled,
            set_disabled_state,
            is_loading,
            set_loading_state,
            is_hovered,
            set_hovered,
            is_active,
            mouse_interactive,
            tooltip,
            tooltip_anchor,
            help_markup,
            allow_select,
            selection_at,
            selection_word_range_at,
            selection_all_range,
            update_selection,
            clear_selection,
            get_selection,
            selection_updated,
            reactive_widget,
        ]
    );
}

delegate_renderable!(MarkdownTableOfContentsTree);

impl Widget for MarkdownTableOfContents {
    fn style_type(&self) -> &'static str {
        "MarkdownTableOfContents"
    }

    fn compose(&self) -> ComposeResult {
        vec![MarkdownTableOfContentsTree::with_shared_headings(self.shared_headings.clone()).into()]
    }

    fn render(&self, _console: &Console, _options: &ConsoleOptions) -> Segments {
        Segments::new()
    }

    fn layout_height(&self) -> Option<usize> {
        None
    }

    fn content_width(&self) -> Option<usize> {
        let headings = self.shared_headings.read().ok().map(|h| h.clone())?;
        let tree = MarkdownTableOfContents::build_tree_from_headings(&headings);
        let base = tree.content_width().unwrap_or(1);

        // `MarkdownTableOfContents > Tree` contributes horizontal padding in default CSS.
        let toc_meta = crate::css::selector_meta_generic(self);
        let toc_resolved = crate::css::resolve_style(self, &toc_meta);
        let tree_meta = crate::css::selector_meta_generic(&tree);
        let tree_resolved = crate::css::with_style_stack(toc_meta, toc_resolved, || {
            crate::css::resolve_style(&tree, &tree_meta)
        });
        let padding = tree_resolved.effective_padding();
        Some(
            base.saturating_add(usize::from(padding.left))
                .saturating_add(usize::from(padding.right))
                .max(1),
        )
    }

    fn can_focus_children(&self) -> bool {
        true
    }

    fn styles(&self) -> Option<&WidgetStyles> {
        Some(&self.styles)
    }

    fn styles_mut(&mut self) -> Option<&mut WidgetStyles> {
        Some(&mut self.styles)
    }

    fn on_message(&mut self, message: &MessageEvent, ctx: &mut EventCtx) {
        if let Message::MarkdownTableOfContentsUpdated(MarkdownTableOfContentsUpdated {
            headings,
        }) = &message.message
        {
            if let Ok(mut shared) = self.shared_headings.write() {
                *shared = headings.clone();
            }
            // TOC width is content-driven (`width: auto` with dock). Heading changes
            // must invalidate layout so the sidebar width can be recomputed.
            ctx.request_layout_invalidation();
            ctx.request_repaint();
            return;
        }

        if let Message::TreeNodeActivated(TreeNodeActivated {
            data: Some(block_id),
            ..
        }) = &message.message
        {
            ctx.post_message(Message::MarkdownTableOfContentsSelected(
                MarkdownTableOfContentsSelected {
                    block_id: block_id.clone(),
                },
            ));
            ctx.set_handled();
        }
    }
}

// ---------------------------------------------------------------------------
// Heading hierarchy builder
// ---------------------------------------------------------------------------

/// Build hierarchical `TreeNode`s from a flat list of `(level, title)` headings.
///
/// Mirrors Python's algorithm: for each heading at level N, walk from the root
/// down into the last child N-1 times, then add the heading as a leaf there.
/// H1 → root children, H2 → under last H1, H3 → under last H2, etc.
/// Roman numeral prefixes for TOC labels, indexed by heading level (1-6).
/// Mirrors Python's `NUMERALS = " ⅠⅡⅢⅣⅤⅥ"`.
const NUMERALS: [char; 7] = [' ', '', '', '', '', '', ''];

fn build_heading_nodes(headings: &[HeadingEntry]) -> Vec<TreeNode> {
    // We build the tree by accumulating nodes into a mutable structure,
    // then convert to TreeNode at the end.
    struct TocNode {
        label: String,
        /// Heading level (1-6) for numeral prefix.
        level: usize,
        /// Stable heading block id.
        block_id: String,
        children: Vec<TocNode>,
    }

    let mut roots: Vec<TocNode> = Vec::new();

    for (level, title, block_id) in headings {
        let depth = level.saturating_sub(1); // H1=0 deep, H2=1 deep, etc.
        let new_node = TocNode {
            label: title.clone(),
            level: *level,
            block_id: block_id.clone(),
            children: Vec::new(),
        };

        // Walk down `depth` levels into the last child at each step.
        let mut target = &mut roots;
        for _ in 0..depth {
            if target.is_empty() {
                break;
            }
            let last = target.last_mut().unwrap();
            target = &mut last.children;
        }
        target.push(new_node);
    }

    // Convert TocNode tree to TreeNode tree.
    // Python parity: parent nodes start expanded (Python expands as it walks down
    // to place child headings), leaf nodes have allow_expand=false.
    // Each node carries its block_id as data for click-to-scroll.
    // Labels are prefixed with Roman numeral by heading level.
    fn to_tree_node(toc: &TocNode) -> TreeNode {
        let has_children = !toc.children.is_empty();
        let numeral = NUMERALS.get(toc.level).copied().unwrap_or(' ');
        let prefixed_label = format!("{} {}", numeral, toc.label);
        let mut node = TreeNode::new(prefixed_label)
            .expanded(has_children)
            .allow_expand(has_children)
            .with_data(toc.block_id.clone());
        for child in &toc.children {
            node = node.with_child(to_tree_node(child));
        }
        node
    }

    roots.iter().map(to_tree_node).collect()
}

// ---------------------------------------------------------------------------
// Navigator
// ---------------------------------------------------------------------------

/// Browser-like navigation history for Markdown documents.
///
/// Mirrors Python's `Navigator` class. Maintains a stack of path keys
/// with a cursor position. `go()` pushes a new location, `back()` and
/// `forward()` move the cursor, discarding forward history on new `go()` calls.
///
/// Path keys are resolved to content via the `MarkdownViewer`'s content registry.
pub struct Navigator {
    /// Stack of path keys (e.g. "demo.md", "example.md").
    history: Vec<String>,
    cursor: usize,
}

impl Navigator {
    fn new() -> Self {
        Self {
            history: Vec::new(),
            cursor: 0,
        }
    }

    /// Push a new location (path key), discarding any forward history.
    pub fn go(&mut self, location: impl Into<String>) -> bool {
        let location = location.into();
        // Truncate forward history.
        self.history
            .truncate(self.cursor + if self.history.is_empty() { 0 } else { 1 });
        self.history.push(location);
        self.cursor = self.history.len() - 1;
        true
    }

    /// Move back in history. Returns the path key if possible.
    pub fn back(&mut self) -> Option<&str> {
        if self.cursor > 0 {
            self.cursor -= 1;
            Some(&self.history[self.cursor])
        } else {
            None
        }
    }

    /// Move forward in history. Returns the path key if possible.
    pub fn forward(&mut self) -> Option<&str> {
        if self.cursor + 1 < self.history.len() {
            self.cursor += 1;
            Some(&self.history[self.cursor])
        } else {
            None
        }
    }

    /// True if at the start of history (can't go back).
    pub fn at_start(&self) -> bool {
        self.cursor == 0
    }

    /// True if at the end of history (can't go forward).
    pub fn at_end(&self) -> bool {
        self.history.is_empty() || self.cursor >= self.history.len() - 1
    }

    /// Current path key, if any.
    pub fn location(&self) -> Option<&str> {
        self.history.get(self.cursor).map(String::as_str)
    }
}

// ---------------------------------------------------------------------------
// MarkdownViewer
// ---------------------------------------------------------------------------

/// A composite viewer for Markdown content with an optional Table of Contents sidebar.
///
/// Mirrors Python's `MarkdownViewer` (which extends `VerticalScroll` and composes
/// a `Markdown` widget and a `MarkdownTableOfContents` sidebar).
///
/// ## Architecture
/// Internally delegates to a [`ScrollableContainer`], making this widget a scroll
/// host. Children are composed as:
/// - `Markdown` — the rendered content (scrollable)
/// - `MarkdownTableOfContents` — docked left via CSS
/// - Scrollbar widgets (from ScrollableContainer)
///
/// ## CSS class `-show-table-of-contents`
/// Added when `show_table_of_contents` is true; the default CSS uses this class
/// to toggle `MarkdownTableOfContents` visibility via `display: none/block`.
///
/// ## Navigation history
/// Uses a [`Navigator`] with `go()`, `back()`, and `forward()` methods for
/// browser-like content history, matching Python's `MarkdownViewer.navigator`.
pub struct MarkdownViewer {
    /// Python-parity scroll host (`VerticalScroll`) that owns Markdown + TOC children.
    inner: VerticalScroll,
    /// Shared content state between this viewer and its Markdown child.
    /// When `go()`/`back()`/`forward()` update content, the Markdown child picks it
    /// up during `on_layout()` via this shared reference.
    shared_markup: Arc<RwLock<String>>,
    /// Shared heading metadata used by TOC to stay synchronized with document updates.
    shared_headings: Arc<RwLock<Vec<HeadingEntry>>>,
    content: String,
    /// CSS classes on this widget (e.g. `-show-table-of-contents`).
    classes: Vec<String>,
    /// Navigation history for back/forward (stores path keys).
    pub navigator: Navigator,
    /// Content registry: path key → markdown content.
    content_map: HashMap<String, String>,
    /// Whether a TOC-updated message should be emitted on the next event turn.
    toc_dirty: bool,
}

impl MarkdownViewer {
    /// Create a new MarkdownViewer with initial content.
    ///
    /// For path-based navigation, use `register_content()` and `go()`.
    /// For simple single-document display, pass content directly.
    pub fn new(content: impl Into<String>) -> Self {
        let content = content.into();
        let navigator = Navigator::new();
        let content_map = HashMap::new();

        let shared_markup = Arc::new(RwLock::new(content.clone()));
        let shared_headings = Arc::new(RwLock::new(Self::parse_headings(&content)));
        let inner = VerticalScroll::new()
            .scroll_step(2)
            .with_child(Markdown::with_shared_markup(shared_markup.clone()).with_can_focus(true))
            .with_child(MarkdownTableOfContents::with_shared_headings(
                shared_headings.clone(),
            ));

        Self {
            inner,
            shared_markup,
            shared_headings,
            content,
            classes: vec!["-show-table-of-contents".to_string()],
            navigator,
            content_map,
            toc_dirty: true,
        }
    }

    /// Register content for a path key.
    pub fn register_content(&mut self, path: impl Into<String>, content: impl Into<String>) {
        self.content_map.insert(path.into(), content.into());
    }

    pub fn show_table_of_contents(mut self, show: bool) -> Self {
        self.set_show_table_of_contents(show);
        self
    }

    pub fn set_show_table_of_contents(&mut self, show: bool) {
        const CLASS: &str = "-show-table-of-contents";
        if show {
            if !self.classes.iter().any(|c| c == CLASS) {
                self.classes.push(CLASS.to_string());
            }
        } else {
            self.classes.retain(|c| c != CLASS);
        }
    }

    pub fn is_showing_table_of_contents(&self) -> bool {
        self.classes.iter().any(|c| c == "-show-table-of-contents")
    }

    pub fn set_content(&mut self, content: impl Into<String>) {
        self.apply_content_update(content.into());
    }

    /// Navigate to a registered path key, pushing it onto the history stack.
    pub fn go(&mut self, path: impl Into<String>) -> bool {
        let path = path.into();
        if let Some(content) = self.content_map.get(&path).cloned() {
            self.navigator.go(&path);
            self.apply_content_update(content);
            true
        } else {
            false
        }
    }

    /// Navigate back in history. Returns `true` if navigation occurred.
    pub fn back(&mut self) -> bool {
        if let Some(location) = self.navigator.back() {
            if let Some(content) = self.content_map.get(location).cloned() {
                self.apply_content_update(content);
                return true;
            }
        }
        false
    }

    /// Navigate forward in history. Returns `true` if navigation occurred.
    pub fn forward(&mut self) -> bool {
        if let Some(location) = self.navigator.forward() {
            if let Some(content) = self.content_map.get(location).cloned() {
                self.apply_content_update(content);
                return true;
            }
        }
        false
    }

    fn follow_link(&mut self, href: &str) -> bool {
        let href = href.trim();
        let path_part = href.split('#').next().unwrap_or_default().trim();
        if path_part.is_empty() {
            return false;
        }

        let mut candidates = vec![path_part.to_string()];
        if let Some(stripped) = path_part.strip_prefix("./") {
            candidates.push(stripped.to_string());
        }

        for candidate in candidates {
            if self.content_map.contains_key(&candidate) && self.go(candidate) {
                return true;
            }
        }
        false
    }

    /// Extract headings from the current content.
    pub fn extract_headings(&self) -> Vec<(usize, String)> {
        Self::parse_headings(&self.content)
            .into_iter()
            .map(|(level, title, _)| (level, title))
            .collect()
    }

    fn apply_content_update(&mut self, content: String) {
        self.content = content;
        if let Ok(mut shared) = self.shared_markup.write() {
            *shared = self.content.clone();
        }
        let headings = Self::parse_headings(&self.content);
        if let Ok(mut shared_headings) = self.shared_headings.write() {
            *shared_headings = headings;
        }
        self.toc_dirty = true;
    }

    fn flush_toc_message(&mut self, ctx: &mut EventCtx) {
        if !self.toc_dirty {
            return;
        }
        let headings = self
            .shared_headings
            .read()
            .ok()
            .map(|h| h.clone())
            .unwrap_or_default();
        ctx.post_message(Message::MarkdownTableOfContentsUpdated(
            MarkdownTableOfContentsUpdated { headings },
        ));
        self.toc_dirty = false;
    }

    /// Compute the approximate line offset for a heading block id in the content.
    fn heading_line_offset(&self, block_id: &str) -> usize {
        let viewport_width = self
            .inner
            .scroll_viewport_size()
            .map(|(w, _)| w)
            .unwrap_or(80)
            .max(1);

        let toc_width = if self.is_showing_table_of_contents() {
            MarkdownTableOfContents::with_shared_headings(self.shared_headings.clone())
                .content_width()
                .unwrap_or(0)
        } else {
            0
        };

        let markdown_width = viewport_width.saturating_sub(toc_width).max(1);
        // Default Markdown CSS has left/right padding of 2 cells.
        let content_width = markdown_width.saturating_sub(4).max(1);

        let headings = Self::parse_heading_lines(&self.content);
        let mut by_source_line: HashMap<usize, (usize, String)> = HashMap::new();
        for (level, _title, id, source_line) in &headings {
            by_source_line.insert(*source_line, (*level, id.clone()));
        }

        let mut visual_row = 0usize;
        for (source_line, line) in self.content.lines().enumerate() {
            let wraps = rich_rs::cell_len(line).div_ceil(content_width).max(1);
            if let Some((level, id)) = by_source_line.get(&source_line) {
                let (top, bottom) = heading_margins(*level);
                if id == block_id {
                    // Python parity: `scroll_to_widget(..., top=True)` aligns to the
                    // heading block region (which includes heading top margin). Our
                    // source-line approximation compensates by backing off one context
                    // row plus the heading top margin so the viewport lands just before
                    // the heading text, matching Python's visual position.
                    return visual_row.saturating_sub(1 + top);
                }
                visual_row = visual_row
                    .saturating_add(top)
                    .saturating_add(wraps)
                    .saturating_add(bottom);
            } else {
                visual_row = visual_row.saturating_add(wraps);
            }
        }
        0
    }

    fn parse_headings(content: &str) -> Vec<HeadingEntry> {
        parse_markdown_heading_lines(content)
            .into_iter()
            .map(|(level, title, block_id, _)| (level, title, block_id))
            .collect()
    }

    fn parse_heading_lines(content: &str) -> Vec<(usize, String, String, usize)> {
        parse_markdown_heading_lines(content)
    }
}

fn slugify_heading(title: &str) -> String {
    let mut slug = String::new();
    let mut prev_dash = false;
    for ch in title.chars() {
        if ch.is_ascii_alphanumeric() {
            slug.push(ch.to_ascii_lowercase());
            prev_dash = false;
        } else if ch == '_' || ch == '-' {
            if !prev_dash && !slug.is_empty() {
                slug.push(ch);
                prev_dash = true;
            }
        } else if ch.is_ascii_whitespace() && !prev_dash && !slug.is_empty() {
            slug.push('-');
            prev_dash = true;
        }
    }
    let slug = slug.trim_end_matches('-').to_string();
    if slug.is_empty() {
        "section".to_string()
    } else {
        slug
    }
}

fn heading_margins(level: usize) -> (usize, usize) {
    if level <= 2 { (2, 1) } else { (1, 1) }
}

pub(crate) fn parse_markdown_heading_lines(content: &str) -> Vec<(usize, String, String, usize)> {
    let mut out = Vec::new();
    let mut slug_counts: HashMap<String, usize> = HashMap::new();
    for (marker_len, title, line_idx) in parse_markdown_headings_with_lines(content) {
        let base = slugify_heading(&title);
        let seen = slug_counts.entry(base.clone()).or_insert(0);
        let block_id = if *seen == 0 {
            base
        } else {
            format!("{base}-{}", *seen)
        };
        *seen += 1;
        out.push((marker_len, title, block_id, line_idx));
    }
    out
}

// ---------------------------------------------------------------------------
// Widget impl — delegates scroll behavior to inner ScrollableContainer,
// overrides identity (style_type, style_classes) for CSS resolution.
// ---------------------------------------------------------------------------

impl Widget for MarkdownViewer {
    fn style_type(&self) -> &'static str {
        "MarkdownViewer"
    }

    fn style_classes(&self) -> &[String] {
        &self.classes
    }

    fn focusable(&self) -> bool {
        false
    }

    fn can_focus(&self) -> bool {
        false
    }

    fn can_focus_children(&self) -> bool {
        true
    }

    fn on_event_capture(&mut self, event: &Event, ctx: &mut EventCtx) {
        self.flush_toc_message(ctx);
        self.inner.on_event_capture(event, ctx);
    }

    fn on_event(&mut self, event: &Event, ctx: &mut EventCtx) {
        self.flush_toc_message(ctx);
        self.inner.on_event(event, ctx);
    }

    fn on_message(&mut self, message: &MessageEvent, ctx: &mut EventCtx) {
        self.flush_toc_message(ctx);
        if let Message::MarkdownTableOfContentsUpdated(MarkdownTableOfContentsUpdated {
            headings,
        }) = &message.message
        {
            if let Ok(mut shared_headings) = self.shared_headings.write() {
                *shared_headings = headings.clone();
            }
            // MarkdownViewer docks TOC with `width:auto`; heading updates must trigger
            // a relayout so the dock width tracks the rebuilt TOC tree width.
            ctx.request_layout_invalidation();
            ctx.request_repaint();
            ctx.set_handled();
            return;
        }
        // Handle TOC heading selection: scroll to the heading in the document.
        if let Message::MarkdownTableOfContentsSelected(MarkdownTableOfContentsSelected {
            block_id,
        }) = &message.message
        {
            let target_line = self.heading_line_offset(block_id);
            // Python `scroll_to_widget(..., top=True)` defaults to a fixed 0.2s
            // duration when no explicit speed/duration is provided.
            let scroll_duration = Some(Duration::from_millis(200));
            ctx.post_message(Message::ScrollbarScrollTo(ScrollbarScrollTo {
                axis: ScrollbarAxis::Vertical,
                offset: target_line as f32,
                animate: true,
                scroll_duration,
            }));
            ctx.set_handled();
            return;
        }
        self.inner.on_message(message, ctx);
    }

    fn action_namespace(&self) -> &str {
        "markdown_viewer"
    }

    fn action_registry(&self) -> &[ActionDecl] {
        MARKDOWN_VIEWER_ACTIONS
    }

    fn execute_action(&mut self, action: &ParsedAction, ctx: &mut EventCtx) -> bool {
        if action.name == "link"
            && let Some(href) = action.arguments.first()
            && self.follow_link(href)
        {
            ctx.post_message(Message::NavigatorUpdated(NavigatorUpdated));
            ctx.request_layout_invalidation();
            ctx.request_repaint();
            return true;
        }
        self.inner.execute_action(action, ctx)
    }

    // delegate-audit: 67 methods as of 2026-02-26
    delegate_widget_method!(
        inner,
        [
            render,
            render_with_debug,
            render_line,
            render_lines,
            compose,
            take_composed_children,
            set_focus,
            has_focus,
            on_mount,
            on_unmount,
            on_tick,
            on_resize,
            on_layout,
            set_virtual_content_size,
            on_mouse_scroll,
            on_mouse_move,
            on_app_key,
            on_app_action,
            on_app_message,
            on_app_tick,
            on_app_mount,
            scroll_offset,
            scroll_offset_f32,
            scroll_viewport_size,
            scroll_virtual_content_size,
            clips_descendants_to_content,
            child_display_for_tree,
            tree_child_content_inset,
            layout_height,
            content_width,
            layout_constraints,
            preserve_underlay,
            bindings,
            binding_hints,
            styles,
            styles_mut,
            style_type_aliases,
            style_id,
            set_style_id,
            border_title,
            border_subtitle,
            is_disabled,
            set_disabled_state,
            is_loading,
            set_loading_state,
            is_hovered,
            set_hovered,
            is_active,
            mouse_interactive,
            tooltip,
            tooltip_anchor,
            help_markup,
            allow_select,
            selection_at,
            selection_word_range_at,
            selection_all_range,
            update_selection,
            clear_selection,
            get_selection,
            selection_updated,
            reactive_widget,
        ]
    );
}

delegate_renderable!(MarkdownViewer);

// ---------------------------------------------------------------------------
// Tests
// ---------------------------------------------------------------------------

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn markdown_viewer_default_shows_toc() {
        let viewer = MarkdownViewer::new("# Heading");
        assert!(viewer.is_showing_table_of_contents());
    }

    #[test]
    fn markdown_viewer_hide_toc() {
        let viewer = MarkdownViewer::new("# Heading").show_table_of_contents(false);
        assert!(!viewer.is_showing_table_of_contents());
    }

    #[test]
    fn markdown_viewer_extracts_headings() {
        let viewer = MarkdownViewer::new("# H1\n## H2\n### H3");
        let h = viewer.extract_headings();
        assert_eq!(h.len(), 3);
        assert_eq!(h[0], (1, "H1".to_string()));
        assert_eq!(h[1], (2, "H2".to_string()));
        assert_eq!(h[2], (3, "H3".to_string()));
    }

    #[test]
    fn markdown_viewer_is_scroll_host() {
        // Verify that MarkdownViewer delegates scroll behavior.
        let viewer = MarkdownViewer::new("# Test");
        assert_eq!(viewer.scroll_offset(), (0, 0));
        assert!(viewer.clips_descendants_to_content());
    }

    #[test]
    fn markdown_viewer_children_include_scrollbars() {
        // take_composed_children() should return user children + scrollbar widgets.
        let mut viewer = MarkdownViewer::new("# Test");
        let children = viewer.take_composed_children();
        // At minimum: Markdown, MarkdownTableOfContents, + scrollbar widgets.
        assert!(
            children.len() >= 2,
            "expected at least 2 children (Markdown + TOC), got {}",
            children.len()
        );
        // First child should be Markdown (or its contents from flattening).
        // Scrollbar widgets should be present.
        let has_scrollbar = children.iter().any(|c| {
            let st = c.style_type();
            st.contains("Scrollbar") || st.contains("ScrollBar")
        });
        assert!(
            has_scrollbar || children.len() >= 3,
            "expected scrollbar widgets in children"
        );
    }

    #[test]
    fn markdown_viewer_composes_focusable_markdown_document_child() {
        let mut viewer = MarkdownViewer::new("# Test");
        let children = viewer.take_composed_children();
        let markdown_child = children
            .iter()
            .find(|child| child.style_type() == "Markdown")
            .expect("expected Markdown child in MarkdownViewer composition");
        assert!(
            markdown_child.focusable(),
            "MarkdownViewer should compose a focusable Markdown child (Python parity)"
        );
    }

    #[test]
    fn markdown_viewer_style_type() {
        let viewer = MarkdownViewer::new("# Test");
        assert_eq!(viewer.style_type(), "MarkdownViewer");
    }

    #[test]
    fn markdown_viewer_style_classes_include_toc_class() {
        let viewer = MarkdownViewer::new("# Test");
        assert!(
            viewer
                .style_classes()
                .iter()
                .any(|c| c == "-show-table-of-contents"),
            "expected -show-table-of-contents class"
        );
    }

    #[test]
    fn markdown_viewer_toggle_toc_removes_class() {
        let mut viewer = MarkdownViewer::new("# Test");
        viewer.set_show_table_of_contents(false);
        assert!(
            !viewer
                .style_classes()
                .iter()
                .any(|c| c == "-show-table-of-contents"),
            "class should be removed when TOC is hidden"
        );
    }

    #[test]
    fn toc_set_headings_updates_content() {
        let mut toc = MarkdownTableOfContents::new(vec![(1, "H1".to_string(), "h1".to_string())]);
        toc.set_headings(vec![
            (1, "H1".to_string(), "h1".to_string()),
            (2, "H2".to_string(), "h2".to_string()),
        ]);
        let headings = toc.shared_headings.read().unwrap().clone();
        assert_eq!(headings.len(), 2);
    }

    #[test]
    fn toc_compose_returns_tree_child() {
        let toc = MarkdownTableOfContents::new(vec![
            (1, "Chapter".to_string(), "chapter".to_string()),
            (2, "Section".to_string(), "section".to_string()),
        ]);
        let children = toc.compose();
        assert!(
            children.len() == 1,
            "TOC should compose exactly one Tree child, got {}",
            children.len()
        );
        match &children[0].builder {
            crate::compose::WidgetBuilder::Ready(widget) => {
                assert_eq!(widget.style_type(), "Tree");
            }
        }
    }

    #[test]
    fn toc_child_tree_css_padding_and_bg_resolve_with_parent_context() {
        let _guard = crate::css::set_style_context(crate::css::default_widget_stylesheet());
        let toc = MarkdownTableOfContents::new(vec![(1, "H1".to_string(), "h1".to_string())]);
        let tree = MarkdownTableOfContentsTree::with_shared_headings(toc.shared_headings.clone());
        let toc_meta = crate::css::selector_meta_generic(&toc);
        let toc_resolved = crate::css::resolve_style(&toc, &toc_meta);
        let tree_meta = crate::css::selector_meta_generic(&tree);
        let tree_resolved = crate::css::with_style_stack(toc_meta, toc_resolved, || {
            crate::css::resolve_style(&tree, &tree_meta)
        });
        let padding = tree_resolved.effective_padding();
        assert_eq!(
            padding,
            crate::style::Spacing::all(1),
            "MarkdownTableOfContents > Tree should resolve padding: 1 from default CSS"
        );
        assert!(
            tree_resolved.bg.is_some(),
            "MarkdownTableOfContents > Tree should resolve background from default CSS"
        );
    }

    // ── Navigator path-based, TOC settings ───────────────────────────────

    #[test]
    fn navigator_path_based_go_back_forward() {
        let mut nav = Navigator::new();
        nav.go("page1.md");
        nav.go("page2.md");
        assert_eq!(nav.location(), Some("page2.md"));

        assert_eq!(nav.back(), Some("page1.md"));
        assert_eq!(nav.location(), Some("page1.md"));

        assert_eq!(nav.forward(), Some("page2.md"));
        assert_eq!(nav.location(), Some("page2.md"));
    }

    #[test]
    fn navigator_start_end_properties() {
        let mut nav = Navigator::new();
        assert!(nav.at_start());
        assert!(nav.at_end());

        nav.go("a.md");
        assert!(nav.at_start());
        assert!(nav.at_end());

        nav.go("b.md");
        assert!(!nav.at_start());
        assert!(nav.at_end());

        nav.back();
        assert!(nav.at_start());
        assert!(!nav.at_end());
    }

    #[test]
    fn viewer_register_content_and_navigate() {
        let mut viewer = MarkdownViewer::new("initial");
        viewer.register_content("demo.md", "# Demo");
        viewer.register_content("example.md", "# Example");

        assert!(viewer.go("demo.md"));
        assert_eq!(viewer.content, "# Demo");

        assert!(viewer.go("example.md"));
        assert_eq!(viewer.content, "# Example");

        assert!(viewer.back());
        assert_eq!(viewer.content, "# Demo");

        assert!(viewer.forward());
        assert_eq!(viewer.content, "# Example");
    }

    #[test]
    fn viewer_go_unknown_path_returns_false() {
        let mut viewer = MarkdownViewer::new("initial");
        assert!(!viewer.go("nonexistent.md"));
        assert_eq!(viewer.content, "initial");
    }

    #[test]
    fn viewer_link_action_resolves_relative_registered_path() {
        let mut viewer = MarkdownViewer::new("initial");
        viewer.register_content("demo.md", "# Demo");
        viewer.register_content("example.md", "# Example");
        assert!(viewer.go("demo.md"));

        let action =
            crate::action::parse_action("link('./example.md')").expect("link action should parse");
        let mut ctx = EventCtx::default();
        assert!(viewer.execute_action(&action, &mut ctx));
        assert_eq!(viewer.content, "# Example");
        assert!(
            ctx.take_messages()
                .into_iter()
                .any(|msg| matches!(msg.message, Message::NavigatorUpdated(_))),
            "link navigation should emit NavigatorUpdated"
        );
    }

    #[test]
    fn toc_tree_hides_root() {
        let toc = MarkdownTableOfContents::new(vec![(1, "H1".to_string(), "h1".to_string())]);
        let headings = toc.shared_headings.read().unwrap().clone();
        let tree = MarkdownTableOfContents::build_tree_from_headings(&headings);
        assert!(!tree.showing_root());
    }

    #[test]
    fn toc_tree_parent_nodes_start_expanded() {
        let toc = MarkdownTableOfContents::new(vec![
            (1, "Chapter".to_string(), "chapter".to_string()),
            (2, "Section".to_string(), "section".to_string()),
        ]);
        let headings = toc.shared_headings.read().unwrap().clone();
        let tree = MarkdownTableOfContents::build_tree_from_headings(&headings);
        // Python parity: parent nodes start expanded (Python expands as it walks
        // down to place child headings). The root "Contents" is always expanded.
        if let Some(root) = tree.root() {
            assert!(
                root.is_expanded(),
                "Root 'Contents' node should start expanded"
            );
        }
    }

    #[test]
    fn toc_composed_tree_defers_intrinsic_width_to_toc_wrapper() {
        let toc = MarkdownTableOfContents::new(vec![
            (
                1,
                "A Long Chapter Title".to_string(),
                "a-long-chapter-title".to_string(),
            ),
            (2, "Section".to_string(), "section".to_string()),
        ]);
        let tree = MarkdownTableOfContentsTree::with_shared_headings(toc.shared_headings.clone());
        let w = tree.content_width();
        assert_eq!(
            w, None,
            "Composed TOC Tree should fill parent pane; TOC wrapper computes intrinsic width"
        );
    }

    #[test]
    fn toc_wrapper_reports_intrinsic_width_for_dock_auto_layout() {
        let _guard = crate::css::set_style_context(crate::css::default_widget_stylesheet());
        let toc = MarkdownTableOfContents::new(vec![
            (
                1,
                "A Long Chapter Title".to_string(),
                "a-long-chapter-title".to_string(),
            ),
            (2, "Section".to_string(), "section".to_string()),
        ]);
        let w = toc.content_width();
        assert!(
            w.is_some() && w.unwrap() > 10,
            "TOC wrapper should expose intrinsic width so dock:auto doesn't consume full viewport"
        );
    }

    #[test]
    fn tree_node_data_carries_heading_block_id() {
        let toc = MarkdownTableOfContents::new(vec![
            (1, "Chapter".to_string(), "chapter".to_string()),
            (2, "Section".to_string(), "section".to_string()),
        ]);
        let headings = toc.shared_headings.read().unwrap().clone();
        let tree = MarkdownTableOfContents::build_tree_from_headings(&headings);
        if let Some(root) = tree.root() {
            let h1 = root.children_slice();
            assert!(!h1.is_empty());
            assert_eq!(h1[0].data(), Some("chapter"));
            let h2_children = h1[0].children_slice();
            assert!(!h2_children.is_empty());
            assert_eq!(h2_children[0].data(), Some("section"));
        }
    }

    #[test]
    fn heading_line_offset_finds_visual_row_by_block_id() {
        let content = "Some preamble\n\n# First Heading\n\nText\n\n## Second Heading\n";
        let mut viewer = MarkdownViewer::new(content);
        viewer.on_layout(80, 24);
        let first = viewer.heading_line_offset("first-heading");
        let second = viewer.heading_line_offset("second-heading");
        assert!(first < second);
        assert_eq!(first, 0);
        assert_eq!(second, 6);
    }

    #[test]
    fn toc_on_message_posts_toc_selected() {
        let mut toc =
            MarkdownTableOfContents::new(vec![(1, "Chapter".to_string(), "chapter".to_string())]);
        let msg = MessageEvent {
            sender: crate::node_id::NodeId::default(),
            message: Message::TreeNodeActivated(TreeNodeActivated {
                index: 0,
                label: "Chapter".to_string(),
                data: Some("chapter".to_string()),
            }),
            control: None,
        };
        let mut ctx = crate::event::EventCtx::default();
        toc.on_message(&msg, &mut ctx);
        assert!(ctx.handled());
        let messages = ctx.take_messages();
        assert!(
            messages.iter().any(|m| matches!(
                &m.message,
                Message::MarkdownTableOfContentsSelected(
                    MarkdownTableOfContentsSelected { block_id }
                ) if block_id == "chapter"
            )),
            "TOC should post MarkdownTableOfContentsSelected with block_id"
        );
    }

    #[test]
    fn toc_on_message_updated_requests_layout_invalidation() {
        let mut toc =
            MarkdownTableOfContents::new(vec![(1, "Chapter".to_string(), "chapter".to_string())]);
        let msg = MessageEvent {
            sender: crate::node_id::NodeId::default(),
            message: Message::MarkdownTableOfContentsUpdated(MarkdownTableOfContentsUpdated {
                headings: vec![
                    (1, "Chapter".to_string(), "chapter".to_string()),
                    (2, "Section".to_string(), "section".to_string()),
                ],
            }),
            control: None,
        };
        let mut ctx = crate::event::EventCtx::default();
        toc.on_message(&msg, &mut ctx);
        assert!(
            ctx.invalidation().layout,
            "TOC updates should invalidate layout so dock:auto width can grow"
        );
    }

    #[test]
    fn toc_on_selected_does_not_post_toc_selected() {
        let mut toc =
            MarkdownTableOfContents::new(vec![(1, "Chapter".to_string(), "chapter".to_string())]);
        let msg = MessageEvent {
            sender: crate::node_id::NodeId::default(),
            message: Message::TreeNodeSelected(crate::message::TreeNodeSelected {
                index: 0,
                label: "Chapter".to_string(),
                data: Some("chapter".to_string()),
            }),
            control: None,
        };
        let mut ctx = crate::event::EventCtx::default();
        toc.on_message(&msg, &mut ctx);
        assert!(!ctx.handled());
        assert!(ctx.take_messages().is_empty());
    }

    #[test]
    fn parse_headings_generates_stable_slug_ids() {
        let headings = MarkdownViewer::parse_headings("# Hello World\n## Hello World\n## !!!\n");
        assert_eq!(headings[0].2, "hello-world");
        assert_eq!(headings[1].2, "hello-world-1");
        assert_eq!(headings[2].2, "section");
    }

    #[test]
    fn toc_tree_width_handles_long_h2_titles() {
        let content = "# Markdown Viewer\n\n## Features\n\n## Tables\n\n## Code Blocks\n\n## Litany Against Fear\n";
        let headings = MarkdownViewer::parse_headings(content);
        let tree = MarkdownTableOfContents::build_tree_from_headings(&headings);
        let expected = rich_rs::cell_len("└── Ⅱ Litany Against Fear");
        assert_eq!(tree.content_width(), Some(expected.max(1)));
    }

    #[test]
    fn viewer_toc_update_requests_layout_invalidation() {
        let mut viewer = MarkdownViewer::new("# Chapter");
        let msg = MessageEvent {
            sender: crate::node_id::NodeId::default(),
            message: Message::MarkdownTableOfContentsUpdated(MarkdownTableOfContentsUpdated {
                headings: vec![
                    (1, "Chapter".to_string(), "chapter".to_string()),
                    (2, "Section".to_string(), "section".to_string()),
                    (
                        2,
                        "Litany Against Fear".to_string(),
                        "litany-against-fear".to_string(),
                    ),
                ],
            }),
            control: None,
        };
        let mut ctx = crate::event::EventCtx::default();
        viewer.on_message(&msg, &mut ctx);
        assert!(
            ctx.invalidation().layout,
            "MarkdownViewer must invalidate layout when TOC headings change"
        );
    }

    #[test]
    fn viewer_toc_selected_posts_scrollbar_scroll_to() {
        let mut viewer = MarkdownViewer::new("# First\n\n## Second");
        // Ensure heading offsets are initialized from current content/layout assumptions.
        viewer.on_layout(80, 24);

        let msg = MessageEvent {
            sender: crate::node_id::NodeId::default(),
            message: Message::MarkdownTableOfContentsSelected(MarkdownTableOfContentsSelected {
                block_id: "second".to_string(),
            }),
            control: None,
        };
        let mut ctx = crate::event::EventCtx::default();
        viewer.on_message(&msg, &mut ctx);
        assert!(ctx.handled());
        let messages = ctx.take_messages();
        assert!(
            messages.iter().any(|m| matches!(
                &m.message,
                Message::ScrollbarScrollTo(ScrollbarScrollTo {
                    axis: ScrollbarAxis::Vertical,
                    offset: _,
                    animate: true,
                    ..
                })
            )),
            "TOC selection should route through ScrollbarScrollTo for synchronized content+thumb scroll"
        );
    }

    // ── Shared markup + content propagation tests ─────────────────────────

    #[test]
    fn shared_markup_syncs_on_layout() {
        let shared = Arc::new(RwLock::new("# Hello".to_string()));
        let mut md = Markdown::with_shared_markup(shared.clone());
        let initial_height = md.layout_height().unwrap_or_default();
        assert!(initial_height > 0);

        // Update shared content to something taller.
        *shared.write().unwrap() = "# Line1\n\n# Line2\n\n# Line3".to_string();

        // Before on_layout, markup is still old.
        assert_eq!(md.layout_height(), Some(initial_height));
        assert_eq!(md.extract_headings().len(), 1);

        // on_layout triggers sync.
        md.on_layout(40, 10);
        assert_eq!(md.extract_headings().len(), 3);
        assert!(md.layout_height().unwrap_or_default() > 0);
    }

    #[test]
    fn viewer_go_updates_shared_markup() {
        let mut viewer = MarkdownViewer::new("initial");
        viewer.register_content("demo.md", "# Demo\n\nParagraph\n\nMore text");

        viewer.go("demo.md");

        // The shared markup should now contain the new content.
        let shared_content = viewer.shared_markup.read().unwrap().clone();
        assert_eq!(shared_content, "# Demo\n\nParagraph\n\nMore text");
    }

    #[test]
    fn viewer_go_updates_shared_headings() {
        let mut viewer = MarkdownViewer::new("initial");
        viewer.register_content("demo.md", "# Demo\n\n## Child");

        viewer.go("demo.md");

        let headings = viewer.shared_headings.read().unwrap().clone();
        assert_eq!(headings.len(), 2);
        assert_eq!(headings[0].2, "demo");
        assert_eq!(headings[1].2, "child");
    }

    #[test]
    fn viewer_back_forward_updates_shared_markup() {
        let mut viewer = MarkdownViewer::new("initial");
        viewer.register_content("a.md", "# Page A");
        viewer.register_content("b.md", "# Page B");

        viewer.go("a.md");
        viewer.go("b.md");
        assert_eq!(*viewer.shared_markup.read().unwrap(), "# Page B");

        viewer.back();
        assert_eq!(*viewer.shared_markup.read().unwrap(), "# Page A");

        viewer.forward();
        assert_eq!(*viewer.shared_markup.read().unwrap(), "# Page B");
    }

    #[test]
    fn viewer_scroll_viewport_size_delegates() {
        let viewer = MarkdownViewer::new("# Test");
        // Before any layout, viewport is 0×0 → None.
        assert_eq!(viewer.scroll_viewport_size(), None);
    }
}