mirror of
https://github.com/DioxusLabs/dioxus
synced 2025-02-17 06:08:26 +00:00
make diffing a bit more resilient
This commit is contained in:
parent
6c29e2b825
commit
69da70fd32
2 changed files with 10 additions and 10 deletions
|
@ -131,10 +131,10 @@ impl VNode {
|
|||
}
|
||||
Component(_comp) => {
|
||||
let scope = ScopeId(mount.mounted_dynamic_nodes[*id]);
|
||||
match dom.get_scope(scope).unwrap().root_node() {
|
||||
RenderReturn::Ready(child) => child.find_first_element(dom),
|
||||
_ => todo!("cannot handle nonstandard nodes"),
|
||||
}
|
||||
dom.get_scope(scope)
|
||||
.unwrap()
|
||||
.root_node()
|
||||
.find_first_element(dom)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -153,10 +153,10 @@ impl VNode {
|
|||
Fragment(t) => t.last().unwrap().find_last_element(dom),
|
||||
Component(_comp) => {
|
||||
let scope = ScopeId(mount.mounted_dynamic_nodes[*id]);
|
||||
match dom.get_scope(scope).unwrap().root_node() {
|
||||
RenderReturn::Ready(node) => node.find_last_element(dom),
|
||||
_ => todo!("cannot handle nonstandard nodes"),
|
||||
}
|
||||
dom.get_scope(scope)
|
||||
.unwrap()
|
||||
.root_node()
|
||||
.find_last_element(dom)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -139,10 +139,10 @@ impl<F: Fn() -> Element> ComponentFunction<ZeroElementMarker> for F {
|
|||
#[test]
|
||||
fn test_empty_builder() {
|
||||
fn app() -> Element {
|
||||
todo!()
|
||||
unimplemented!()
|
||||
}
|
||||
fn app2(_: ()) -> Element {
|
||||
todo!()
|
||||
unimplemented!()
|
||||
}
|
||||
let builder = fc_to_builder(app);
|
||||
builder.build();
|
||||
|
|
Loading…
Add table
Reference in a new issue