mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 12:43:08 +00:00
feat: none return works
This commit is contained in:
parent
244ade048e
commit
d8aa9f032a
3 changed files with 37 additions and 30 deletions
|
@ -272,9 +272,9 @@ impl<'b> VirtualDom {
|
||||||
use DynamicNode::*;
|
use DynamicNode::*;
|
||||||
match node {
|
match node {
|
||||||
Text(text) => self.create_dynamic_text(template, text, idx),
|
Text(text) => self.create_dynamic_text(template, text, idx),
|
||||||
Fragment(frag) => self.create_fragment(frag),
|
|
||||||
Placeholder(frag) => self.create_placeholder(frag, template, idx),
|
Placeholder(frag) => self.create_placeholder(frag, template, idx),
|
||||||
Component(component) => self.create_component_node(template, component, idx),
|
Component(component) => self.create_component_node(template, component, idx),
|
||||||
|
Fragment(frag) => frag.iter().map(|child| self.create(child)).sum(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -326,45 +326,46 @@ impl<'b> VirtualDom {
|
||||||
0
|
0
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) fn create_fragment(&mut self, nodes: &'b [VNode<'b>]) -> usize {
|
|
||||||
nodes.iter().map(|child| self.create(child)).sum()
|
|
||||||
}
|
|
||||||
|
|
||||||
pub(super) fn create_component_node(
|
pub(super) fn create_component_node(
|
||||||
&mut self,
|
&mut self,
|
||||||
template: &'b VNode<'b>,
|
template: &'b VNode<'b>,
|
||||||
component: &'b VComponent<'b>,
|
component: &'b VComponent<'b>,
|
||||||
idx: usize,
|
idx: usize,
|
||||||
) -> usize {
|
) -> usize {
|
||||||
let scope = match component.props.take() {
|
|
||||||
Some(props) => {
|
|
||||||
let unbounded_props: Box<dyn AnyProps> = unsafe { std::mem::transmute(props) };
|
|
||||||
let scope = self.new_scope(unbounded_props, component.name);
|
|
||||||
scope.id
|
|
||||||
}
|
|
||||||
|
|
||||||
// Component is coming back, it probably still exists, right?
|
|
||||||
None => component.scope.get().unwrap(),
|
|
||||||
};
|
|
||||||
|
|
||||||
component.scope.set(Some(scope));
|
|
||||||
|
|
||||||
let return_nodes = unsafe { self.run_scope(scope).extend_lifetime_ref() };
|
|
||||||
|
|
||||||
use RenderReturn::*;
|
use RenderReturn::*;
|
||||||
|
|
||||||
match return_nodes {
|
// Load up a ScopeId for this vcomponent
|
||||||
Ready(t) => self.mount_component(scope, template, t, idx),
|
let scope = self.load_scope_from_vcomponent(component);
|
||||||
Aborted(t) => {
|
|
||||||
self.mutations
|
|
||||||
.push(Mutation::CreatePlaceholder { id: ElementId(999) });
|
|
||||||
|
|
||||||
1
|
match unsafe { self.run_scope(scope).extend_lifetime_ref() } {
|
||||||
}
|
Ready(t) => self.mount_component(scope, template, t, idx),
|
||||||
|
Aborted(t) => self.mount_aborted(template, t),
|
||||||
Async(_) => self.mount_component_placeholder(template, idx, scope),
|
Async(_) => self.mount_component_placeholder(template, idx, scope),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn mount_aborted(&mut self, parent: &'b VNode<'b>, placeholder: &VPlaceholder) -> usize {
|
||||||
|
let id = self.next_element(parent, &[]);
|
||||||
|
|
||||||
|
self.mutations.push(Mutation::CreatePlaceholder { id });
|
||||||
|
|
||||||
|
placeholder.id.set(Some(id));
|
||||||
|
|
||||||
|
1
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Load a scope from a vcomponent. If the props don't exist, that means the component is currently "live"
|
||||||
|
fn load_scope_from_vcomponent(&mut self, component: &VComponent) -> ScopeId {
|
||||||
|
component
|
||||||
|
.props
|
||||||
|
.take()
|
||||||
|
.map(|props| {
|
||||||
|
let unbounded_props: Box<dyn AnyProps> = unsafe { std::mem::transmute(props) };
|
||||||
|
self.new_scope(unbounded_props, component.name).id
|
||||||
|
})
|
||||||
|
.unwrap_or_else(|| component.scope.get().unwrap())
|
||||||
|
}
|
||||||
|
|
||||||
fn mount_component(
|
fn mount_component(
|
||||||
&mut self,
|
&mut self,
|
||||||
scope: ScopeId,
|
scope: ScopeId,
|
||||||
|
|
|
@ -27,8 +27,6 @@ pub enum RenderReturn<'a> {
|
||||||
///
|
///
|
||||||
/// In its place we've produced a placeholder to locate its spot in the dom when
|
/// In its place we've produced a placeholder to locate its spot in the dom when
|
||||||
/// it recovers.
|
/// it recovers.
|
||||||
///
|
|
||||||
/// The old nodes are kept around
|
|
||||||
Aborted(VPlaceholder),
|
Aborted(VPlaceholder),
|
||||||
|
|
||||||
/// An ongoing future that will resolve to a [`Element`]
|
/// An ongoing future that will resolve to a [`Element`]
|
||||||
|
|
|
@ -6,16 +6,24 @@ fn catches_panic() {
|
||||||
let mut dom = VirtualDom::new(app);
|
let mut dom = VirtualDom::new(app);
|
||||||
|
|
||||||
let a = dom.rebuild();
|
let a = dom.rebuild();
|
||||||
|
|
||||||
|
dbg!(a);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn app(cx: Scope) -> Element {
|
fn app(cx: Scope) -> Element {
|
||||||
cx.render(rsx! {
|
cx.render(rsx! {
|
||||||
div {
|
div {
|
||||||
PanicChild {}
|
h1 { "Title" }
|
||||||
|
|
||||||
|
NoneChild {}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn NoneChild(cx: Scope) -> Element {
|
||||||
|
None
|
||||||
|
}
|
||||||
|
|
||||||
fn PanicChild(cx: Scope) -> Element {
|
fn PanicChild(cx: Scope) -> Element {
|
||||||
panic!("Rendering panicked for whatever reason");
|
panic!("Rendering panicked for whatever reason");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue