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
use crate::{function_component, html, Children, Classes, Properties};

/// Properties for Paper component
#[derive(Properties, PartialEq)]
pub struct PaperProps {
    #[prop_or_default]
    pub elevation: u8,
    #[prop_or_default]
    pub children: Children,
    #[prop_or_default]
    pub class: String,
    #[prop_or_default]
    pub style: String,
}

/// Common container component
///
/// Basic example
/// ```rust
/// use webui::*;
///
/// fn page() -> Html {
/// 	html! {
/// 		<Paper>{"Your child content here"}</Paper>
/// 	}
/// }
/// ```
///
/// Add classes
/// ```rust
/// use webui::*;
///
/// fn page() -> Html {
/// 	html! {
/// 		<Paper class="d-flex flex-column">{"Your child content here"}</Paper>
/// 	}
/// }
/// ```
///
/// Apply elevetation
///
/// Elevation applies a box shadow to the Paper component.
/// Valid ranges range from 0 ro 25.
/// ```rust
/// use webui::*;
///
/// fn page() -> Html {
/// 	html! {
/// 		<Paper elevation={10}>{"Your child content here"}</Paper>
/// 	}
/// }
/// ```
#[function_component(Paper)]
pub fn paper(props: &PaperProps) -> Html {
    let classes = &mut Classes::new();
    classes.push("paper");

    if props.elevation > 0 {
        classes.push(format!("elevation-{}", props.elevation));
    }

    if !props.class.is_empty() {
        classes.push(&props.class);
    }

    html! {
        <section class={classes.clone()} style={props.style.to_owned()}>
            { for props.children.iter() }
        </section>
    }
}