raui_core/widget/component/containers/
tooltip_box.rs

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
use crate::{
    make_widget, pre_hooks,
    props::Props,
    unpack_named_slots,
    widget::{
        component::{
            containers::{
                anchor_box::{pivot_box, use_anchor_box, AnchorProps, PivotBoxProps},
                content_box::content_box,
                portal_box::{portal_box, use_portals_container_relative_layout},
            },
            interactive::navigation::{use_nav_container_active, use_nav_item_active, NavSignal},
        },
        context::WidgetContext,
        node::WidgetNode,
        unit::area::AreaBoxNode,
    },
    PropsData,
};
use serde::{Deserialize, Serialize};

#[derive(PropsData, Debug, Default, Copy, Clone, Serialize, Deserialize)]
#[props_data(crate::props::PropsData)]
#[prefab(crate::Prefab)]
pub struct TooltipState {
    #[serde(default)]
    pub show: bool,
}

#[pre_hooks(use_nav_container_active, use_nav_item_active, use_anchor_box)]
pub fn use_tooltip_box(context: &mut WidgetContext) {
    context.life_cycle.change(|context| {
        for msg in context.messenger.messages {
            if let Some(msg) = msg.as_any().downcast_ref() {
                match msg {
                    NavSignal::Select(_) => {
                        let _ = context.state.write_with(TooltipState { show: true });
                    }
                    NavSignal::Unselect => {
                        let _ = context.state.write_with(TooltipState { show: false });
                    }
                    _ => {}
                }
            }
        }
    });
}

#[pre_hooks(use_tooltip_box)]
pub fn tooltip_box(mut context: WidgetContext) -> WidgetNode {
    let WidgetContext {
        id,
        idref,
        key,
        props,
        state,
        named_slots,
        ..
    } = context;
    unpack_named_slots!(named_slots => {content, tooltip});

    let TooltipState { show } = state.read_cloned_or_default();
    let anchor_state = state.read_cloned_or_default::<AnchorProps>();
    let pivot_props =
        Props::new(anchor_state).with(props.read_cloned_or_default::<PivotBoxProps>());

    let tooltip = if show {
        make_widget!(pivot_box)
            .key("pivot")
            .merge_props(pivot_props)
            .named_slot(
                "content",
                make_widget!(portal_box)
                    .key("portal")
                    .named_slot("content", tooltip),
            )
            .into()
    } else {
        WidgetNode::default()
    };

    let content = make_widget!(content_box)
        .key(key)
        .maybe_idref(idref.cloned())
        .merge_props(props.clone())
        .listed_slot(content)
        .listed_slot(tooltip)
        .into();

    AreaBoxNode {
        id: id.to_owned(),
        slot: Box::new(content),
    }
    .into()
}

#[pre_hooks(use_portals_container_relative_layout)]
pub fn portals_tooltip_box(mut context: WidgetContext) -> WidgetNode {
    tooltip_box(context)
}