12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #![allow(non_snake_case)]
- use dioxus::prelude::*;
- use dioxus_router::*;
- fn main() {
- dioxus_web::launch(app);
- }
- fn app(cx: Scope) -> Element {
- cx.render(rsx! {
- Router {
- h1 { "Your app here" }
- ul {
- Link { to: "/", li { "home" } }
- Link { to: "/blog", li { "blog" } }
- Link { to: "/blog/tim", li { "tims' blog" } }
- Link { to: "/blog/bill", li { "bills' blog" } }
- Link { to: "/blog/james", li { "james amazing' blog" } }
- Link { to: "/apples", li { "go to apples" } }
- }
- Route { to: "/", Home {} }
- Route { to: "/blog/", BlogList {} }
- Route { to: "/blog/:id/", BlogPost {} }
- Route { to: "/oranges", "Oranges are not apples!" }
- Redirect { from: "/apples", to: "/oranges" }
- }
- })
- }
- fn Home(cx: Scope) -> Element {
- cx.render(rsx! { h1 { "Home" } })
- }
- fn BlogList(cx: Scope) -> Element {
- cx.render(rsx! { div { "Blog List" } })
- }
- fn BlogPost(cx: Scope) -> Element {
- let Some(id) = use_route(cx).segment("id") else {
- return cx.render(rsx! { div { "No blog post id" } })
- };
- log::trace!("rendering blog post {}", id);
- cx.render(rsx! {
- div {
- h3 { "blog post: {id:?}" }
- Link { to: "/blog/", "back to blog list" }
- }
- })
- }
|