zen_rs/components/
container.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
//! Container component

use crate::aspects::{Align, BackgroundColor, Border, Gap, Height, Order, Padding, Width};

use super::Components;

/// Returns a default [Container] instance.
pub fn container() -> Container {
    Container::default()
}

#[derive(Debug, Default, Clone, PartialEq, PartialOrd)]
/// Represents a container with customizable aspects like size, color, border, and alignment.
pub struct Container {
    /// Components contained within the container.
    components: Vec<Components>,
    /// Background color of the container.
    background_color: BackgroundColor,
    /// Width of the container.
    width: Width,
    /// Whether the container should occupy the full width.
    is_width_full: bool,
    /// Height of the container.
    height: Height,
    /// Whether the container should occupy the full height.
    is_height_full: bool,
    /// Border properties of the container.
    border: Border,
    /// Layout direction of components within the container.
    direction: Order,
    /// Gap between components in the container.
    gap: Gap,
    /// Padding inside the container.
    padding: Padding,
    /// Whether the container uses flexible layout.
    is_flex: bool,
    /// Alignment of content within the container.
    align_content: Align,
    /// Alignment of individual items within the container.
    align_items: Align,
}

impl Container {
    /// Adds a single component to the container.
    pub fn component(mut self, component: impl Into<Components>) -> Self {
        self.components.push(component.into());
        self
    }

    /// Adds multiple components to the container.
    /// **note** at once can be added only 1 type of object
    pub fn components(mut self, components: Vec<impl Into<Components>>) -> Self {
        self.components
            .append(&mut components.into_iter().map(|x| x.into()).collect());
        self
    }

    /// Retrieves all components in the container.
    pub fn get_components(&self) -> &[Components] {
        &self.components
    }

    /// Sets the gap between components in the container.
    pub fn gap(mut self, gap: Gap) -> Self {
        self.gap = gap;
        self
    }

    /// Sets the padding inside the container.
    pub fn padding(mut self, padding: Padding) -> Self {
        self.padding = padding;
        self
    }

    /// Retrieves the gap setting of the container.
    pub fn get_gap(&self) -> &Gap {
        &self.gap
    }

    /// Retrieves the padding setting of the container.
    pub fn get_padding(&self) -> &Padding {
        &self.padding
    }

    /// Sets the background color of the container.
    pub fn background_color(mut self, background_color: BackgroundColor) -> Self {
        self.background_color = background_color;
        self
    }

    /// Sets the width of the container.
    pub fn width(mut self, width: Width) -> Self {
        self.width = width;
        self
    }

    /// Sets the height of the container.
    pub fn height(mut self, height: Height) -> Self {
        self.height = height;
        self
    }

    /// Toggles whether the container occupies the full width.
    pub fn width_full(mut self) -> Self {
        self.is_width_full = !self.is_width_full;
        self
    }

    /// Toggles whether the container occupies the full height.
    pub fn height_full(mut self) -> Self {
        self.is_height_full = !self.is_height_full;
        self
    }

    /// Sets the border properties of the container.
    pub fn border(mut self, border: Border) -> Self {
        self.border = border;
        self
    }

    /// Sets the layout direction of components in the container.
    pub fn direction(mut self, direction: Order) -> Self {
        self.direction = direction;
        self
    }

    /// Toggles whether the container uses flexible layout.
    pub fn flex(mut self) -> Self {
        self.is_flex = !self.is_flex;
        self
    }

    /// Sets the alignment of content within the container.
    pub fn align_content(mut self, align_content: Align) -> Self {
        self.align_content = align_content;
        self
    }

    /// Sets the alignment of individual items within the container.
    pub fn align_items(mut self, align_items: Align) -> Self {
        self.align_items = align_items;
        self
    }

    /// Retrieves the flexible layout setting of the container.
    pub fn get_flex(&self) -> &bool {
        &self.is_flex
    }

    /// Retrieves the full-width setting of the container.
    pub fn get_width_full(&self) -> &bool {
        &self.is_width_full
    }

    /// Retrieves the full-height setting of the container.
    pub fn get_height_full(&self) -> &bool {
        &self.is_height_full
    }

    /// Retrieves the alignment of content within the container.
    pub fn get_align_content(&self) -> &Align {
        &self.align_content
    }

    /// Retrieves the alignment of items within the container.
    pub fn get_align_items(&self) -> &Align {
        &self.align_items
    }

    /// Retrieves the background color of the container.
    pub fn get_background_color(&self) -> &(u8, u8, u8, u8) {
        &self.background_color
    }

    /// Retrieves the width of the container.
    pub fn get_width(&self) -> &u64 {
        &self.width
    }

    /// Retrieves the height of the container.
    pub fn get_height(&self) -> &u64 {
        &self.height
    }

    /// Retrieves the border properties of the container.
    pub fn get_border(&self) -> &(u64, (u8, u8, u8, u8), u64) {
        &self.border
    }

    /// Retrieves the layout direction of the container.
    pub fn get_direction(&self) -> &Order {
        &self.direction
    }
}