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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
use dioxus::prelude::*;
use dioxus_native_core::NodeId;
use freya_components::*;
use freya_elements::elements as dioxus_elements;

use crate::{hooks::use_selected_node, NodeInspectorBar};

#[allow(non_snake_case)]
#[inline_props]
pub fn NodeInspectorLayout(cx: Scope, node_id: NodeId) -> Element {
    let node = use_selected_node(cx, &node_id).unwrap();

    let inner_area = format!(
        "{}x{}",
        node.areas.inner_area.width(),
        node.areas.inner_area.height()
    );
    let area = format!("{}x{}", node.areas.area.width(), node.areas.area.height());
    let paddings = node.state.size.padding;

    render!(
        rect {
            overflow: "clip",
            width: "100%",
            height: "50%",
            NodeInspectorBar {
                node_id: *node_id
            }
            ScrollView {
                show_scrollbar: true,
                height: "calc(100% - 35)",
                width: "100%",
                rect {
                    width: "100%",
                    height: "200",
                    padding: "20",
                    label {
                        height: "25",
                        "Area: {area}"
                    }
                    rect {
                        width: "100%",
                        height: "calc(100% - 25)",
                        display: "center",
                        direction: "both",
                        background: "rgb(40, 40, 40)",
                        rect {
                            width: "100%",
                            height: "100%",
                            background: "rgb(71, 180, 240)",
                            corner_radius: "5",
                            rect {
                                direction: "both",
                                display: "center",
                                width: "100%",
                                height: "25",
                                label {
                                    width: "100%",
                                    align: "center",
                                    "{paddings.top()}"
                                }
                            }
                            rect {
                                width: "100%",
                                height: "calc(100% - 50)",
                                direction: "horizontal",
                                rect {
                                    direction: "vertical",
                                    display: "center",
                                    width: "25",
                                    height: "100%",
                                    label {
                                        width: "100%",
                                        align: "center",
                                        "{paddings.left()}"
                                    }
                                }
                                rect {
                                    width: "calc(100% - 50)",
                                    height: "100%",
                                    display: "center",
                                    direction: "both",
                                    background: "rgb(40, 40, 40)",
                                    corner_radius: "5",
                                    label {
                                        "{inner_area}"
                                    }
                                }
                                rect {
                                    direction: "vertical",
                                    display: "center",
                                    width: "25",
                                    height: "100%",
                                    label {
                                        width: "100%",
                                        align: "center",
                                        "{paddings.right()}"
                                    }
                                }
                            }
                            rect {
                                direction: "both",
                                display: "center",
                                width: "100%",
                                height: "25",
                                label {
                                    width: "100%",
                                    align: "center",
                                    "{paddings.bottom()}"
                                }
                            }
                        }
                    }
                }
            }
        }
    )
}