123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358 |
- //! I'm so sorry this is so complicated. Here's my best to simplify and explain it:
- //!
- //! The `Callbody` is the contents of the rsx! macro - this contains all the information about every
- //! node that rsx! directly knows about. For loops, if statements, etc.
- //!
- //! However, there are multiple *templates* inside a callbody - due to how core clones templates and
- //! just generally rationalize the concept of a template, nested bodies like for loops and if statements
- //! and component children are all templates, contained within the same Callbody.
- //!
- //! This gets confusing fast since there's lots of IDs bouncing around.
- //!
- //! The IDs at play:
- //! - The id of the template itself so we can find it and apply it to the dom.
- //! This is challenging since all calls to file/line/col/id are relative to the macro invocation,
- //! so they will have to share the same base ID and we need to give each template a new ID.
- //! The id of the template will be something like file!():line!():col!():ID where ID increases for
- //! each nested template.
- //!
- //! - The IDs of dynamic nodes relative to the template they live in. This is somewhat easy to track
- //! but needs to happen on a per-template basis.
- //!
- //! - The IDs of formatted strings in debug mode only. Any formatted segments like "{x:?}" get pulled out
- //! into a pool so we can move them around during hot reloading on a per-template basis.
- //!
- //! - The IDs of component property literals in debug mode only. Any component property literals like
- //! 1234 get pulled into the pool so we can hot reload them with the context of the literal pool.
- //!
- //! We solve this by parsing the structure completely and then doing a second pass that fills in IDs
- //! by walking the structure.
- //!
- //! This means you can't query the ID of any node "in a vacuum" - these are assigned once - but at
- //! least they're stable enough for the purposes of hotreloading
- //!
- //! ```rust, ignore
- //! rsx! {
- //! div {
- //! class: "hello",
- //! id: "node-{node_id}", <--- {node_id} has the formatted segment id 0 in the literal pool
- //! ..props, <--- spreads are not reloadable
- //!
- //! "Hello, world! <--- not tracked but reloadable in the template since it's just a string
- //!
- //! for item in 0..10 { <--- both 0 and 10 are technically reloadable, but we don't hot reload them today...
- //! div { "cool-{item}" } <--- {item} has the formatted segment id 1 in the literal pool
- //! }
- //!
- //! Link {
- //! to: "/home", <-- hotreloadable since its a component prop literal (with component literal id 0)
- //! class: "link {is_ready}", <-- {is_ready} has the formatted segment id 2 in the literal pool and the property has the component literal id 1
- //! "Home" <-- hotreloadable since its a component child (via template)
- //! }
- //! }
- //! }
- //! ```
- use self::location::DynIdx;
- use crate::innerlude::Attribute;
- use crate::*;
- use proc_macro2::TokenStream as TokenStream2;
- use proc_macro2_diagnostics::SpanDiagnosticExt;
- use syn::parse_quote;
- type NodePath = Vec<u8>;
- type AttributePath = Vec<u8>;
- /// A set of nodes in a template position
- ///
- /// this could be:
- /// - The root of a callbody
- /// - The children of a component
- /// - The children of a for loop
- /// - The children of an if chain
- ///
- /// The TemplateBody when needs to be parsed into a surrounding `Body` to be correctly re-indexed
- /// By default every body has a `0` default index
- #[derive(PartialEq, Eq, Clone, Debug)]
- pub struct TemplateBody {
- pub roots: Vec<BodyNode>,
- pub template_idx: DynIdx,
- pub node_paths: Vec<NodePath>,
- pub attr_paths: Vec<(AttributePath, usize)>,
- pub dynamic_text_segments: Vec<FormattedSegment>,
- pub diagnostics: Diagnostics,
- }
- impl Parse for TemplateBody {
- /// Parse the nodes of the callbody as `Body`.
- fn parse(input: ParseStream) -> Result<Self> {
- let children = RsxBlock::parse_children(input)?;
- let mut myself = Self::new(children.children);
- myself
- .diagnostics
- .extend(children.diagnostics.into_diagnostics());
- Ok(myself)
- }
- }
- /// Our ToTokens impl here just defers to rendering a template out like any other `Body`.
- /// This is because the parsing phase filled in all the additional metadata we need
- impl ToTokens for TemplateBody {
- fn to_tokens(&self, tokens: &mut TokenStream2) {
- // If the nodes are completely empty, insert a placeholder node
- // Core expects at least one node in the template to make it easier to replace
- if self.is_empty() {
- // Create an empty template body with a placeholder and diagnostics + the template index from the original
- let empty = Self::new(vec![BodyNode::RawExpr(parse_quote! {()})]);
- let default = Self {
- diagnostics: self.diagnostics.clone(),
- template_idx: self.template_idx.clone(),
- ..empty
- };
- // And then render the default template body
- default.to_tokens(tokens);
- return;
- }
- // If we have an implicit key, then we need to write its tokens
- let key_tokens = match self.implicit_key() {
- Some(tok) => quote! { Some( #tok.to_string() ) },
- None => quote! { None },
- };
- let roots = self.quote_roots();
- // Print paths is easy - just print the paths
- let node_paths = self.node_paths.iter().map(|it| quote!(&[#(#it),*]));
- let attr_paths = self.attr_paths.iter().map(|(it, _)| quote!(&[#(#it),*]));
- // For printing dynamic nodes, we rely on the ToTokens impl
- // Elements have a weird ToTokens - they actually are the entrypoint for Template creation
- let dynamic_nodes: Vec<_> = self.dynamic_nodes().collect();
- // We could add a ToTokens for Attribute but since we use that for both components and elements
- // They actually need to be different, so we just localize that here
- let dyn_attr_printer: Vec<_> = self
- .dynamic_attributes()
- .map(|attr| attr.rendered_as_dynamic_attr())
- .collect();
- let dynamic_text = self.dynamic_text_segments.iter();
- let index = self.template_idx.get();
- let diagnostics = &self.diagnostics;
- let hot_reload_mapping = self.hot_reload_mapping(quote! { ___TEMPLATE_NAME });
- let vnode = quote! {
- #[doc(hidden)] // vscode please stop showing these in symbol search
- const ___TEMPLATE_NAME: &str = {
- const PATH: &str = dioxus_core::const_format::str_replace!(file!(), "\\\\", "/");
- const NORMAL: &str = dioxus_core::const_format::str_replace!(PATH, '\\', "/");
- dioxus_core::const_format::concatcp!(NORMAL, ':', line!(), ':', column!(), ':', #index)
- };
- #[cfg(not(debug_assertions))]
- {
- #[doc(hidden)] // vscode please stop showing these in symbol search
- static ___TEMPLATE: dioxus_core::Template = dioxus_core::Template {
- name: ___TEMPLATE_NAME,
- roots: &[ #( #roots ),* ],
- node_paths: &[ #( #node_paths ),* ],
- attr_paths: &[ #( #attr_paths ),* ],
- };
- // NOTE: Allocating a temporary is important to make reads within rsx drop before the value is returned
- #[allow(clippy::let_and_return)]
- let __vnodes = dioxus_core::VNode::new(
- #key_tokens,
- ___TEMPLATE,
- Box::new([ #( #dynamic_nodes ),* ]),
- Box::new([ #( #dyn_attr_printer ),* ]),
- );
- __vnodes
- }
- #[cfg(debug_assertions)]
- {
- // The key is important here - we're creating a new GlobalSignal each call to this
- // But the key is what's keeping it stable
- let __template = GlobalSignal::with_key(
- || #hot_reload_mapping,
- ___TEMPLATE_NAME
- );
- __template.maybe_with_rt(|__template_read| {
- let mut __dynamic_literal_pool = dioxus_core::internal::DynamicLiteralPool::new(
- vec![ #( #dynamic_text.to_string() ),* ],
- );
- let mut __dynamic_value_pool = dioxus_core::internal::DynamicValuePool::new(
- vec![ #( #dynamic_nodes ),* ],
- vec![ #( #dyn_attr_printer ),* ],
- __dynamic_literal_pool
- );
- __dynamic_value_pool.render_with(__template_read)
- })
- }
- };
- tokens.append_all(quote! {
- dioxus_core::Element::Ok({
- #diagnostics
- #vnode
- })
- });
- }
- }
- impl TemplateBody {
- /// Create a new TemplateBody from a set of nodes
- ///
- /// This will fill in all the necessary path information for the nodes in the template and will
- /// overwrite data like dynamic indexes.
- pub fn new(nodes: Vec<BodyNode>) -> Self {
- let mut body = Self {
- roots: vec![],
- template_idx: DynIdx::default(),
- node_paths: Vec::new(),
- attr_paths: Vec::new(),
- dynamic_text_segments: Vec::new(),
- diagnostics: Diagnostics::new(),
- };
- // Assign paths to all nodes in the template
- body.assign_paths_inner(&nodes);
- body.validate_key();
- // And then save the roots
- body.roots = nodes;
- body
- }
- pub fn is_empty(&self) -> bool {
- self.roots.is_empty()
- }
- pub(crate) fn implicit_key(&self) -> Option<&AttributeValue> {
- match self.roots.first() {
- Some(BodyNode::Element(el)) => el.key(),
- Some(BodyNode::Component(comp)) => comp.get_key(),
- _ => None,
- }
- }
- /// Ensure only one key and that the key is not a static str
- ///
- /// todo: we want to allow arbitrary exprs for keys provided they impl hash / eq
- fn validate_key(&mut self) {
- let key = self.implicit_key();
- if let Some(attr) = key {
- let diagnostic = match &attr {
- AttributeValue::AttrLiteral(ifmt) => {
- if ifmt.is_static() {
- ifmt.span().error("Key must not be a static string. Make sure to use a formatted string like `key: \"{value}\"")
- } else {
- return;
- }
- }
- _ => attr
- .span()
- .error("Key must be in the form of a formatted string like `key: \"{value}\""),
- };
- self.diagnostics.push(diagnostic);
- }
- }
- pub fn get_dyn_node(&self, path: &[u8]) -> &BodyNode {
- let mut node = self.roots.get(path[0] as usize).unwrap();
- for idx in path.iter().skip(1) {
- node = node.element_children().get(*idx as usize).unwrap();
- }
- node
- }
- pub fn get_dyn_attr(&self, path: &AttributePath, idx: usize) -> &Attribute {
- match self.get_dyn_node(path) {
- BodyNode::Element(el) => &el.merged_attributes[idx],
- _ => unreachable!(),
- }
- }
- pub fn dynamic_attributes(&self) -> impl DoubleEndedIterator<Item = &Attribute> {
- self.attr_paths
- .iter()
- .map(|(path, idx)| self.get_dyn_attr(path, *idx))
- }
- pub fn dynamic_nodes(&self) -> impl DoubleEndedIterator<Item = &BodyNode> {
- self.node_paths.iter().map(|path| self.get_dyn_node(path))
- }
- fn quote_roots(&self) -> impl Iterator<Item = TokenStream2> + '_ {
- self.roots.iter().map(|node| match node {
- BodyNode::Element(el) => quote! { #el },
- BodyNode::Text(text) if text.is_static() => {
- let text = text.input.to_static().unwrap();
- quote! { dioxus_core::TemplateNode::Text { text: #text } }
- }
- _ => {
- let id = node.get_dyn_idx();
- quote! { dioxus_core::TemplateNode::Dynamic { id: #id } }
- }
- })
- }
- /// Iterate through the literal component properties of this rsx call in depth-first order
- pub(crate) fn literal_component_properties(&self) -> impl Iterator<Item = &HotLiteral> + '_ {
- self.dynamic_nodes()
- .filter_map(|node| {
- if let BodyNode::Component(component) = node {
- Some(component)
- } else {
- None
- }
- })
- .flat_map(|component| {
- component.fields.iter().filter_map(|field| {
- if let AttributeValue::AttrLiteral(literal) = &field.value {
- Some(literal)
- } else {
- None
- }
- })
- })
- }
- fn hot_reload_mapping(&self, name: impl ToTokens) -> TokenStream2 {
- let key = if let Some(AttributeValue::AttrLiteral(HotLiteral::Fmted(key))) =
- self.implicit_key()
- {
- quote! { Some(#key) }
- } else {
- quote! { None }
- };
- let roots = self.quote_roots();
- let dynamic_nodes = self.dynamic_nodes().map(|node| {
- let id = node.get_dyn_idx();
- quote! { dioxus_core::internal::HotReloadDynamicNode::Dynamic(#id) }
- });
- let dyn_attr_printer = self.dynamic_attributes().map(|attr| {
- let id = attr.get_dyn_idx();
- quote! { dioxus_core::internal::HotReloadDynamicAttribute::Dynamic(#id) }
- });
- let component_values = self
- .literal_component_properties()
- .map(|literal| literal.quote_as_hot_reload_literal());
- quote! {
- dioxus_core::internal::HotReloadedTemplate::new(
- #name,
- #key,
- vec![ #( #dynamic_nodes ),* ],
- vec![ #( #dyn_attr_printer ),* ],
- vec![ #( #component_values ),* ],
- &[ #( #roots ),* ],
- )
- }
- }
- }
|