raui_core/widget/component/containers/
context_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
use crate::{
    make_widget, pre_hooks, unpack_named_slots,
    widget::{
        component::containers::{
            anchor_box::{pivot_to_anchor_and_align, use_anchor_box, AnchorProps, PivotBoxProps},
            content_box::content_box,
            portal_box::{portal_box, use_portals_container_relative_layout},
        },
        context::WidgetContext,
        node::WidgetNode,
        unit::{area::AreaBoxNode, content::ContentBoxItemLayout},
        utils::{Rect, Vec2},
    },
    PropsData,
};
use serde::{Deserialize, Serialize};

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

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

    let ContextBoxProps { show } = props.read_cloned_or_default();
    let anchor_state = state.read_cloned_or_default::<AnchorProps>();
    let pivot_props = props.read_cloned_or_default::<PivotBoxProps>();
    let (Vec2 { x, y }, align) = pivot_to_anchor_and_align(&pivot_props, &anchor_state);

    let context = if show {
        context.remap_props(|content_props| {
            let mut item_props = content_props.read_cloned_or_default::<ContentBoxItemLayout>();
            item_props.anchors = Rect {
                left: x,
                right: x,
                top: y,
                bottom: y,
            };
            item_props.align = align;
            content_props.with(item_props)
        });

        make_widget!(portal_box)
            .named_slot(
                "content",
                make_widget!(content_box)
                    .key("content")
                    .listed_slot(backdrop)
                    .listed_slot(context),
            )
            .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(context)
        .into();

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

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