freya_components/
table.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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
use dioxus::prelude::*;
use freya_elements::{
    self as dioxus_elements,
    events::MouseEvent,
};
use freya_hooks::{
    use_applied_theme,
    FontTheme,
    TableTheme,
    TableThemeWith,
};

use crate::icons::ArrowIcon;

#[allow(non_snake_case)]
#[component]
fn TableArrow(order_direction: OrderDirection) -> Element {
    let TableTheme { arrow_fill, .. } = use_applied_theme!(None, table);
    let rotate = match order_direction {
        OrderDirection::Down => "0",
        OrderDirection::Up => "180",
    };

    rsx!(ArrowIcon {
        rotate: "{rotate}",
        fill: "{arrow_fill}"
    })
}

/// Properties for the [`TableHead`] component.
#[derive(Props, Clone, PartialEq)]
pub struct TableHeadProps {
    /// The content of this table head.
    pub children: Element,
}

/// The head of a [`Table`]. Use [`TableRow`] inside.
#[allow(non_snake_case)]
pub fn TableHead(TableHeadProps { children }: TableHeadProps) -> Element {
    rsx!(
        rect { width: "100%", {children} }
    )
}

/// Properties for the [`TableBody`] component.
#[derive(Props, Clone, PartialEq)]
pub struct TableBodyProps {
    /// The content of this table body.
    pub children: Element,
}

/// The body of a [`Table`].
#[allow(non_snake_case)]
pub fn TableBody(TableBodyProps { children }: TableBodyProps) -> Element {
    rsx!(
        rect { width: "100%", {children} }
    )
}

#[derive(PartialEq, Clone, Copy)]
enum TableRowState {
    Idle,
    Hovering,
}

/// Properties for the [`TableRow`] component.
#[derive(Props, Clone, PartialEq)]
pub struct TableRowProps {
    /// Theme override.
    pub theme: Option<TableThemeWith>,
    /// The content of this row.
    children: Element,
}

/// Table row for [`Table`]. Use [`TableCell`] inside.
///
/// # Styling
/// Inherits the [`TableTheme`](freya_hooks::TableTheme) theme.
#[allow(non_snake_case)]
pub fn TableRow(TableRowProps { theme, children }: TableRowProps) -> Element {
    let theme = use_applied_theme!(&theme, table);
    let mut state = use_signal(|| TableRowState::Idle);
    let TableTheme {
        divider_fill,
        hover_row_background,
        row_background,
        ..
    } = theme;
    let background = if state() == TableRowState::Hovering {
        hover_row_background
    } else {
        row_background
    };

    rsx!(
        rect {
            onmouseenter: move |_| state.set(TableRowState::Hovering),
            onmouseleave: move |_| state.set(TableRowState::Idle),
            direction: "horizontal",
            width: "fill",
            background: "{background}",
            {children}
        }
        rect {
            height: "1",
            width: "fill",
            background: "{divider_fill}"
        }
    )
}

/// Sorting direction for items in [`Table`].
#[derive(Clone, Copy, PartialEq, Debug, Default)]
pub enum OrderDirection {
    /// Alternatively: descending.
    Up,
    /// Alternatively: ascending.
    #[default]
    Down,
}

/// Properties for the [`TableCell`] component.
#[derive(Props, Clone, PartialEq)]
pub struct TableCellProps {
    /// The content of this cell.
    pub children: Element,
    /// Handler for the `onpress` event.
    pub onpress: Option<EventHandler<MouseEvent>>,
    /// The direction in which this TableCell's column will be ordered.
    ///
    /// **This is only a visual change (it changes the icon), you need to sort stuff yourself.**
    #[props(into)]
    pub order_direction: Option<Option<OrderDirection>>,
    /// The padding of the cell.
    #[props(default = "5 25".to_string(), into)]
    pub padding: String,
    /// The height of the cell.
    #[props(default = "35".to_string(), into)]
    pub height: String,
}

/// Cell for a [`Table`]. You can place anything inside.
#[allow(non_snake_case)]
pub fn TableCell(props: TableCellProps) -> Element {
    let config = consume_context::<TableConfig>();
    let width = 100.0 / config.columns as f32;
    let TableCellProps {
        children,
        order_direction,
        padding,
        height,
        ..
    } = &props;

    rsx!(
        rect {
            overflow: "clip",
            padding: "{padding}",
            width: "{width}%",
            main_align: "end",
            cross_align: "center",
            height: "{height}",
            direction: "horizontal",
            onclick: move |e| {
                if let Some(onpress) = &props.onpress {
                    onpress.call(e);
                }
            },
            if let Some(order_direction) = &order_direction {
                rect {
                    margin: "10",
                    width: "10",
                    height: "10",
                    if let Some(order_direction) = &order_direction {
                        TableArrow {
                            order_direction: *order_direction
                        }
                    }
                }
            }
            {children}
        }
    )
}

/// Properties for the [`Table`] component.
#[derive(Props, Clone, PartialEq)]
pub struct TableProps {
    /// Width of the table. Default to `fill`.
    #[props(default = "fill".into())]
    pub height: String,
    /// Theme override.
    pub theme: Option<TableThemeWith>,
    /// Number of columns used in the table.
    pub columns: usize,
    /// The content of the table.
    pub children: Element,
}

/// Table component, composed with [`TableHead`] and [`TableBody`].
///
/// # Styling
/// Inherits the [`TableTheme`](freya_hooks::TableTheme) theme.
///
/// # Example
///
/// ```rust
/// # use freya::prelude::*;
/// fn app() -> Element {
///    let data = use_signal(|| {
///        vec![
///            ("Marc".to_owned(), 169),
///            ("Marc Clone 1".to_owned(), 113),
///            ("Marc Clone 2".to_owned(), 157),
///            ("Marc Clone 3 ".to_owned(), 182),
///        ]
///    });
///
///    rsx!(
///        Table {
///            columns: 2,
///            TableHead {
///                TableRow {
///                    TableCell {
///                        label { "Name" }
///                    }
///                    TableCell {
///                        label { "Age" }
///                    }
///                }
///            }
///            TableBody {
///                ScrollView {
///                    for (i, (name, age)) in data.read().iter().enumerate() {
///                        TableRow {
///                            key: "{i}",
///                            TableCell {
///                                label { "{name}" }
///                            }
///                            TableCell {
///                                label { "{age}" }
///                            }
///                        }
///                    }
///                }
///            }
///        }
///    )
/// }
/// ```
///
/// For a more advance example (e.g filtering) you can have a look at the [`table.rs`](https://github.com/marc2332/freya/blob/main/examples/table.rs) example in the repo.
#[allow(non_snake_case)]
pub fn Table(
    TableProps {
        height,
        theme,
        columns,
        children,
    }: TableProps,
) -> Element {
    let TableTheme {
        background,
        corner_radius,
        divider_fill,
        font_theme: FontTheme { color },
        ..
    } = use_applied_theme!(&theme, table);
    provide_context(TableConfig { columns });

    rsx!(rect {
        overflow: "clip",
        color: "{color}",
        background: "{background}",
        corner_radius: "{corner_radius}",
        height: "{height}",
        border: "1 outer {divider_fill}",
        {children}
    })
}

#[doc(hidden)]
#[derive(Clone)]
pub struct TableConfig {
    columns: usize,
}