|
@@ -1,103 +1,42 @@
|
|
-use dioxus::core::ElementId;
|
|
|
|
use dioxus::core::Mutation::*;
|
|
use dioxus::core::Mutation::*;
|
|
use dioxus::prelude::*;
|
|
use dioxus::prelude::*;
|
|
use std::future::IntoFuture;
|
|
use std::future::IntoFuture;
|
|
use std::rc::Rc;
|
|
use std::rc::Rc;
|
|
use std::time::Duration;
|
|
use std::time::Duration;
|
|
|
|
|
|
-#[test]
|
|
|
|
-fn it_works() {
|
|
|
|
|
|
+#[tokio::test]
|
|
|
|
+async fn it_works() {
|
|
// wait just a moment, not enough time for the boundary to resolve
|
|
// wait just a moment, not enough time for the boundary to resolve
|
|
|
|
|
|
- tokio::runtime::Builder::new_current_thread()
|
|
|
|
- .enable_time()
|
|
|
|
- .build()
|
|
|
|
- .unwrap()
|
|
|
|
- .block_on(async {
|
|
|
|
- let mut dom = VirtualDom::new(app);
|
|
|
|
|
|
+ let mut dom = VirtualDom::new(app);
|
|
|
|
+ _ = dom.rebuild();
|
|
|
|
+ dom.wait_for_suspense().await;
|
|
|
|
+ let out = dioxus_ssr::pre_render(&dom);
|
|
|
|
|
|
- {
|
|
|
|
- let mutations = dom.rebuild().santize();
|
|
|
|
|
|
+ assert_eq!(out, "<div>Waiting for... child</div>");
|
|
|
|
|
|
- // We should at least get the top-level template in before pausing for the children
|
|
|
|
- // note: we dont test template edits anymore
|
|
|
|
- // assert_eq!(
|
|
|
|
- // mutations.templates,
|
|
|
|
- // [
|
|
|
|
- // CreateElement { name: "div" },
|
|
|
|
- // CreateStaticText { value: "Waiting for child..." },
|
|
|
|
- // CreateStaticPlaceholder,
|
|
|
|
- // AppendChildren { m: 2 },
|
|
|
|
- // SaveTemplate { name: "template", m: 1 }
|
|
|
|
- // ]
|
|
|
|
- // );
|
|
|
|
-
|
|
|
|
- // And we should load it in and assign the placeholder properly
|
|
|
|
- assert_eq!(
|
|
|
|
- mutations.edits,
|
|
|
|
- [
|
|
|
|
- LoadTemplate { name: "template", index: 0, id: ElementId(1) },
|
|
|
|
- // hmmmmmmmmm.... with suspense how do we guarantee that IDs increase linearly?
|
|
|
|
- // can we even?
|
|
|
|
- AssignId { path: &[1], id: ElementId(3) },
|
|
|
|
- AppendChildren { m: 1, id: ElementId(0) },
|
|
|
|
- ]
|
|
|
|
- );
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- dom.wait_for_work().await;
|
|
|
|
- });
|
|
|
|
|
|
+ dbg!(out);
|
|
}
|
|
}
|
|
|
|
|
|
fn app(cx: Scope) -> Element {
|
|
fn app(cx: Scope) -> Element {
|
|
cx.render(rsx!(
|
|
cx.render(rsx!(
|
|
div {
|
|
div {
|
|
- "Waiting for child..."
|
|
|
|
- suspense_boundary {}
|
|
|
|
|
|
+ "Waiting for... "
|
|
|
|
+ suspended_child {}
|
|
}
|
|
}
|
|
))
|
|
))
|
|
}
|
|
}
|
|
|
|
|
|
-fn suspense_boundary(cx: Scope) -> Element {
|
|
|
|
- todo!()
|
|
|
|
- // cx.use_hook(|| {
|
|
|
|
- // cx.provide_context(Rc::new(SuspenseContext::new(cx.scope_id())));
|
|
|
|
- // });
|
|
|
|
-
|
|
|
|
- // // Ensure the right types are found
|
|
|
|
- // cx.has_context::<Rc<SuspenseContext>>().unwrap();
|
|
|
|
-
|
|
|
|
- // cx.render(rsx!(async_child {}))
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-fn async_child(cx: Scope<'_>) -> Element {
|
|
|
|
- todo!()
|
|
|
|
- // use_future!(cx, || tokio::time::sleep(Duration::from_millis(10))).await;
|
|
|
|
- // cx.render(rsx!(async_text {}))
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-fn async_text(cx: Scope<'_>) -> Element {
|
|
|
|
- todo!()
|
|
|
|
- // let username = use_future!(cx, || async {
|
|
|
|
- // tokio::time::sleep(std::time::Duration::from_secs(1)).await;
|
|
|
|
- // "async child 1"
|
|
|
|
- // });
|
|
|
|
|
|
+fn suspended_child(cx: Scope) -> Element {
|
|
|
|
+ let mut val = use_state(cx, || 0);
|
|
|
|
|
|
- // let age = use_future!(cx, || async {
|
|
|
|
- // tokio::time::sleep(std::time::Duration::from_secs(2)).await;
|
|
|
|
- // 1234
|
|
|
|
- // });
|
|
|
|
-
|
|
|
|
- // let (_user, _age) = use_future!(cx, || async {
|
|
|
|
- // tokio::join!(
|
|
|
|
- // tokio::time::sleep(std::time::Duration::from_secs(1)),
|
|
|
|
- // tokio::time::sleep(std::time::Duration::from_secs(2))
|
|
|
|
- // );
|
|
|
|
- // ("async child 1", 1234)
|
|
|
|
- // })
|
|
|
|
- // .await;
|
|
|
|
-
|
|
|
|
- // let (username, age) = tokio::join!(username.into_future(), age.into_future());
|
|
|
|
|
|
+ if **val < 3 {
|
|
|
|
+ let mut val = val.clone();
|
|
|
|
+ cx.spawn(async move {
|
|
|
|
+ val += 1;
|
|
|
|
+ });
|
|
|
|
+ return cx.suspend()?;
|
|
|
|
+ }
|
|
|
|
|
|
- // cx.render(rsx!( div { "Hello! {username}, you are {age}, {_user} {_age}" } ))
|
|
|
|
|
|
+ render!("child")
|
|
}
|
|
}
|