raui_core/widget/component/containers/
vertical_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
use crate::{
    make_widget, pre_hooks,
    widget::{
        component::{
            containers::flex_box::{flex_box, FlexBoxProps},
            interactive::navigation::{
                use_nav_container_active, use_nav_item, use_nav_jump_vertical_step_active,
                NavContainerActive, NavItemActive, NavJumpActive,
            },
        },
        context::WidgetContext,
        node::WidgetNode,
        unit::flex::{FlexBoxDirection, FlexBoxItemLayout},
        utils::Transform,
    },
    PropsData, Scalar,
};
use serde::{Deserialize, Serialize};

#[derive(PropsData, Debug, Default, Clone, Serialize, Deserialize)]
#[props_data(crate::props::PropsData)]
#[prefab(crate::Prefab)]
pub struct VerticalBoxProps {
    #[serde(default)]
    pub separation: Scalar,
    #[serde(default)]
    pub reversed: bool,
    #[serde(default)]
    pub override_slots_layout: Option<FlexBoxItemLayout>,
    #[serde(default)]
    pub transform: Transform,
}

#[pre_hooks(
    use_nav_container_active,
    use_nav_jump_vertical_step_active,
    use_nav_item
)]
pub fn nav_vertical_box(mut context: WidgetContext) -> WidgetNode {
    let WidgetContext {
        key,
        props,
        listed_slots,
        ..
    } = context;

    let props = props
        .clone()
        .without::<NavContainerActive>()
        .without::<NavJumpActive>()
        .without::<NavItemActive>();

    make_widget!(vertical_box)
        .key(key)
        .merge_props(props)
        .listed_slots(listed_slots)
        .into()
}

pub fn vertical_box(context: WidgetContext) -> WidgetNode {
    let WidgetContext {
        key,
        props,
        mut listed_slots,
        ..
    } = context;

    let VerticalBoxProps {
        separation,
        reversed,
        override_slots_layout,
        transform,
    } = props.read_cloned_or_default();

    if let Some(layout) = override_slots_layout {
        for slot in &mut listed_slots {
            if let Some(props) = slot.props_mut() {
                props.write(layout.to_owned());
            }
        }
    }

    let props = props.clone().with(FlexBoxProps {
        direction: if reversed {
            FlexBoxDirection::VerticalBottomToTop
        } else {
            FlexBoxDirection::VerticalTopToBottom
        },
        separation,
        wrap: false,
        transform,
    });

    make_widget!(flex_box)
        .key(key)
        .merge_props(props)
        .listed_slots(listed_slots)
        .into()
}