dioxus/packages/web/examples/rsxt.rs

73 lines
1.9 KiB
Rust
Raw Normal View History

2021-03-11 17:27:01 +00:00
#![allow(non_snake_case)]
2021-03-02 05:14:28 +00:00
use dioxus_core as dioxus;
use dioxus::{events::on::MouseEvent, prelude::*};
2021-03-02 05:14:28 +00:00
use dioxus_web::WebsysRenderer;
fn main() {
2021-03-11 17:27:01 +00:00
wasm_logger::init(wasm_logger::Config::new(log::Level::Trace));
console_error_panic_hook::set_once();
2021-03-13 15:02:57 +00:00
wasm_bindgen_futures::spawn_local(async {
2021-03-16 15:03:59 +00:00
let props = ExampleProps { initial_name: "..?"};
2021-03-14 00:11:06 +00:00
WebsysRenderer::new_with_props(Example, props)
2021-03-13 15:02:57 +00:00
.run()
.await
.unwrap()
});
2021-03-02 05:14:28 +00:00
}
2021-03-12 22:21:06 +00:00
#[derive(PartialEq, Props)]
struct ExampleProps {
2021-03-13 15:02:57 +00:00
initial_name: &'static str,
2021-03-12 22:21:06 +00:00
}
static Example: FC<ExampleProps> = |ctx, props| {
2021-03-16 15:03:59 +00:00
let (name, set_name) = use_state(&ctx, move || props.initial_name.to_string());
2021-03-13 15:02:57 +00:00
2021-03-02 05:14:28 +00:00
ctx.render(rsx! {
div {
class: "py-12 px-4 text-center w-full max-w-2xl mx-auto"
span {
2021-03-02 05:14:28 +00:00
class: "text-sm font-semibold"
"Dioxus Example: Jack and Jill"
2021-03-02 05:14:28 +00:00
}
h2 {
2021-03-02 05:14:28 +00:00
class: "text-5xl mt-2 mb-6 leading-tight font-semibold font-heading"
"Hello, {name}"
2021-03-02 05:14:28 +00:00
}
2021-03-13 15:02:57 +00:00
2021-03-16 15:03:59 +00:00
CustomButton { name: "Jack!", set_name: set_name }
CustomButton { name: "Jill!", set_name: set_name }
CustomButton { name: "Bob!", set_name: set_name }
2021-03-02 05:14:28 +00:00
}
})
};
2021-03-12 22:21:06 +00:00
2021-03-13 15:02:57 +00:00
#[derive(Props)]
struct ButtonProps<'src> {
2021-03-16 15:03:59 +00:00
name: &'src str,
set_name: &'src dyn Fn(String)
2021-03-13 15:02:57 +00:00
}
fn CustomButton<'a>(ctx: Context<'a>, props: &'a ButtonProps<'a>) -> DomTree {
2021-03-12 22:21:06 +00:00
ctx.render(rsx!{
button {
class: "inline-block py-4 px-8 mr-6 leading-none text-white bg-indigo-600 hover:bg-indigo-900 font-semibold rounded shadow"
2021-03-16 15:03:59 +00:00
onmouseover: move |evt| (props.set_name)(props.name.to_string())
"{props.name}"
2021-03-12 22:21:06 +00:00
}
})
2021-03-13 15:02:57 +00:00
}
2021-03-12 22:21:06 +00:00
2021-03-16 15:03:59 +00:00
impl PartialEq for ButtonProps<'_> {
fn eq(&self, other: &Self) -> bool {
false
}
}