dioxus/packages/core/tests/create_passthru.rs

107 lines
2.8 KiB
Rust
Raw Normal View History

2022-11-23 05:32:26 +00:00
use dioxus::core::Mutation::*;
use dioxus::prelude::*;
use dioxus_core::ElementId;
/// Should push the text node onto the stack and modify it
#[test]
fn nested_passthru_creates() {
fn app(cx: Scope) -> Element {
cx.render(rsx! {
2022-11-23 05:44:20 +00:00
pass_thru {
pass_thru {
pass_thru {
div { "hi" }
2022-11-23 05:32:26 +00:00
}
}
}
})
}
#[inline_props]
2022-11-23 05:44:20 +00:00
fn pass_thru<'a>(cx: Scope<'a>, children: Element<'a>) -> Element {
cx.render(rsx!(children))
2022-11-23 05:32:26 +00:00
}
let mut dom = VirtualDom::new(app);
let edits = dom.rebuild().santize();
assert_eq!(
2022-12-01 05:46:15 +00:00
edits.edits,
2022-11-23 05:32:26 +00:00
[
2022-11-24 07:15:01 +00:00
LoadTemplate { name: "template", index: 0, id: ElementId(1) },
2022-11-23 05:32:26 +00:00
AppendChildren { m: 1 },
]
)
}
/// Should load all the templates and append them
2022-11-24 07:15:01 +00:00
///
/// Take note on how we don't spit out the template for child_comp since it's entirely dynamic
2022-11-23 05:32:26 +00:00
#[test]
fn nested_passthru_creates_add() {
fn app(cx: Scope) -> Element {
cx.render(rsx! {
child_comp {
"1"
child_comp {
"2"
child_comp {
"3"
div {
"hi"
}
}
}
}
})
}
#[inline_props]
fn child_comp<'a>(cx: Scope, children: Element<'a>) -> Element {
cx.render(rsx! { children })
}
let mut dom = VirtualDom::new(app);
assert_eq!(
2022-12-01 05:46:15 +00:00
dom.rebuild().santize().edits,
2022-11-23 05:32:26 +00:00
[
2022-11-24 07:15:01 +00:00
// load 1
LoadTemplate { name: "template", index: 0, id: ElementId(1) },
// load 2
LoadTemplate { name: "template", index: 0, id: ElementId(2) },
// load 3
LoadTemplate { name: "template", index: 0, id: ElementId(3) },
// load div that contains 4
LoadTemplate { name: "template", index: 1, id: ElementId(4) },
2022-11-23 05:32:26 +00:00
AppendChildren { m: 4 },
]
);
}
2022-11-24 07:15:01 +00:00
/// note that the template is all dynamic roots - so it doesn't actually get cached as a template
2022-11-23 05:32:26 +00:00
#[test]
fn dynamic_node_as_root() {
fn app(cx: Scope) -> Element {
let a = 123;
let b = 456;
cx.render(rsx! { "{a}" "{b}" })
}
let mut dom = VirtualDom::new(app);
let edits = dom.rebuild().santize();
// Since the roots were all dynamic, they should not cause any template muations
2022-12-01 05:46:15 +00:00
assert_eq!(edits.templates, []);
2022-11-23 05:32:26 +00:00
// The root node is text, so we just create it on the spot
assert_eq!(
2022-12-01 05:46:15 +00:00
edits.edits,
2022-11-23 05:32:26 +00:00
[
CreateTextNode { value: "123", id: ElementId(1) },
CreateTextNode { value: "456", id: ElementId(2) },
AppendChildren { m: 2 }
]
)
}