make diffing a bit more resilient

This commit is contained in:
Evan Almloff 2024-01-11 17:21:38 -06:00
parent 6c29e2b825
commit 69da70fd32
2 changed files with 10 additions and 10 deletions

View file

@ -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)
}
}
}

View file

@ -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();