Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix 2020: return None if the root nodes are empty in rsx #2026

Merged
merged 1 commit into from
Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions packages/core-macro/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

use proc_macro::TokenStream;
use quote::ToTokens;
use rsx::RenderCallBody;
use syn::parse::Parser;
use syn::punctuated::Punctuated;
use syn::{parse_macro_input, Path, Token};
Expand Down Expand Up @@ -42,7 +41,7 @@ pub fn derive_typed_builder(input: TokenStream) -> TokenStream {
pub fn rsx(tokens: TokenStream) -> TokenStream {
match syn::parse::<rsx::CallBody>(tokens) {
Err(err) => err.to_compile_error().into(),
Ok(body) => RenderCallBody(body).into_token_stream().into(),
Ok(body) => body.into_token_stream().into(),
}
}

Expand Down
25 changes: 25 additions & 0 deletions packages/core/tests/diff_element.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,3 +181,28 @@ fn attribute_diff() {
]
);
}

#[test]
fn diff_empty() {
fn app() -> Element {
match generation() % 2 {
0 => rsx! { div { "hello" } },
1 => rsx! {},
_ => unreachable!(),
}
}

let mut vdom = VirtualDom::new(app);
vdom.rebuild(&mut NoOpMutations);

vdom.mark_dirty(ScopeId::ROOT);
let edits = vdom.render_immediate_to_vec().santize().edits;

assert_eq!(
edits,
[
CreatePlaceholder { id: ElementId(2,) },
ReplaceWith { id: ElementId(1,), m: 1 },
]
)
}
26 changes: 15 additions & 11 deletions packages/rsx/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,13 @@ impl CallBody {
location: Some(location),
};

// Empty templates just are placeholders for "none"
if self.roots.is_empty() {
return quote! { None };
}

quote! {
Some({
#body
})
Some({ #body })
}
}
}
Expand All @@ -110,20 +113,20 @@ impl Parse for CallBody {
}
}

#[derive(Default, Debug)]
pub struct RenderCallBody(pub CallBody);

impl ToTokens for RenderCallBody {
impl ToTokens for CallBody {
fn to_tokens(&self, out_tokens: &mut TokenStream2) {
let body: TemplateRenderer = TemplateRenderer {
roots: &self.0.roots,
roots: &self.roots,
location: None,
};

// Empty templates just are placeholders for "none"
if self.roots.is_empty() {
return out_tokens.append_all(quote! { None });
}

out_tokens.append_all(quote! {
Some({
#body
})
Some({ #body })
})
}
}
Expand All @@ -145,6 +148,7 @@ impl<'a> TemplateRenderer<'a> {
let mut context = DynamicContext::default();

let mut roots = Vec::new();

for (idx, root) in self.roots.iter().enumerate() {
context.current_path.push(idx as u8);
roots.push(context.update_node::<Ctx>(root, &mut mapping)?);
Expand Down
Loading