mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 14:44:12 +00:00
cfd62e274e
* make router props expansion better * fix router data fields * make a deprecated use_router hook
108 lines
2.3 KiB
Rust
108 lines
2.3 KiB
Rust
#![allow(non_snake_case)]
|
|
|
|
use dioxus::prelude::*;
|
|
use dioxus_router::prelude::*;
|
|
|
|
fn main() {
|
|
#[cfg(target_arch = "wasm32")]
|
|
dioxus_web::launch(App);
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
dioxus_desktop::launch(App);
|
|
}
|
|
|
|
// 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>,
|
|
},
|
|
}
|
|
// ANCHOR_END: router
|
|
|
|
fn App(cx: Scope) -> Element {
|
|
render! {
|
|
Router::<Route> {}
|
|
}
|
|
}
|
|
|
|
fn NavBar(cx: Scope) -> Element {
|
|
render! {
|
|
nav {
|
|
ul {
|
|
li { Link { to: Route::Home {}, "Home" } }
|
|
li { Link { to: Route::BlogList {}, "Blog" } }
|
|
}
|
|
}
|
|
Outlet::<Route> {}
|
|
}
|
|
}
|
|
|
|
fn Home(cx: Scope) -> Element {
|
|
render! {
|
|
h1 { "Welcome to the Dioxus Blog!" }
|
|
}
|
|
}
|
|
|
|
fn Blog(cx: Scope) -> Element {
|
|
render! {
|
|
h1 { "Blog" }
|
|
Outlet::<Route> {}
|
|
}
|
|
}
|
|
|
|
fn BlogList(cx: Scope) -> Element {
|
|
render! {
|
|
h2 { "Choose a post" }
|
|
ul {
|
|
li {
|
|
Link {
|
|
to: Route::BlogPost { name: "Blog post 1".into() },
|
|
"Read the first blog post"
|
|
}
|
|
}
|
|
li {
|
|
Link {
|
|
to: Route::BlogPost { name: "Blog post 2".into() },
|
|
"Read the second blog post"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#[inline_props]
|
|
fn BlogPost(cx: Scope, name: String) -> Element {
|
|
render! {
|
|
h2 { "Blog Post: {name}"}
|
|
}
|
|
}
|
|
|
|
#[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:?}"
|
|
}
|
|
}
|
|
}
|