mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 20:53:06 +00:00
60 lines
1.3 KiB
Rust
60 lines
1.3 KiB
Rust
#![cfg(target_arch = "wasm32")]
|
|
#![allow(non_snake_case)]
|
|
|
|
use dioxus::prelude::*;
|
|
use dioxus_router::*;
|
|
use gloo_utils::document;
|
|
use wasm_bindgen_test::*;
|
|
|
|
wasm_bindgen_test_configure!(run_in_browser);
|
|
|
|
#[wasm_bindgen_test]
|
|
fn simple_test() {
|
|
fn main() {
|
|
console_error_panic_hook::set_once();
|
|
wasm_logger::init(wasm_logger::Config::new(log::Level::Debug));
|
|
dioxus_web::launch(app);
|
|
}
|
|
|
|
fn app(cx: Scope) -> Element {
|
|
cx.render(rsx! {
|
|
Router {
|
|
onchange: move |router: RouterContext| log::trace!("route changed to {:?}", router.current_location()),
|
|
active_class: "is-active",
|
|
Route { to: "/", Home {} }
|
|
Route { to: "blog"
|
|
Route { to: "/", BlogList {} }
|
|
Route { to: ":id", BlogPost {} }
|
|
}
|
|
}
|
|
})
|
|
}
|
|
|
|
fn Home(cx: Scope) -> Element {
|
|
cx.render(rsx! {
|
|
div {
|
|
h1 { "Home" }
|
|
}
|
|
})
|
|
}
|
|
|
|
fn BlogList(cx: Scope) -> Element {
|
|
cx.render(rsx! {
|
|
div {
|
|
|
|
}
|
|
})
|
|
}
|
|
|
|
fn BlogPost(cx: Scope) -> Element {
|
|
let _id = use_route(cx).parse_segment::<usize>("id").unwrap();
|
|
|
|
cx.render(rsx! {
|
|
div { }
|
|
})
|
|
}
|
|
|
|
main();
|
|
|
|
let _ = document();
|
|
}
|