123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- // This test is used by playwright configured in the root of the repo
- // Tests:
- // - 200 Routes
- // - 404 Routes
- // - 500 Routes
- #![allow(non_snake_case)]
- use dioxus::{prelude::*, CapturedError};
- fn main() {
- dioxus::LaunchBuilder::new()
- .with_cfg(server_only! {
- dioxus::fullstack::ServeConfig::builder().enable_out_of_order_streaming()
- })
- .launch(app);
- }
- fn app() -> Element {
- rsx! { Router::<Route> {} }
- }
- #[derive(Clone, Routable, Debug, PartialEq, serde::Serialize, serde::Deserialize)]
- enum Route {
- #[route("/")]
- Home,
- #[route("/blog/:id/")]
- Blog { id: i32 },
- #[route("/error")]
- ThrowsError,
- }
- #[component]
- fn Blog(id: i32) -> Element {
- rsx! {
- Link { to: Route::Home {}, "Go home" }
- "id: {id}"
- }
- }
- #[component]
- fn ThrowsError() -> Element {
- return Err(RenderError::Aborted(CapturedError::from_display(
- "This route tests uncaught errors in the server",
- )));
- }
- #[component]
- fn Home() -> Element {
- rsx! {
- "Home"
- }
- }
|