raui_core/widget/component/containers/
tooltip_box.rsuse 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)
}