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
use crate::fabric::prelude::*;

pub struct Navbar {
    link: ComponentLink<Self>,
    props: Props,
}

pub enum Msg {
    Clicked,
}

#[derive(Clone, Properties)]
pub struct Props {
    pub onclick: Callback<()>,
    pub children: Children,
}

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

    fn create(props: Self::Properties, link: ComponentLink<Self>) -> Self {
        Navbar { link, props }
    }

    fn update(&mut self, msg: Self::Message) -> ShouldRender {
        match msg {
            Msg::Clicked => {
                self.props.onclick.emit(());
            }
        }
        false
    }

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

    fn view(&self) -> Html {
        html! {
            <button class="navbar"
                onclick=self.link.callback(|_| Msg::Clicked)>
                { self.props.children.render() }

            </button>
        }
    }
}