mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 12:43:08 +00:00
145 lines
3.2 KiB
Rust
145 lines
3.2 KiB
Rust
#![allow(non_snake_case, unused)]
|
|
|
|
use dioxus::prelude::*;
|
|
use dioxus_router::prelude::*;
|
|
|
|
fn prepare(path: impl Into<String>) -> VirtualDom {
|
|
let mut vdom = VirtualDom::new_with_props(App, AppProps { path: path.into() });
|
|
let _ = vdom.rebuild();
|
|
return vdom;
|
|
|
|
#[derive(Routable, Clone)]
|
|
#[rustfmt::skip]
|
|
enum Route {
|
|
#[route("/")]
|
|
RootIndex {},
|
|
#[nest("/fixed")]
|
|
#[layout(Fixed)]
|
|
#[route("/")]
|
|
FixedIndex {},
|
|
#[route("/fixed")]
|
|
FixedFixed {},
|
|
#[end_layout]
|
|
#[end_nest]
|
|
#[nest("/:id")]
|
|
#[layout(Parameter)]
|
|
#[route("/")]
|
|
ParameterIndex { id: u8 },
|
|
#[route("/fixed")]
|
|
ParameterFixed { id: u8 },
|
|
}
|
|
|
|
#[derive(Debug, Props, PartialEq)]
|
|
struct AppProps {
|
|
path: String,
|
|
}
|
|
|
|
fn App(cx: Scope<AppProps>) -> Element {
|
|
render! {
|
|
h1 { "App" }
|
|
Router::<Route> {
|
|
config: {
|
|
let path = cx.props.path.parse().unwrap();
|
|
move || RouterConfig::default().history(MemoryHistory::with_initial_path(path))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#[inline_props]
|
|
fn RootIndex(cx: Scope) -> Element {
|
|
render! {
|
|
h2 { "Root Index" }
|
|
}
|
|
}
|
|
|
|
#[inline_props]
|
|
fn Fixed(cx: Scope) -> Element {
|
|
render! {
|
|
h2 { "Fixed" }
|
|
Outlet::<Route> { }
|
|
}
|
|
}
|
|
|
|
#[inline_props]
|
|
fn FixedIndex(cx: Scope) -> Element {
|
|
render! {
|
|
h3 { "Fixed - Index" }
|
|
}
|
|
}
|
|
|
|
#[inline_props]
|
|
fn FixedFixed(cx: Scope) -> Element {
|
|
render! {
|
|
h3 { "Fixed - Fixed"}
|
|
}
|
|
}
|
|
|
|
#[inline_props]
|
|
fn Parameter(cx: Scope, id: u8) -> Element {
|
|
render! {
|
|
h2 { "Parameter {id}" }
|
|
Outlet::<Route> { }
|
|
}
|
|
}
|
|
|
|
#[inline_props]
|
|
fn ParameterIndex(cx: Scope, id: u8) -> Element {
|
|
render! {
|
|
h3 { "Parameter - Index" }
|
|
}
|
|
}
|
|
|
|
#[inline_props]
|
|
fn ParameterFixed(cx: Scope, id: u8) -> Element {
|
|
render! {
|
|
h3 { "Parameter - Fixed" }
|
|
}
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn root_index() {
|
|
let vdom = prepare("/");
|
|
let html = dioxus_ssr::render(&vdom);
|
|
|
|
assert_eq!(html, "<h1>App</h1><h2>Root Index</h2>");
|
|
}
|
|
|
|
#[test]
|
|
fn fixed() {
|
|
let vdom = prepare("/fixed");
|
|
let html = dioxus_ssr::render(&vdom);
|
|
|
|
assert_eq!(html, "<h1>App</h1><h2>Fixed</h2><h3>Fixed - Index</h3>");
|
|
}
|
|
|
|
#[test]
|
|
fn fixed_fixed() {
|
|
let vdom = prepare("/fixed/fixed");
|
|
let html = dioxus_ssr::render(&vdom);
|
|
|
|
assert_eq!(html, "<h1>App</h1><h2>Fixed</h2><h3>Fixed - Fixed</h3>");
|
|
}
|
|
|
|
#[test]
|
|
fn parameter() {
|
|
let vdom = prepare("/18");
|
|
let html = dioxus_ssr::render(&vdom);
|
|
|
|
assert_eq!(
|
|
html,
|
|
"<h1>App</h1><h2>Parameter 18</h2><h3>Parameter - Index</h3>"
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn parameter_fixed() {
|
|
let vdom = prepare("/18/fixed");
|
|
let html = dioxus_ssr::render(&vdom);
|
|
|
|
assert_eq!(
|
|
html,
|
|
"<h1>App</h1><h2>Parameter 18</h2><h3>Parameter - Fixed</h3>"
|
|
);
|
|
}
|