Skip to main content

cranpose_ui/
text_field_focus.rs

1//! Focus manager for text fields.
2//!
3//! This module tracks which text field currently has focus, ensuring only one
4//! text field is focused at a time. When a new field requests focus, the
5//! previously focused field is automatically unfocused.
6//!
7//! O(1) key dispatch: The focused field's handler is stored for direct invocation,
8//! avoiding O(N) tree scans on every keystroke.
9
10use std::{
11    cell::{Cell, RefCell},
12    rc::{Rc, Weak},
13};
14
15use crate::key_event::KeyEvent;
16
17/// Snapshot of the focused text field's editable state for platform IMEs.
18///
19/// All offsets are UTF-8 byte offsets into `text`. Platform layers that talk
20/// to UTF-16 based IMEs (Android's `InputConnection`, web composition events)
21/// convert on their side of the boundary.
22#[derive(Clone, Debug, PartialEq, Eq)]
23pub struct ImeEditorState {
24    /// Full text content of the field.
25    pub text: String,
26    /// Selection start (min) in bytes. Equal to `selection_end` for a caret.
27    pub selection_start: usize,
28    /// Selection end (max) in bytes.
29    pub selection_end: usize,
30    /// Active composing (preedit) region in bytes, if any.
31    pub composition: Option<(usize, usize)>,
32    /// Whether the field is single-line (platforms use this to pick the
33    /// keyboard action, e.g. Android `IME_ACTION_DONE` vs newline).
34    pub single_line: bool,
35}
36
37/// Window-space caret geometry for the focused field, used by platforms whose
38/// native text input positions the caret by coordinates rather than key events
39/// (iOS `UITextInput`: spacebar-trackpad cursor movement and tap-to-position).
40/// All values are logical pixels in window space.
41#[derive(Clone, Debug, PartialEq)]
42pub struct ImeCaretGeometry {
43    /// Caret x for each character-boundary offset, in text order: entry `k` is
44    /// the caret after `k` characters, so `caret_xs.len() == chars + 1`.
45    pub caret_xs: Vec<f32>,
46    /// Top y of the (single) caret line.
47    pub top: f32,
48    /// Height of one line (the caret's height).
49    pub line_height: f32,
50}
51
52/// Handler trait for focused text field operations.
53/// Stored in focus module for O(1) key/clipboard dispatch.
54pub trait FocusedTextFieldHandler {
55    /// The composition node whose recorded draws show this field's caret and
56    /// selection. Focus changes and caret-blink flips schedule a scoped draw
57    /// repass on it — that state lives outside the draw-observation system,
58    /// so nothing else can name the stale node. `None` only for handlers with
59    /// no scene presence (test doubles, the platform no-op handler).
60    fn node_id(&self) -> Option<cranpose_core::NodeId> {
61        None
62    }
63    /// Handle a key event. Returns true if consumed.
64    fn handle_key(&self, event: &KeyEvent) -> bool;
65    /// Insert pasted text.
66    fn insert_text(&self, text: &str);
67    /// Delete text surrounding the cursor or selection.
68    fn delete_surrounding(&self, before_bytes: usize, after_bytes: usize);
69    /// Copy current selection. Returns None if nothing selected.
70    fn copy_selection(&self) -> Option<String>;
71    /// Cut current selection (copy + delete). Returns None if nothing selected.
72    fn cut_selection(&self) -> Option<String>;
73    /// Selects all the field's text (contextual-menu "Select all").
74    fn select_all(&self) {}
75    /// Set IME composition (preedit) state.
76    /// - `text`: The composition text being typed (empty string to clear,
77    ///   which *deletes* the preedit text)
78    /// - `cursor`: Optional cursor position within composition (start, end)
79    fn set_composition(&self, text: &str, cursor: Option<(usize, usize)>);
80    /// Finish the active composition, keeping the composed text as regular
81    /// committed text (Android `finishComposingText` semantics). No-op when
82    /// no composition is active.
83    fn finish_composition(&self) {}
84    /// Mark existing text as the composing region without changing it
85    /// (Android `setComposingRegion` semantics, used by autocorrect to
86    /// re-compose an already committed word). Offsets are UTF-8 bytes;
87    /// implementations clamp them to valid character boundaries.
88    fn set_composing_region(&self, start_bytes: usize, end_bytes: usize) {
89        let _ = (start_bytes, end_bytes);
90    }
91    /// Move the selection/caret to `[start_bytes, end_bytes)` without editing
92    /// text (Android `InputConnection.setSelection` semantics). Used by
93    /// Gboard's spacebar-swipe cursor control, which scrubs the caret by
94    /// repeatedly setting the selection. Offsets are UTF-8 bytes; implementations
95    /// clamp them to valid character boundaries.
96    fn set_selection(&self, start_bytes: usize, end_bytes: usize) {
97        let _ = (start_bytes, end_bytes);
98    }
99    /// Snapshot of the current editable state for platform IMEs
100    /// (`InputConnection` text queries, session seeding). `None` when the
101    /// handler cannot expose its state.
102    fn editor_state(&self) -> Option<ImeEditorState> {
103        None
104    }
105    /// Window-space caret geometry (see [`ImeCaretGeometry`]) for coordinate-based
106    /// platform text input. `None` when the handler cannot expose it (e.g. the
107    /// field has not been laid out yet).
108    fn caret_geometry(&self) -> Option<ImeCaretGeometry> {
109        None
110    }
111}
112
113pub(crate) struct TextFieldFocusState {
114    focused_field: RefCell<Option<Weak<RefCell<bool>>>>,
115    focused_handler: RefCell<Option<Rc<dyn FocusedTextFieldHandler>>>,
116    focused_modal_depth: Cell<usize>,
117}
118
119impl TextFieldFocusState {
120    pub(crate) fn new() -> Self {
121        Self {
122            focused_field: RefCell::new(None),
123            focused_handler: RefCell::new(None),
124            focused_modal_depth: Cell::new(0),
125        }
126    }
127
128    fn request_focus(
129        &self,
130        is_focused: Rc<RefCell<bool>>,
131        handler: Rc<dyn FocusedTextFieldHandler>,
132        modal_depth: usize,
133    ) {
134        let mut current = self.focused_field.borrow_mut();
135
136        if let Some(ref weak) = *current
137            && let Some(old_focused) = weak.upgrade()
138        {
139            *old_focused.borrow_mut() = false;
140        }
141
142        *is_focused.borrow_mut() = true;
143        *current = Some(Rc::downgrade(&is_focused));
144        *self.focused_handler.borrow_mut() = Some(handler);
145        self.focused_modal_depth.set(modal_depth);
146    }
147
148    fn clear_focus(&self) {
149        let mut current = self.focused_field.borrow_mut();
150
151        if let Some(ref weak) = *current
152            && let Some(focused) = weak.upgrade()
153        {
154            *focused.borrow_mut() = false;
155        }
156
157        *current = None;
158        *self.focused_handler.borrow_mut() = None;
159        self.focused_modal_depth.set(0);
160    }
161
162    fn focused_at_depth(&self, depth: usize) -> bool {
163        self.has_focused_field() && self.focused_modal_depth.get() == depth
164    }
165
166    fn has_focused_field(&self) -> bool {
167        if self.focused_field_is_live() {
168            return true;
169        }
170        self.clear_stale_focus();
171        false
172    }
173
174    fn focused_field_is_live(&self) -> bool {
175        self.focused_field
176            .borrow()
177            .as_ref()
178            .is_some_and(|weak| weak.upgrade().is_some())
179    }
180
181    fn clear_stale_focus(&self) {
182        let stale_node = self
183            .focused_handler
184            .borrow()
185            .as_ref()
186            .and_then(|handler| handler.node_id());
187        let had_entry = self.focused_field.borrow_mut().take().is_some();
188        if !had_entry {
189            return;
190        }
191        self.focused_handler.borrow_mut().take();
192        if let Some(node_id) = stale_node {
193            crate::schedule_draw_repass(node_id);
194        }
195        crate::cursor_animation::stop_cursor_blink();
196    }
197
198    fn focused_handler(&self) -> Option<Rc<dyn FocusedTextFieldHandler>> {
199        if !self.has_focused_field() {
200            return None;
201        }
202        self.focused_handler.borrow().as_ref().cloned()
203    }
204
205    fn dispatch_key_event(&self, event: &KeyEvent) -> bool {
206        if let Some(handler) = self.focused_handler() {
207            handler.handle_key(event)
208        } else {
209            false
210        }
211    }
212
213    fn dispatch_paste(&self, text: &str) -> bool {
214        if let Some(handler) = self.focused_handler() {
215            handler.insert_text(text);
216            true
217        } else {
218            false
219        }
220    }
221
222    fn dispatch_delete_surrounding(&self, before_bytes: usize, after_bytes: usize) -> bool {
223        if let Some(handler) = self.focused_handler() {
224            handler.delete_surrounding(before_bytes, after_bytes);
225            true
226        } else {
227            false
228        }
229    }
230
231    fn dispatch_copy(&self) -> Option<String> {
232        self.focused_handler()
233            .and_then(|handler| handler.copy_selection())
234    }
235
236    fn dispatch_cut(&self) -> Option<String> {
237        self.focused_handler()
238            .and_then(|handler| handler.cut_selection())
239    }
240
241    fn dispatch_select_all(&self) -> bool {
242        if let Some(handler) = self.focused_handler() {
243            handler.select_all();
244            true
245        } else {
246            false
247        }
248    }
249
250    fn dispatch_ime_preedit(&self, text: &str, cursor: Option<(usize, usize)>) -> bool {
251        if let Some(handler) = self.focused_handler() {
252            handler.set_composition(text, cursor);
253            true
254        } else {
255            false
256        }
257    }
258
259    fn dispatch_ime_finish_composing(&self) -> bool {
260        if let Some(handler) = self.focused_handler() {
261            handler.finish_composition();
262            true
263        } else {
264            false
265        }
266    }
267
268    fn dispatch_ime_set_composing_region(&self, start_bytes: usize, end_bytes: usize) -> bool {
269        if let Some(handler) = self.focused_handler() {
270            handler.set_composing_region(start_bytes, end_bytes);
271            true
272        } else {
273            false
274        }
275    }
276
277    fn dispatch_ime_set_selection(&self, start_bytes: usize, end_bytes: usize) -> bool {
278        if let Some(handler) = self.focused_handler() {
279            handler.set_selection(start_bytes, end_bytes);
280            true
281        } else {
282            false
283        }
284    }
285
286    fn focused_editor_state(&self) -> Option<ImeEditorState> {
287        self.focused_handler()
288            .and_then(|handler| handler.editor_state())
289    }
290
291    fn focused_caret_geometry(&self) -> Option<ImeCaretGeometry> {
292        self.focused_handler()
293            .and_then(|handler| handler.caret_geometry())
294    }
295}
296
297/// Requests focus for a text field composed at [`crate::modal::local_modal_depth`]
298/// `modal_depth`.
299///
300/// Refused (a no-op) when `modal_depth` is shallower than the modal depth
301/// that is open right now — a field behind an open dialog must not be
302/// able to steal focus from it. A field inside the innermost dialog (or
303/// outside any dialog, while none is open) has `modal_depth` equal to the
304/// current modal depth and is granted focus normally.
305///
306/// If another text field was previously focused, it will be unfocused first.
307/// The provided `is_focused` handle should be the field's focus state.
308/// The handler is stored for O(1) key dispatch.
309pub fn request_focus(
310    is_focused: Rc<RefCell<bool>>,
311    handler: Rc<dyn FocusedTextFieldHandler>,
312    modal_depth: usize,
313) {
314    if modal_depth < crate::modal::current_modal_depth() {
315        return;
316    }
317
318    let previous_field = focused_field_node();
319    let gaining_field = handler.node_id();
320
321    crate::render_state::with_text_field_focus(|state| {
322        state.request_focus(is_focused, handler, modal_depth)
323    });
324
325    for node_id in [previous_field, gaining_field].into_iter().flatten() {
326        crate::schedule_draw_repass(node_id);
327    }
328
329    crate::cursor_animation::start_cursor_blink();
330
331    crate::text_input_session::notify_text_input_focus_gained();
332
333    crate::request_render_invalidation();
334}
335
336pub(crate) fn clear_focus_for_closed_modal(depth: usize) {
337    let owns_focus =
338        crate::render_state::with_text_field_focus(|state| state.focused_at_depth(depth));
339    if owns_focus {
340        clear_focus();
341    }
342}
343
344/// Clears focus from the currently focused text field.
345pub fn clear_focus() {
346    if let Some(node_id) = focused_field_node() {
347        crate::schedule_draw_repass(node_id);
348    }
349    crate::render_state::with_text_field_focus(|state| state.clear_focus());
350
351    crate::cursor_animation::stop_cursor_blink();
352
353    crate::text_input_session::notify_text_input_focus_lost();
354
355    crate::request_render_invalidation();
356}
357
358/// Returns the composition node of the currently focused text field, if a
359/// field is focused and its handler knows its node.
360pub fn focused_field_node() -> Option<cranpose_core::NodeId> {
361    crate::render_state::with_text_field_focus(|state| {
362        state
363            .focused_handler()
364            .and_then(|handler| handler.node_id())
365    })
366}
367
368/// Returns true if any text field currently has focus.
369/// Checks weak ref liveness and clears stale focus state.
370pub fn has_focused_field() -> bool {
371    let has_focus = crate::render_state::with_text_field_focus(|state| state.has_focused_field());
372    if !has_focus {
373        crate::text_input_session::notify_text_input_focus_lost();
374    }
375    has_focus
376}
377
378/// Dispatches a key event to the focused text field. Returns true if consumed.
379/// O(1) operation using stored handler.
380pub fn dispatch_key_event(event: &KeyEvent) -> bool {
381    crate::render_state::with_text_field_focus(|state| state.dispatch_key_event(event))
382}
383
384/// Inserts text into the focused text field (paste operation).
385/// O(1) operation using stored handler.
386pub fn dispatch_paste(text: &str) -> bool {
387    crate::render_state::with_text_field_focus(|state| state.dispatch_paste(text))
388}
389
390/// Deletes text surrounding the cursor or selection.
391/// O(1) operation using stored handler.
392pub fn dispatch_delete_surrounding(before_bytes: usize, after_bytes: usize) -> bool {
393    crate::render_state::with_text_field_focus(|state| {
394        state.dispatch_delete_surrounding(before_bytes, after_bytes)
395    })
396}
397
398/// Copies selection from focused text field.
399/// O(1) operation using stored handler.
400pub fn dispatch_copy() -> Option<String> {
401    crate::render_state::with_text_field_focus(|state| state.dispatch_copy())
402}
403
404/// Cuts selection from focused text field (copy + delete).
405/// O(1) operation using stored handler.
406pub fn dispatch_cut() -> Option<String> {
407    crate::render_state::with_text_field_focus(|state| state.dispatch_cut())
408}
409
410/// Selects all the text in the focused text field (contextual-menu "Select
411/// all"). Returns true if a text field was focused.
412pub fn dispatch_select_all() -> bool {
413    crate::render_state::with_text_field_focus(|state| state.dispatch_select_all())
414}
415
416/// Dispatches IME preedit (composition) state to the focused text field.
417/// O(1) operation using stored handler.
418/// Returns true if a text field was focused and received the event.
419pub fn dispatch_ime_preedit(text: &str, cursor: Option<(usize, usize)>) -> bool {
420    crate::render_state::with_text_field_focus(|state| state.dispatch_ime_preedit(text, cursor))
421}
422
423/// Finishes the active composition in the focused text field, keeping the
424/// composed text (Android `finishComposingText` semantics).
425/// Returns true if a text field was focused and received the event.
426pub fn dispatch_ime_finish_composing() -> bool {
427    crate::render_state::with_text_field_focus(|state| state.dispatch_ime_finish_composing())
428}
429
430/// Marks existing text in the focused field as the composing region without
431/// changing it (Android `setComposingRegion` semantics).
432/// Returns true if a text field was focused and received the event.
433pub fn dispatch_ime_set_composing_region(start_bytes: usize, end_bytes: usize) -> bool {
434    crate::render_state::with_text_field_focus(|state| {
435        state.dispatch_ime_set_composing_region(start_bytes, end_bytes)
436    })
437}
438
439/// Moves the focused field's selection/caret to `[start_bytes, end_bytes)`
440/// without editing text (Android `setSelection` semantics; the path Gboard's
441/// spacebar-swipe uses to scrub the cursor).
442/// Returns true if a text field was focused and received the event.
443pub fn dispatch_ime_set_selection(start_bytes: usize, end_bytes: usize) -> bool {
444    crate::render_state::with_text_field_focus(|state| {
445        state.dispatch_ime_set_selection(start_bytes, end_bytes)
446    })
447}
448
449/// Returns a snapshot of the focused text field's editable state for
450/// platform IMEs, or `None` when no field is focused (or the handler does
451/// not expose its state).
452pub fn focused_editor_state() -> Option<ImeEditorState> {
453    crate::render_state::with_text_field_focus(|state| state.focused_editor_state())
454}
455
456/// Window-space caret geometry of the focused field (see [`ImeCaretGeometry`]),
457/// or `None` when no field is focused or it exposes no geometry.
458pub fn focused_caret_geometry() -> Option<ImeCaretGeometry> {
459    crate::render_state::with_text_field_focus(|state| state.focused_caret_geometry())
460}
461
462#[cfg(test)]
463mod tests {
464    use super::*;
465
466    struct MockHandler;
467    impl FocusedTextFieldHandler for MockHandler {
468        fn handle_key(&self, _: &KeyEvent) -> bool {
469            false
470        }
471        fn insert_text(&self, _: &str) {}
472        fn delete_surrounding(&self, _: usize, _: usize) {}
473        fn copy_selection(&self) -> Option<String> {
474            None
475        }
476        fn cut_selection(&self) -> Option<String> {
477            None
478        }
479        fn set_composition(&self, _: &str, _: Option<(usize, usize)>) {}
480    }
481
482    fn mock_handler() -> Rc<dyn FocusedTextFieldHandler> {
483        Rc::new(MockHandler)
484    }
485
486    struct NodeBackedHandler(cranpose_core::NodeId);
487    impl FocusedTextFieldHandler for NodeBackedHandler {
488        fn node_id(&self) -> Option<cranpose_core::NodeId> {
489            Some(self.0)
490        }
491        fn handle_key(&self, _: &KeyEvent) -> bool {
492            false
493        }
494        fn insert_text(&self, _: &str) {}
495        fn delete_surrounding(&self, _: usize, _: usize) {}
496        fn copy_selection(&self) -> Option<String> {
497            None
498        }
499        fn cut_selection(&self) -> Option<String> {
500            None
501        }
502        fn set_composition(&self, _: &str, _: Option<(usize, usize)>) {}
503    }
504
505    #[test]
506    fn focus_transitions_schedule_scoped_draw_repasses_on_both_fields() {
507        let _app_context = crate::render_state::app_context_test_scope();
508        let _ = crate::render_state::take_draw_repass_nodes();
509
510        let first = Rc::new(RefCell::new(false));
511        request_focus(first.clone(), Rc::new(NodeBackedHandler(7)), 0);
512        assert!(
513            crate::render_state::take_draw_repass_nodes().contains(&7),
514            "gaining focus must re-record the gaining field's draws"
515        );
516
517        let second = Rc::new(RefCell::new(false));
518        request_focus(second.clone(), Rc::new(NodeBackedHandler(9)), 0);
519        let repasses = crate::render_state::take_draw_repass_nodes();
520        assert!(
521            repasses.contains(&7) && repasses.contains(&9),
522            "a focus hand-off must re-record both fields, got {repasses:?}"
523        );
524
525        clear_focus();
526        assert!(
527            crate::render_state::take_draw_repass_nodes().contains(&9),
528            "losing focus must re-record the field that had the caret"
529        );
530    }
531
532    #[test]
533    fn a_blink_transition_schedules_a_scoped_repass_on_the_focused_field() {
534        let _app_context = crate::render_state::app_context_test_scope();
535        let focus = Rc::new(RefCell::new(false));
536        request_focus(focus.clone(), Rc::new(NodeBackedHandler(21)), 0);
537        let _ = crate::render_state::take_draw_repass_nodes();
538
539        let past_interval = web_time::Instant::now()
540            + crate::cursor_animation::CursorAnimationState::BLINK_INTERVAL
541            + std::time::Duration::from_millis(1);
542        assert!(
543            crate::cursor_animation::tick_cursor_blink_at(past_interval),
544            "the tick past the interval must flip visibility"
545        );
546        assert!(
547            crate::render_state::take_draw_repass_nodes().contains(&21),
548            "the flip must re-record the focused field's draws"
549        );
550        clear_focus();
551    }
552
553    #[test]
554    fn request_focus_sets_flag() {
555        let _app_context = crate::render_state::app_context_test_scope();
556        let focus = Rc::new(RefCell::new(false));
557        request_focus(focus.clone(), mock_handler(), 0);
558        assert!(*focus.borrow());
559        clear_focus();
560    }
561
562    #[test]
563    fn request_focus_clears_previous() {
564        let _app_context = crate::render_state::app_context_test_scope();
565        let focus1 = Rc::new(RefCell::new(false));
566        let focus2 = Rc::new(RefCell::new(false));
567
568        request_focus(focus1.clone(), mock_handler(), 0);
569        assert!(*focus1.borrow());
570
571        request_focus(focus2.clone(), mock_handler(), 0);
572        assert!(!*focus1.borrow());
573        assert!(*focus2.borrow());
574        clear_focus();
575    }
576
577    #[test]
578    fn clear_focus_unfocuses_current() {
579        let _app_context = crate::render_state::app_context_test_scope();
580        let focus = Rc::new(RefCell::new(false));
581        request_focus(focus.clone(), mock_handler(), 0);
582        assert!(*focus.borrow());
583
584        clear_focus();
585        assert!(!*focus.borrow());
586    }
587
588    #[derive(Default)]
589    struct DispatchRecordingHandler {
590        key_count: Cell<usize>,
591        insert_count: Cell<usize>,
592        delete_count: Cell<usize>,
593        copy_count: Cell<usize>,
594        cut_count: Cell<usize>,
595        preedit_count: Cell<usize>,
596        last_delete: Cell<Option<(usize, usize)>>,
597    }
598
599    impl DispatchRecordingHandler {
600        fn bump(cell: &Cell<usize>) {
601            cell.set(cell.get() + 1);
602        }
603
604        fn total_calls(&self) -> usize {
605            self.key_count.get()
606                + self.insert_count.get()
607                + self.delete_count.get()
608                + self.copy_count.get()
609                + self.cut_count.get()
610                + self.preedit_count.get()
611        }
612    }
613
614    impl FocusedTextFieldHandler for DispatchRecordingHandler {
615        fn handle_key(&self, _: &KeyEvent) -> bool {
616            Self::bump(&self.key_count);
617            true
618        }
619
620        fn insert_text(&self, _: &str) {
621            Self::bump(&self.insert_count);
622        }
623
624        fn delete_surrounding(&self, before_bytes: usize, after_bytes: usize) {
625            Self::bump(&self.delete_count);
626            self.last_delete.set(Some((before_bytes, after_bytes)));
627        }
628
629        fn copy_selection(&self) -> Option<String> {
630            Self::bump(&self.copy_count);
631            Some("copy".to_string())
632        }
633
634        fn cut_selection(&self) -> Option<String> {
635            Self::bump(&self.cut_count);
636            Some("cut".to_string())
637        }
638
639        fn set_composition(&self, _: &str, _: Option<(usize, usize)>) {
640            Self::bump(&self.preedit_count);
641        }
642    }
643
644    #[test]
645    fn dispatch_delete_surrounding_calls_handler() {
646        let _app_context = crate::render_state::app_context_test_scope();
647        let focus = Rc::new(RefCell::new(false));
648        let handler = Rc::new(DispatchRecordingHandler::default());
649
650        request_focus(Rc::clone(&focus), handler.clone(), 0);
651        assert!(dispatch_delete_surrounding(3, 1));
652        assert_eq!(handler.last_delete.get(), Some((3, 1)));
653
654        clear_focus();
655    }
656
657    #[test]
658    fn dispatch_clears_stale_focus_owner_before_invoking_handler() {
659        let _app_context = crate::render_state::app_context_test_scope();
660        let handler = Rc::new(DispatchRecordingHandler::default());
661
662        {
663            let focus = Rc::new(RefCell::new(false));
664            request_focus(Rc::clone(&focus), handler.clone(), 0);
665            assert!(has_focused_field());
666        }
667
668        let key_event = KeyEvent::key_down(crate::key_event::KeyCode::A, "a");
669
670        assert!(!dispatch_key_event(&key_event));
671        assert!(!dispatch_paste("stale paste"));
672        assert!(!dispatch_delete_surrounding(2, 1));
673        assert_eq!(dispatch_copy(), None);
674        assert_eq!(dispatch_cut(), None);
675        assert!(!dispatch_ime_preedit("preedit", Some((1, 1))));
676        assert!(!has_focused_field());
677        assert_eq!(
678            handler.total_calls(),
679            0,
680            "stale focused-field handlers must not receive input"
681        );
682    }
683
684    #[test]
685    fn stale_focus_cleanup_after_hidden_blink_does_not_reenter_the_focus_registry_borrow() {
686        let _app_context = crate::render_state::app_context_test_scope();
687
688        let focus = Rc::new(RefCell::new(false));
689        request_focus(focus.clone(), Rc::new(NodeBackedHandler(3)), 0);
690
691        let past_interval = web_time::Instant::now()
692            + crate::cursor_animation::CursorAnimationState::BLINK_INTERVAL
693            + std::time::Duration::from_millis(1);
694        assert!(
695            crate::cursor_animation::tick_cursor_blink_at(past_interval),
696            "the blink must already have toggled to hidden, matching the real \
697             timing where the bug's stop_cursor_blink() call is a visibility \
698             change and therefore reaches invalidate_focused_caret()"
699        );
700
701        drop(focus);
702
703        assert!(
704            !has_focused_field(),
705            "a field dropped without clear_focus must read back as unfocused \
706             instead of panicking on a reentrant borrow of focused_field"
707        );
708    }
709
710    #[test]
711    fn stale_focus_cleanup_repasses_the_node_that_lost_its_caret() {
712        let _app_context = crate::render_state::app_context_test_scope();
713        let _ = crate::render_state::take_draw_repass_nodes();
714
715        let focus = Rc::new(RefCell::new(false));
716        request_focus(focus.clone(), Rc::new(NodeBackedHandler(11)), 0);
717        let _ = crate::render_state::take_draw_repass_nodes();
718
719        drop(focus);
720
721        assert!(!has_focused_field());
722        assert!(
723            crate::render_state::take_draw_repass_nodes().contains(&11),
724            "discovering a stale field lazily must repass its node just like \
725             an explicit clear_focus does, or its caret is left stale on screen"
726        );
727    }
728
729    #[derive(Default)]
730    struct KeyboardProbe {
731        calls: RefCell<Vec<&'static str>>,
732    }
733
734    impl crate::text_input_session::PlatformTextInputHandler for KeyboardProbe {
735        fn show_keyboard(&self) {
736            self.calls.borrow_mut().push("show");
737        }
738
739        fn hide_keyboard(&self) {
740            self.calls.borrow_mut().push("hide");
741        }
742    }
743
744    #[test]
745    fn focus_transitions_drive_platform_keyboard() {
746        let _app_context = crate::render_state::app_context_test_scope();
747        let keyboard = Rc::new(KeyboardProbe::default());
748        crate::text_input_session::set_platform_text_input_handler(keyboard.clone());
749
750        let focus = Rc::new(RefCell::new(false));
751        request_focus(focus.clone(), mock_handler(), 0);
752        assert_eq!(*keyboard.calls.borrow(), vec!["show"]);
753
754        request_focus(focus, mock_handler(), 0);
755        assert_eq!(*keyboard.calls.borrow(), vec!["show", "show"]);
756
757        clear_focus();
758        assert_eq!(*keyboard.calls.borrow(), vec!["show", "show", "hide"]);
759    }
760
761    #[test]
762    fn stale_focus_detection_hides_platform_keyboard() {
763        let _app_context = crate::render_state::app_context_test_scope();
764        let keyboard = Rc::new(KeyboardProbe::default());
765        crate::text_input_session::set_platform_text_input_handler(keyboard.clone());
766
767        {
768            let focus = Rc::new(RefCell::new(false));
769            request_focus(focus, mock_handler(), 0);
770        }
771
772        assert!(!has_focused_field());
773        assert_eq!(*keyboard.calls.borrow(), vec!["show", "hide"]);
774
775        assert!(!has_focused_field());
776        assert_eq!(*keyboard.calls.borrow(), vec!["show", "hide"]);
777    }
778
779    #[test]
780    fn text_field_focus_is_scoped_by_app_context() {
781        let _app_context = crate::render_state::app_context_test_scope();
782        let first = crate::render_state::AppContext::new_with_density(1.0);
783        let second = crate::render_state::AppContext::new_with_density(1.0);
784        let first_focus = Rc::new(RefCell::new(false));
785        let second_focus = Rc::new(RefCell::new(false));
786
787        first.enter(|| {
788            request_focus(first_focus.clone(), mock_handler(), 0);
789            assert!(has_focused_field());
790            assert!(*first_focus.borrow());
791        });
792
793        second.enter(|| {
794            assert!(!has_focused_field());
795            request_focus(second_focus.clone(), mock_handler(), 0);
796            assert!(has_focused_field());
797            assert!(*second_focus.borrow());
798        });
799
800        first.enter(|| {
801            assert!(has_focused_field());
802            assert!(*first_focus.borrow());
803            clear_focus();
804            assert!(!has_focused_field());
805            assert!(!*first_focus.borrow());
806        });
807
808        second.enter(|| {
809            assert!(has_focused_field());
810            assert!(*second_focus.borrow());
811            clear_focus();
812        });
813    }
814}