2022-01-25 00:52:12 +00:00
|
|
|
|
#![allow(non_snake_case)]
|
|
|
|
|
|
2022-01-03 05:42:17 +00:00
|
|
|
|
//! Suspense in Dioxus
|
|
|
|
|
//!
|
|
|
|
|
//! Currently, `rsx!` does not accept futures as values. To achieve the functionality
|
|
|
|
|
//! of suspense, we need to make a new component that performs its own suspense
|
|
|
|
|
//! handling.
|
|
|
|
|
//!
|
|
|
|
|
//! In this example, we render the `Doggo` component which starts a future that
|
|
|
|
|
//! will cause it to fetch a random dog image from the Dog API. Since the data
|
|
|
|
|
//! is not ready immediately, we render some loading text.
|
|
|
|
|
//!
|
2023-07-25 19:30:08 +00:00
|
|
|
|
//! We can achieve the majority of suspense functionality by composing "suspenseful"
|
2022-01-03 05:42:17 +00:00
|
|
|
|
//! primitives in our own custom components.
|
|
|
|
|
|
|
|
|
|
use dioxus::prelude::*;
|
2022-09-13 23:22:27 +00:00
|
|
|
|
use dioxus_desktop::{Config, LogicalSize, WindowBuilder};
|
2022-01-03 05:42:17 +00:00
|
|
|
|
|
|
|
|
|
fn main() {
|
2024-01-16 14:42:16 +00:00
|
|
|
|
LaunchBuilder::new(app)
|
|
|
|
|
.cfg(
|
|
|
|
|
Config::new().with_window(
|
|
|
|
|
WindowBuilder::new()
|
|
|
|
|
.with_title("Doggo Fetcher")
|
|
|
|
|
.with_inner_size(LogicalSize::new(600.0, 800.0)),
|
|
|
|
|
),
|
2024-01-15 21:06:05 +00:00
|
|
|
|
)
|
2024-01-16 14:42:16 +00:00
|
|
|
|
.launch()
|
2022-01-03 05:42:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2024-01-14 04:51:37 +00:00
|
|
|
|
fn app() -> Element {
|
2024-01-14 05:12:21 +00:00
|
|
|
|
rsx! {
|
2022-01-03 05:42:17 +00:00
|
|
|
|
div {
|
2024-01-16 14:42:16 +00:00
|
|
|
|
h1 { "Dogs are very important" }
|
2022-01-03 05:42:17 +00:00
|
|
|
|
p {
|
2022-02-21 20:39:47 +00:00
|
|
|
|
"The dog or domestic dog (Canis familiaris[4][5] or Canis lupus familiaris[5])"
|
|
|
|
|
"is a domesticated descendant of the wolf which is characterized by an upturning tail."
|
2022-01-03 05:42:17 +00:00
|
|
|
|
"The dog derived from an ancient, extinct wolf,[6][7] and the modern grey wolf is the"
|
|
|
|
|
"dog's nearest living relative.[8] The dog was the first species to be domesticated,[9][8]"
|
2022-01-03 05:46:06 +00:00
|
|
|
|
"by hunter–gatherers over 15,000 years ago,[7] before the development of agriculture.[1]"
|
2022-01-03 05:42:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h3 { "Illustrious Dog Photo" }
|
2024-01-16 14:42:16 +00:00
|
|
|
|
Doggo {}
|
2022-01-03 05:42:17 +00:00
|
|
|
|
}
|
2024-01-14 05:12:21 +00:00
|
|
|
|
}
|
2022-01-03 05:42:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// This component will re-render when the future has finished
|
|
|
|
|
/// Suspense is achieved my moving the future into only the component that
|
|
|
|
|
/// actually renders the data.
|
2024-01-14 04:51:37 +00:00
|
|
|
|
fn Doggo() -> Element {
|
2024-01-16 01:04:39 +00:00
|
|
|
|
let fut = use_future(|| async move {
|
2024-01-15 21:06:05 +00:00
|
|
|
|
#[derive(serde::Deserialize)]
|
|
|
|
|
struct DogApi {
|
|
|
|
|
message: String,
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-03 05:42:17 +00:00
|
|
|
|
reqwest::get("https://dog.ceo/api/breeds/image/random/")
|
|
|
|
|
.await
|
|
|
|
|
.unwrap()
|
|
|
|
|
.json::<DogApi>()
|
|
|
|
|
.await
|
|
|
|
|
});
|
|
|
|
|
|
2024-01-16 01:04:39 +00:00
|
|
|
|
match fut.value().read().as_ref() {
|
2022-01-03 05:42:17 +00:00
|
|
|
|
Some(Ok(resp)) => rsx! {
|
2024-01-16 14:42:16 +00:00
|
|
|
|
button { onclick: move |_| fut.restart(), "Click to fetch another doggo" }
|
|
|
|
|
div { img { max_width: "500px", max_height: "500px", src: "{resp.message}" } }
|
2022-01-03 05:42:17 +00:00
|
|
|
|
},
|
|
|
|
|
Some(Err(_)) => rsx! { div { "loading dogs failed" } },
|
|
|
|
|
None => rsx! { div { "loading dogs..." } },
|
2024-01-14 05:12:21 +00:00
|
|
|
|
}
|
2022-01-03 05:42:17 +00:00
|
|
|
|
}
|