dioxus/packages/core/tests/suspense.rs

44 lines
923 B
Rust
Raw Normal View History

2022-11-24 07:15:01 +00:00
use dioxus::prelude::*;
2023-07-15 00:13:49 +00:00
#[test]
fn it_works() {
2022-11-24 07:15:01 +00:00
// wait just a moment, not enough time for the boundary to resolve
2022-11-06 22:28:41 +00:00
tokio::runtime::Builder::new_current_thread()
.build()
.unwrap()
.block_on(async {
let mut dom = VirtualDom::new(app);
2024-01-11 01:21:15 +00:00
_ = dom.rebuild_to_vec(&mut dioxus_core::NoOpMutations);
dom.wait_for_suspense().await;
2023-12-27 16:23:56 +00:00
let out = dioxus_ssr::render(&dom);
2023-01-09 21:50:33 +00:00
assert_eq!(out, "<div>Waiting for... child</div>");
2023-01-09 21:50:33 +00:00
dbg!(out);
});
2022-11-06 22:28:41 +00:00
}
fn app() -> Element {
2024-01-11 01:21:15 +00:00
render!(
2022-11-24 07:15:01 +00:00
div {
"Waiting for... "
suspended_child {}
2022-11-24 07:15:01 +00:00
}
2024-01-11 01:21:15 +00:00
)
2022-11-09 03:39:37 +00:00
}
fn suspended_child(cx: Scope) -> Element {
2023-07-15 00:13:49 +00:00
let val = use_state(cx, || 0);
2023-07-14 23:15:20 +00:00
if **val < 3 {
let mut val = val.clone();
cx.spawn(async move {
val += 1;
});
2023-10-08 23:24:38 +00:00
cx.suspend()?;
}
2023-07-14 23:15:20 +00:00
render!("child")
2022-11-06 22:28:41 +00:00
}