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
use web_sys::MouseEvent;
use crate::fabric::html;
use crate::fabric::callback::Callback;
use crate::fabric::html::{Html, ComponentLink, ShouldRender, Renderable, Component, Children};

pub struct Button {
    props: Props,
}

pub enum Msg {
    Clicked,
}

#[derive(Clone, Properties)]
pub struct Props {
    #[prop_or_else(Callback::noop)]
    pub onclick: Callback<MouseEvent>,
    #[prop_or_default]
    pub children: Children,
    #[prop_or_default]
    pub disabled: bool,
}

impl Component for Button {
    type Message = Msg;
    type Properties = Props;

    fn create(props: Self::Properties, _: ComponentLink<Self>) -> Self {
        Button { props }
    }

    fn update(&mut self, _: Self::Message) -> ShouldRender {
        false
    }

    fn change(&mut self, props: Self::Properties) -> ShouldRender {
        self.props.onclick = props.onclick;
        true
    }

    fn view(&self) -> Html {
        html! {
            <button
                disabled=self.props.disabled
                class="bow-button"
                onclick=self.props.onclick.reform(|e| e)>
                { self.props.children.render() }

            </button>
        }
    }
}