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::{
    pre_hooks, unpack_named_slots, widget,
    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)
        });

        widget! {
            (#{"portal"} portal_box {
                content = (#{"content"} content_box [
                    {backdrop}
                    {context}
                ])
            })
        }
    } else {
        widget! {()}
    };

    let content = widget! {
        (#{key} | {idref.cloned()} content_box: {props.clone()} [
            {content}
            {context}
        ])
    };

    widget! {{{
        AreaBoxNode {
            id: id.to_owned(),
            slot: Box::new(content),
            renderer_effect: None,
        }
    }}}
}

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