dioxus/examples/router.rs

113 lines
2.4 KiB
Rust
Raw Normal View History

2022-01-05 22:30:12 +00:00
#![allow(non_snake_case)]
2021-11-03 04:35:56 +00:00
2022-01-05 22:30:12 +00:00
use dioxus::prelude::*;
2022-12-16 10:55:20 +00:00
use dioxus_router::prelude::*;
2021-11-03 04:35:56 +00:00
2022-01-05 22:30:12 +00:00
fn main() {
2023-06-01 19:10:33 +00:00
#[cfg(target_arch = "wasm32")]
dioxus_web::launch(App);
#[cfg(not(target_arch = "wasm32"))]
dioxus_desktop::launch(App);
2021-11-03 04:35:56 +00:00
}
2023-06-01 19:10:33 +00:00
// ANCHOR: router
#[derive(Routable, Clone)]
#[rustfmt::skip]
enum Route {
#[layout(NavBar)]
#[route("/")]
Home {},
#[nest("/blog")]
#[layout(Blog)]
#[route("/")]
BlogList {},
#[route("/blog/:name")]
BlogPost { name: String },
#[end_layout]
#[end_nest]
#[end_layout]
#[nest("/myblog")]
#[redirect("/", || Route::BlogList {})]
#[redirect("/:name", |name: String| Route::BlogPost { name })]
#[end_nest]
#[route("/:...route")]
PageNotFound {
route: Vec<String>,
},
}
2023-06-01 19:10:33 +00:00
// ANCHOR_END: router
2021-11-03 04:35:56 +00:00
2023-06-01 19:10:33 +00:00
fn App(cx: Scope) -> Element {
render! {
Router {}
}
2022-12-16 10:55:20 +00:00
}
2023-06-01 19:10:33 +00:00
#[inline_props]
fn NavBar(cx: Scope) -> Element {
2022-12-16 10:55:20 +00:00
render! {
2023-06-01 19:10:33 +00:00
nav {
ul {
li { Link { target: Route::Home {}, "Home" } }
li { Link { target: Route::BlogList {}, "Blog" } }
}
2022-12-16 10:55:20 +00:00
}
2023-06-01 19:10:33 +00:00
Outlet {}
2022-12-16 10:55:20 +00:00
}
}
2023-06-01 19:10:33 +00:00
#[inline_props]
fn Home(cx: Scope) -> Element {
render! {
h1 { "Welcome to the Dioxus Blog!" }
}
}
2022-01-05 22:30:12 +00:00
2023-06-01 19:10:33 +00:00
#[inline_props]
fn Blog(cx: Scope) -> Element {
render! {
h1 { "Blog" }
Outlet {}
}
2021-11-03 04:35:56 +00:00
}
2023-06-01 19:10:33 +00:00
#[inline_props]
fn BlogList(cx: Scope) -> Element {
2022-12-16 10:55:20 +00:00
render! {
2023-06-01 19:10:33 +00:00
h2 { "Choose a post" }
2022-12-16 10:55:20 +00:00
ul {
2023-06-01 19:10:33 +00:00
li {
Link {
target: Route::BlogPost { name: "Blog post 1".into() },
"Read the first blog post"
}
}
li {
Link {
target: Route::BlogPost { name: "Blog post 2".into() },
"Read the second blog post"
}
}
2022-12-16 10:55:20 +00:00
}
}
2022-01-11 17:27:02 +00:00
}
2023-06-01 19:10:33 +00:00
#[inline_props]
fn BlogPost(cx: Scope, name: String) -> Element {
render! {
h2 { "Blog Post: {name}"}
}
2022-01-05 22:30:12 +00:00
}
2022-12-16 10:55:20 +00:00
2023-06-01 19:10:33 +00:00
#[inline_props]
fn PageNotFound(cx: Scope, route: Vec<String>) -> Element {
render! {
h1 { "Page not found" }
p { "We are terribly sorry, but the page you requested doesn't exist." }
pre {
color: "red",
"log:\nattemped to navigate to: {route:?}"
}
}
2022-12-16 10:55:20 +00:00
}