thesis/project/src/app/mod.rs
Marko Korhonen be88bb19fc
Testing out yew
Signed-off-by: Marko Korhonen <marko.korhonen@reekynet.com>
2020-01-16 14:30:41 +02:00

40 lines
910 B
Rust

use yew::{html, Callback, ClickEvent, Component, ComponentLink, Html, ShouldRender};
pub struct App {
clicked: bool,
on_click: Callback<ClickEvent>,
}
pub enum Msg {
Click,
}
impl Component for App {
type Message = Msg;
type Properties = ();
fn create(_: Self::Properties, link: ComponentLink<Self>) -> Self {
App {
clicked: false,
on_click: link.callback(|_| Msg::Click),
}
}
fn update(&mut self, msg: Self::Message) -> ShouldRender {
match msg {
Msg::Click => {
self.clicked = true;
true // Indicate that the component should re-render
}
}
}
fn view(&self) -> Html {
let button_text = if self.clicked { "Clicked!" } else { "Click me!" };
html! {
<button onclick=&self.on_click>{ button_text }</button>
}
}
}