dioxus/packages/core/tests/create_passthru.rs

110 lines
2.9 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() {
#[component]
fn App(cx: Scope) -> Element {
2022-11-23 05:32:26 +00:00
cx.render(rsx! {
PassThru {
PassThru {
PassThru {
2022-11-23 05:44:20 +00:00
div { "hi" }
2022-11-23 05:32:26 +00:00
}
}
}
})
}
#[component]
fn PassThru<'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);
2022-11-23 05:32:26 +00:00
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-12-03 00:24:49 +00:00
AppendChildren { m: 1, id: ElementId(0) },
2022-11-23 05:32:26 +00:00
]
)
}
/// 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() {
#[component]
fn App(cx: Scope) -> Element {
2022-11-23 05:32:26 +00:00
cx.render(rsx! {
ChildComp {
2022-11-23 05:32:26 +00:00
"1"
ChildComp {
2022-11-23 05:32:26 +00:00
"2"
ChildComp {
2022-11-23 05:32:26 +00:00
"3"
div {
"hi"
}
}
}
}
})
}
#[component]
fn ChildComp<'a>(cx: Scope, children: Element<'a>) -> Element {
cx.render(rsx! { {children} })
2022-11-23 05:32:26 +00:00
}
let mut dom = VirtualDom::new(App);
2022-11-23 05:32:26 +00:00
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-12-03 00:24:49 +00:00
AppendChildren { id: ElementId(0), m: 4 },
2022-11-23 05:32:26 +00:00
]
);
}
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() {
#[component]
fn App(cx: Scope) -> Element {
2022-11-23 05:32:26 +00:00
let a = 123;
let b = 456;
cx.render(rsx! { "{a}" "{b}" })
}
let mut dom = VirtualDom::new(App);
2022-11-23 05:32:26 +00:00
let edits = dom.rebuild().santize();
// Since the roots were all dynamic, they should not cause any template muations
2022-12-03 00:24:49 +00:00
assert!(edits.templates.is_empty());
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) },
2022-12-03 00:24:49 +00:00
AppendChildren { id: ElementId(0), m: 2 }
2022-11-23 05:32:26 +00:00
]
)
}