dioxus/packages/web/examples/basic.rs

84 lines
2.1 KiB
Rust
Raw Normal View History

2021-07-30 21:04:04 +00:00
//! Basic example that renders a simple VNode to the browser.
2021-08-24 19:12:20 +00:00
// all these imports are done automatically with the `dioxus` crate and `prelude`
// need to do them manually for this example
2021-07-30 21:04:04 +00:00
use dioxus::events::on::MouseEvent;
use dioxus_core as dioxus;
use dioxus_core::prelude::*;
use dioxus_hooks::*;
use dioxus_html as dioxus_elements;
use dioxus::prelude::*;
use dioxus_web::*;
2021-08-24 19:12:20 +00:00
use std::future::Future;
use std::{pin::Pin, time::Duration};
2021-07-30 21:04:04 +00:00
fn main() {
// Setup logging
// wasm_logger::init(wasm_logger::Config::new(log::Level::Debug));
2021-07-30 21:04:04 +00:00
console_error_panic_hook::set_once();
// Run the app
2021-08-24 19:12:20 +00:00
dioxus_web::launch(APP, |c| c)
2021-07-30 21:04:04 +00:00
}
2021-09-22 06:44:01 +00:00
static APP: FC<()> = |cx, props| {
let mut count = use_state(cx, || 3);
2021-07-30 21:04:04 +00:00
let mut content = use_state(cx, || String::new());
2021-07-30 21:04:04 +00:00
cx.render(rsx! {
2021-09-22 07:22:15 +00:00
div {
input {
value: "{content}"
oninput: move |e| {
content.set(e.value());
}
}
2021-09-22 07:22:15 +00:00
button {
onclick: move |_| count += 1,
"Click to add."
"Current count: {count}"
}
2021-09-22 07:22:15 +00:00
select {
name: "cars"
id: "cars"
value: "h1"
2021-09-22 07:22:15 +00:00
oninput: move |ev| {
match ev.value().as_str() {
"h1" => count.set(0),
"h2" => count.set(5),
"h3" => count.set(10),
s => {}
2021-09-22 07:22:15 +00:00
}
},
2021-09-22 07:22:15 +00:00
option { value: "h1", "h1" }
option { value: "h2", "h2" }
option { value: "h3", "h3" }
}
ul {
{(0..*count).map(|f| rsx!{
li { "a - {f}" }
li { "b - {f}" }
li { "c - {f}" }
})}
2021-09-22 07:22:15 +00:00
}
{render_bullets(cx)}
2021-09-22 07:22:15 +00:00
Child {}
2021-07-30 21:04:04 +00:00
}
})
};
2021-08-24 19:12:20 +00:00
fn render_bullets(cx: Context) -> DomTree {
rsx!(cx, div {
"bite me"
2021-09-22 07:22:15 +00:00
})
}
static Child: FC<()> = |cx, props| rsx!(cx, div {"hello child"});