-
-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy pathnode.rs
910 lines (834 loc) · 34.7 KB
/
node.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
use crate::innerlude::MountId;
use crate::{Attribute, AttributeValue, DynamicNode::*};
use crate::{VNode, VirtualDom, WriteMutations};
use core::iter::Peekable;
use crate::{
arena::ElementId,
innerlude::{ElementPath, ElementRef, VNodeMount, VText},
nodes::DynamicNode,
scopes::ScopeId,
TemplateNode,
};
impl VNode {
pub(crate) fn diff_node(
&self,
new: &VNode,
dom: &mut VirtualDom,
mut to: Option<&mut impl WriteMutations>,
) {
// The node we are diffing from should always be mounted
debug_assert!(
dom.runtime
.mounts
.borrow()
.get(self.mount.get().0)
.is_some()
|| to.is_none()
);
// If the templates are different, we need to replace the entire template
if self.template != new.template {
let mount_id = self.mount.get();
let parent = dom.get_mounted_parent(mount_id);
return self.replace(std::slice::from_ref(new), parent, dom, to);
}
self.move_mount_to(new, dom);
// If the templates are the same, we don't need to do anything, except copy over the mount information
if self == new {
return;
}
// If the templates are the same, we can diff the attributes and children
// Start with the attributes
// Since the attributes are only side effects, we can skip diffing them entirely if the node is suspended and we aren't outputting mutations
if let Some(to) = to.as_deref_mut() {
self.diff_attributes(new, dom, to);
}
// Now diff the dynamic nodes
let mount_id = new.mount.get();
for (dyn_node_idx, (old, new)) in self
.dynamic_nodes
.iter()
.zip(new.dynamic_nodes.iter())
.enumerate()
{
self.diff_dynamic_node(mount_id, dyn_node_idx, old, new, dom, to.as_deref_mut())
}
}
fn move_mount_to(&self, new: &VNode, dom: &mut VirtualDom) {
// Copy over the mount information
let mount_id = self.mount.take();
new.mount.set(mount_id);
if mount_id.mounted() {
let mut mounts = dom.runtime.mounts.borrow_mut();
let mount = &mut mounts[mount_id.0];
// Update the reference to the node for bubbling events
mount.node = new.clone();
}
}
fn diff_dynamic_node(
&self,
mount: MountId,
idx: usize,
old_node: &DynamicNode,
new_node: &DynamicNode,
dom: &mut VirtualDom,
mut to: Option<&mut impl WriteMutations>,
) {
tracing::trace!("diffing dynamic node from {old_node:?} to {new_node:?}");
match (old_node, new_node) {
(Text(old), Text(new)) => {
// Diffing text is just a side effect, if we are diffing suspended nodes and are not outputting mutations, we can skip it
if let Some(to) = to {
let id = ElementId(dom.get_mounted_dyn_node(mount, idx));
self.diff_vtext(to, id, old, new)
}
}
(Placeholder(_), Placeholder(_)) => {}
(Fragment(old), Fragment(new)) => dom.diff_non_empty_fragment(
to,
old,
new,
Some(self.reference_to_dynamic_node(mount, idx)),
),
(Component(old), Component(new)) => {
let scope_id = ScopeId(dom.get_mounted_dyn_node(mount, idx));
self.diff_vcomponent(
mount,
idx,
new,
old,
scope_id,
Some(self.reference_to_dynamic_node(mount, idx)),
dom,
to,
)
}
(old, new) => {
// TODO: we should pass around the mount instead of the mount id
// that would make moving the mount around here much easier
// Mark the mount as unused. When a scope is created, it reads the mount and
// if it is the placeholder value, it will create the scope, otherwise it will
// reuse the scope
let old_mount = dom.get_mounted_dyn_node(mount, idx);
dom.set_mounted_dyn_node(mount, idx, usize::MAX);
let new_nodes_on_stack =
self.create_dynamic_node(new, mount, idx, dom, to.as_deref_mut());
// Restore the mount for the scope we are removing
let new_mount = dom.get_mounted_dyn_node(mount, idx);
dom.set_mounted_dyn_node(mount, idx, old_mount);
self.remove_dynamic_node(mount, dom, to, true, idx, old, Some(new_nodes_on_stack));
// Restore the mount for the node we created
dom.set_mounted_dyn_node(mount, idx, new_mount);
}
};
}
/// Try to get the dynamic node and its index for a root node
pub(crate) fn get_dynamic_root_node_and_id(
&self,
root_idx: usize,
) -> Option<(usize, &DynamicNode)> {
self.template.roots[root_idx]
.dynamic_id()
.map(|id| (id, &self.dynamic_nodes[id]))
}
pub(crate) fn find_first_element(&self, dom: &VirtualDom) -> ElementId {
let mount_id = self.mount.get();
let first = match self.get_dynamic_root_node_and_id(0) {
// This node is static, just get the root id
None => dom.get_mounted_root_node(mount_id, 0),
// If it is dynamic and shallow, grab the id from the mounted dynamic nodes
Some((idx, Placeholder(_) | Text(_))) => {
ElementId(dom.get_mounted_dyn_node(mount_id, idx))
}
// The node is a fragment, so we need to find the first element in the fragment
Some((_, Fragment(children))) => {
let child = children.first().unwrap();
child.find_first_element(dom)
}
// The node is a component, so we need to find the first element in the component
Some((id, Component(_))) => {
let scope = ScopeId(dom.get_mounted_dyn_node(mount_id, id));
dom.get_scope(scope)
.unwrap()
.root_node()
.find_first_element(dom)
}
};
// The first element should never be the default element id (the root element)
debug_assert_ne!(first, ElementId::default());
first
}
pub(crate) fn find_last_element(&self, dom: &VirtualDom) -> ElementId {
let mount_id = self.mount.get();
let last_root_index = self.template.roots.len() - 1;
let last = match self.get_dynamic_root_node_and_id(last_root_index) {
// This node is static, just get the root id
None => dom.get_mounted_root_node(mount_id, last_root_index),
// If it is dynamic and shallow, grab the id from the mounted dynamic nodes
Some((idx, Placeholder(_) | Text(_))) => {
ElementId(dom.get_mounted_dyn_node(mount_id, idx))
}
// The node is a fragment, so we need to find the first element in the fragment
Some((_, Fragment(children))) => {
let child = children.first().unwrap();
child.find_first_element(dom)
}
// The node is a component, so we need to find the first element in the component
Some((id, Component(_))) => {
let scope = ScopeId(dom.get_mounted_dyn_node(mount_id, id));
dom.get_scope(scope)
.unwrap()
.root_node()
.find_last_element(dom)
}
};
// The last element should never be the default element id (the root element)
debug_assert_ne!(last, ElementId::default());
last
}
/// Diff the two text nodes
///
/// This just sets the text of the node if it's different.
fn diff_vtext(&self, to: &mut impl WriteMutations, id: ElementId, left: &VText, right: &VText) {
if left.value != right.value {
to.set_node_text(&right.value, id);
}
}
pub(crate) fn replace(
&self,
right: &[VNode],
parent: Option<ElementRef>,
dom: &mut VirtualDom,
to: Option<&mut impl WriteMutations>,
) {
self.replace_inner(right, parent, dom, to, true)
}
/// Replace this node with new children, but *don't destroy* the old node's component state
///
/// This is useful for moving a node from the rendered nodes into a suspended node
pub(crate) fn move_node_to_background(
&self,
right: &[VNode],
parent: Option<ElementRef>,
dom: &mut VirtualDom,
to: Option<&mut impl WriteMutations>,
) {
self.replace_inner(right, parent, dom, to, false)
}
pub(crate) fn replace_inner(
&self,
right: &[VNode],
parent: Option<ElementRef>,
dom: &mut VirtualDom,
mut to: Option<&mut impl WriteMutations>,
destroy_component_state: bool,
) {
let m = dom.create_children(to.as_deref_mut(), right, parent);
// Instead of *just* removing it, we can use the replace mutation
self.remove_node_inner(dom, to, destroy_component_state, Some(m))
}
/// Remove a node from the dom and potentially replace it with the top m nodes from the stack
pub(crate) fn remove_node<M: WriteMutations>(
&self,
dom: &mut VirtualDom,
to: Option<&mut M>,
replace_with: Option<usize>,
) {
self.remove_node_inner(dom, to, true, replace_with)
}
/// Remove a node, but only maybe destroy the component state of that node. During suspense, we need to remove a node from the real dom without wiping the component state
pub(crate) fn remove_node_inner<M: WriteMutations>(
&self,
dom: &mut VirtualDom,
to: Option<&mut M>,
destroy_component_state: bool,
replace_with: Option<usize>,
) {
let mount = self.mount.get();
if !mount.mounted() {
return;
}
// Clean up any attributes that have claimed a static node as dynamic for mount/unmounts
// Will not generate mutations!
self.reclaim_attributes(mount, dom);
// Remove the nested dynamic nodes
// We don't generate mutations for these, as they will be removed by the parent (in the next line)
// But we still need to make sure to reclaim them from the arena and drop their hooks, etc
self.remove_nested_dyn_nodes::<M>(mount, dom, destroy_component_state);
// Clean up the roots, assuming we need to generate mutations for these
// This is done last in order to preserve Node ID reclaim order (reclaim in reverse order of claim)
self.reclaim_roots(mount, dom, to, destroy_component_state, replace_with);
if destroy_component_state {
let mount = self.mount.take();
// Remove the mount information
dom.runtime.mounts.borrow_mut().remove(mount.0);
}
}
fn reclaim_roots(
&self,
mount: MountId,
dom: &mut VirtualDom,
mut to: Option<&mut impl WriteMutations>,
destroy_component_state: bool,
replace_with: Option<usize>,
) {
let roots = self.template.roots;
for (idx, node) in roots.iter().enumerate() {
let last_node = idx == roots.len() - 1;
if let Some(id) = node.dynamic_id() {
let dynamic_node = &self.dynamic_nodes[id];
self.remove_dynamic_node(
mount,
dom,
to.as_deref_mut(),
destroy_component_state,
id,
dynamic_node,
replace_with.filter(|_| last_node),
);
} else if let Some(to) = to.as_deref_mut() {
let id = dom.get_mounted_root_node(mount, idx);
if let (true, Some(replace_with)) = (last_node, replace_with) {
to.replace_node_with(id, replace_with);
} else {
to.remove_node(id);
}
dom.reclaim(id);
} else {
let id = dom.get_mounted_root_node(mount, idx);
dom.reclaim(id);
}
}
}
fn remove_nested_dyn_nodes<M: WriteMutations>(
&self,
mount: MountId,
dom: &mut VirtualDom,
destroy_component_state: bool,
) {
let template = self.template;
for (idx, dyn_node) in self.dynamic_nodes.iter().enumerate() {
let path_len = template.node_paths.get(idx).map(|path| path.len());
// Roots are cleaned up automatically above and nodes with a empty path are placeholders
if let Some(2..) = path_len {
self.remove_dynamic_node(
mount,
dom,
Option::<&mut M>::None,
destroy_component_state,
idx,
dyn_node,
None,
)
}
}
}
fn remove_dynamic_node(
&self,
mount: MountId,
dom: &mut VirtualDom,
mut to: Option<&mut impl WriteMutations>,
destroy_component_state: bool,
idx: usize,
node: &DynamicNode,
replace_with: Option<usize>,
) {
match node {
Component(_comp) => {
let scope_id = ScopeId(dom.get_mounted_dyn_node(mount, idx));
dom.remove_component_node(to, destroy_component_state, scope_id, replace_with);
}
Text(_) | Placeholder(_) => {
let id = ElementId(dom.get_mounted_dyn_node(mount, idx));
if let Some(to) = to {
if let Some(replace_with) = replace_with {
to.replace_node_with(id, replace_with);
} else {
to.remove_node(id);
}
}
dom.reclaim(id)
}
Fragment(nodes) => {
for node in &nodes[..nodes.len() - 1] {
node.remove_node_inner(dom, to.as_deref_mut(), destroy_component_state, None)
}
if let Some(last_node) = nodes.last() {
last_node.remove_node_inner(dom, to, destroy_component_state, replace_with)
}
}
};
}
pub(super) fn reclaim_attributes(&self, mount: MountId, dom: &mut VirtualDom) {
let mut next_id = None;
for (idx, path) in self.template.attr_paths.iter().enumerate() {
// We clean up the roots in the next step, so don't worry about them here
if path.len() <= 1 {
continue;
}
// only reclaim the new element if it's different from the previous one
let new_id = dom.get_mounted_dyn_attr(mount, idx);
if Some(new_id) != next_id {
dom.reclaim(new_id);
next_id = Some(new_id);
}
}
}
pub(super) fn diff_attributes(
&self,
new: &VNode,
dom: &mut VirtualDom,
to: &mut impl WriteMutations,
) {
let mount_id = new.mount.get();
for (idx, (old_attrs, new_attrs)) in self
.dynamic_attrs
.iter()
.zip(new.dynamic_attrs.iter())
.enumerate()
{
let mut old_attributes_iter = old_attrs.iter().peekable();
let mut new_attributes_iter = new_attrs.iter().peekable();
let attribute_id = dom.get_mounted_dyn_attr(mount_id, idx);
let path = self.template.attr_paths[idx];
loop {
match (old_attributes_iter.peek(), new_attributes_iter.peek()) {
(Some(old_attribute), Some(new_attribute)) => {
// check which name is greater
match old_attribute.name.cmp(new_attribute.name) {
// The two attributes are the same, so diff them
std::cmp::Ordering::Equal => {
let old = old_attributes_iter.next().unwrap();
let new = new_attributes_iter.next().unwrap();
// Volatile attributes are attributes that the browser may override so we always update them
let volatile = old.volatile;
// We only need to write the attribute if the attribute is volatile or the value has changed
// and this is not an event listener.
// Interpreters reference event listeners by name and element id, so we don't need to write them
// even if the closure has changed.
let attribute_changed = match (&old.value, &new.value) {
(AttributeValue::Text(l), AttributeValue::Text(r)) => l != r,
(AttributeValue::Float(l), AttributeValue::Float(r)) => l != r,
(AttributeValue::Int(l), AttributeValue::Int(r)) => l != r,
(AttributeValue::Bool(l), AttributeValue::Bool(r)) => l != r,
(AttributeValue::Any(l), AttributeValue::Any(r)) => {
!l.as_ref().any_cmp(r.as_ref())
}
(AttributeValue::None, AttributeValue::None) => false,
(AttributeValue::Listener(_), AttributeValue::Listener(_)) => {
false
}
_ => true,
};
if volatile || attribute_changed {
self.write_attribute(
path,
new,
attribute_id,
mount_id,
dom,
to,
);
}
}
// In a sorted list, if the old attribute name is first, then the new attribute is missing
std::cmp::Ordering::Less => {
let old = old_attributes_iter.next().unwrap();
self.remove_attribute(old, attribute_id, to)
}
// In a sorted list, if the new attribute name is first, then the old attribute is missing
std::cmp::Ordering::Greater => {
let new = new_attributes_iter.next().unwrap();
self.write_attribute(path, new, attribute_id, mount_id, dom, to);
}
}
}
(Some(_), None) => {
let left = old_attributes_iter.next().unwrap();
self.remove_attribute(left, attribute_id, to)
}
(None, Some(_)) => {
let right = new_attributes_iter.next().unwrap();
self.write_attribute(path, right, attribute_id, mount_id, dom, to)
}
(None, None) => break,
}
}
}
}
fn remove_attribute(&self, attribute: &Attribute, id: ElementId, to: &mut impl WriteMutations) {
match &attribute.value {
AttributeValue::Listener(_) => {
to.remove_event_listener(&attribute.name[2..], id);
}
_ => {
to.set_attribute(
attribute.name,
attribute.namespace,
&AttributeValue::None,
id,
);
}
}
}
fn write_attribute(
&self,
path: &'static [u8],
attribute: &Attribute,
id: ElementId,
mount: MountId,
dom: &mut VirtualDom,
to: &mut impl WriteMutations,
) {
match &attribute.value {
AttributeValue::Listener(_) => {
let element_ref = ElementRef {
path: ElementPath { path },
mount,
};
let mut elements = dom.runtime.elements.borrow_mut();
elements[id.0] = Some(element_ref);
to.create_event_listener(&attribute.name[2..], id);
}
_ => {
to.set_attribute(attribute.name, attribute.namespace, &attribute.value, id);
}
}
}
/// Create this rsx block. This will create scopes from components that this rsx block contains, but it will not write anything to the DOM.
pub(crate) fn create(
&self,
dom: &mut VirtualDom,
parent: Option<ElementRef>,
mut to: Option<&mut impl WriteMutations>,
) -> usize {
// Get the most up to date template
let template = self.template;
// Initialize the mount information for this vnode if it isn't already mounted
if !self.mount.get().mounted() {
let mut mounts = dom.runtime.mounts.borrow_mut();
let entry = mounts.vacant_entry();
let mount = MountId(entry.key());
self.mount.set(mount);
tracing::trace!(?self, ?mount, "creating template");
entry.insert(VNodeMount {
node: self.clone(),
parent,
root_ids: vec![ElementId(0); template.roots.len()].into_boxed_slice(),
mounted_attributes: vec![ElementId(0); template.attr_paths.len()]
.into_boxed_slice(),
mounted_dynamic_nodes: vec![usize::MAX; template.node_paths.len()]
.into_boxed_slice(),
});
}
// Walk the roots, creating nodes and assigning IDs
// nodes in an iterator of (dynamic_node_index, path) and attrs in an iterator of (attr_index, path)
let mut nodes = template.node_paths.iter().copied().enumerate().peekable();
let mut attrs = template.attr_paths.iter().copied().enumerate().peekable();
// Get the mounted id of this block
// At this point, we should have already mounted the block
debug_assert!(
dom.runtime.mounts.borrow().contains(
self.mount
.get()
.as_usize()
.expect("node should already be mounted"),
),
"Tried to find mount {:?} in dom.mounts, but it wasn't there",
self.mount.get()
);
let mount = self.mount.get();
// Go through each root node and create the node, adding it to the stack.
// Each node already exists in the template, so we can just clone it from the template
let nodes_created = template
.roots
.iter()
.enumerate()
.map(|(root_idx, root)| {
match root {
TemplateNode::Dynamic { id } => {
// Take a dynamic node off the depth first iterator
nodes.next().unwrap();
// Then mount the node
self.create_dynamic_node(
&self.dynamic_nodes[*id],
mount,
*id,
dom,
to.as_deref_mut(),
)
}
// For static text and element nodes, just load the template root. This may be a placeholder or just a static node. We now know that each root node has a unique id
TemplateNode::Text { .. } | TemplateNode::Element { .. } => {
if let Some(to) = to.as_deref_mut() {
self.load_template_root(mount, root_idx, dom, to);
}
// If this is an element, load in all of the placeholder or dynamic content under this root element too
if matches!(root, TemplateNode::Element { .. }) {
// !!VERY IMPORTANT!!
// Write out all attributes before we load the children. Loading the children will change paths we rely on
// to assign ids to elements with dynamic attributes
if let Some(to) = to.as_deref_mut() {
self.write_attrs(mount, &mut attrs, root_idx as u8, dom, to);
}
// This operation relies on the fact that the root node is the top node on the stack so we need to do it here
self.load_placeholders(
mount,
&mut nodes,
root_idx as u8,
dom,
to.as_deref_mut(),
);
}
// This creates one node on the stack
1
}
}
})
.sum();
// And return the number of nodes we created on the stack
nodes_created
}
}
impl VNode {
/// Get a reference back into a dynamic node
fn reference_to_dynamic_node(&self, mount: MountId, dynamic_node_id: usize) -> ElementRef {
ElementRef {
path: ElementPath {
path: self.template.node_paths[dynamic_node_id],
},
mount,
}
}
pub(crate) fn create_dynamic_node(
&self,
node: &DynamicNode,
mount: MountId,
dynamic_node_id: usize,
dom: &mut VirtualDom,
to: Option<&mut impl WriteMutations>,
) -> usize {
use DynamicNode::*;
match node {
Component(component) => {
let parent = Some(self.reference_to_dynamic_node(mount, dynamic_node_id));
self.create_component_node(mount, dynamic_node_id, component, parent, dom, to)
}
Fragment(frag) => {
let parent = Some(self.reference_to_dynamic_node(mount, dynamic_node_id));
dom.create_children(to, frag, parent)
}
Text(text) => {
// If we are diffing suspended nodes and are not outputting mutations, we can skip it
if let Some(to) = to {
self.create_dynamic_text(mount, dynamic_node_id, text, dom, to)
} else {
0
}
}
Placeholder(_) => {
// If we are diffing suspended nodes and are not outputting mutations, we can skip it
if let Some(to) = to {
tracing::trace!("creating placeholder");
self.create_placeholder(mount, dynamic_node_id, dom, to)
} else {
tracing::trace!("skipping creating placeholder");
0
}
}
}
}
/// Load all of the placeholder nodes for descendent of this root node
///
/// ```rust, no_run
/// # use dioxus::prelude::*;
/// # let some_text = "hello world";
/// # let some_value = "123";
/// rsx! {
/// div { // We just wrote this node
/// // This is a placeholder
/// {some_value}
///
/// // Load this too
/// "{some_text}"
/// }
/// };
/// ```
///
/// IMPORTANT: This function assumes that root node is the top node on the stack
fn load_placeholders(
&self,
mount: MountId,
dynamic_nodes_iter: &mut Peekable<impl Iterator<Item = (usize, &'static [u8])>>,
root_idx: u8,
dom: &mut VirtualDom,
mut to: Option<&mut impl WriteMutations>,
) {
fn collect_dyn_node_range(
dynamic_nodes: &mut Peekable<impl Iterator<Item = (usize, &'static [u8])>>,
root_idx: u8,
) -> Option<(usize, usize)> {
let start = match dynamic_nodes.peek() {
Some((idx, [first, ..])) if *first == root_idx => *idx,
_ => return None,
};
let mut end = start;
while let Some((idx, p)) =
dynamic_nodes.next_if(|(_, p)| matches!(p, [idx, ..] if *idx == root_idx))
{
if p.len() == 1 {
continue;
}
end = idx;
}
Some((start, end))
}
let (start, end) = match collect_dyn_node_range(dynamic_nodes_iter, root_idx) {
Some((a, b)) => (a, b),
None => return,
};
// !!VERY IMPORTANT!!
//
// We need to walk the dynamic nodes in reverse order because we are going to replace the
// placeholder with the new nodes, which will invalidate our paths into the template.
// If we go in reverse, we leave a "wake of destruction" in our path, but our next iteration
// will still be "clean" since we only invalidated downstream nodes.
//
// Forgetting to do this will cause weird bugs like:
// https://github.com/DioxusLabs/dioxus/issues/2809
//
// Which are quite serious.
// There might be more places in this codebase where we need to do `.rev()`
let reversed_iter = (start..=end).rev();
for dynamic_node_id in reversed_iter {
let m = self.create_dynamic_node(
&self.dynamic_nodes[dynamic_node_id],
mount,
dynamic_node_id,
dom,
to.as_deref_mut(),
);
if let Some(to) = to.as_deref_mut() {
// If we actually created real new nodes, we need to replace the placeholder for this dynamic node with the new dynamic nodes
if m > 0 {
// The path is one shorter because the top node is the root
let path = &self.template.node_paths[dynamic_node_id][1..];
to.replace_placeholder_with_nodes(path, m);
}
}
}
}
/// After we have written a root element, we need to write all the attributes that are on the root node
///
/// ```rust, ignore
/// rsx! {
/// div { // We just wrote this node
/// class: "{class}", // We need to set these attributes
/// id: "{id}",
/// style: "{style}",
/// }
/// }
/// ```
///
/// IMPORTANT: This function assumes that root node is the top node on the stack
fn write_attrs(
&self,
mount: MountId,
dynamic_attrbiutes_iter: &mut Peekable<impl Iterator<Item = (usize, &'static [u8])>>,
root_idx: u8,
dom: &mut VirtualDom,
to: &mut impl WriteMutations,
) {
let mut last_path = None;
// Only take nodes that are under this root node
let from_root_node = |(_, path): &(usize, &[u8])| path.first() == Some(&root_idx);
while let Some((attribute_idx, attribute_path)) =
dynamic_attrbiutes_iter.next_if(from_root_node)
{
let attribute = &self.dynamic_attrs[attribute_idx];
let id = match last_path {
// If the last path was exactly the same, we can reuse the id
Some((path, id)) if path == attribute_path => id,
// Otherwise, we need to create a new id
_ => {
let id = self.assign_static_node_as_dynamic(mount, attribute_path, dom, to);
last_path = Some((attribute_path, id));
id
}
};
for attr in &**attribute {
self.write_attribute(attribute_path, attr, id, mount, dom, to);
dom.set_mounted_dyn_attr(mount, attribute_idx, id);
}
}
}
fn load_template_root(
&self,
mount: MountId,
root_idx: usize,
dom: &mut VirtualDom,
to: &mut impl WriteMutations,
) -> ElementId {
// Get an ID for this root since it's a real root
let this_id = dom.next_element();
dom.set_mounted_root_node(mount, root_idx, this_id);
to.load_template(self.template, root_idx, this_id);
this_id
}
/// We have some dynamic attributes attached to a some node
///
/// That node needs to be loaded at runtime, so we need to give it an ID
///
/// If the node in question is the root node, we just return the ID
///
/// If the node is not on the stack, we create a new ID for it and assign it
fn assign_static_node_as_dynamic(
&self,
mount: MountId,
path: &'static [u8],
dom: &mut VirtualDom,
to: &mut impl WriteMutations,
) -> ElementId {
// This is just the root node. We already know it's id
if let [root_idx] = path {
return dom.get_mounted_root_node(mount, *root_idx as usize);
}
// The node is deeper in the template and we should create a new id for it
let id = dom.next_element();
to.assign_node_id(&path[1..], id);
id
}
fn create_dynamic_text(
&self,
mount: MountId,
idx: usize,
text: &VText,
dom: &mut VirtualDom,
to: &mut impl WriteMutations,
) -> usize {
let new_id = mount.mount_node(idx, dom);
// If this is a root node, the path is empty and we need to create a new text node
to.create_text_node(&text.value, new_id);
// We create one node on the stack
1
}
pub(crate) fn create_placeholder(
&self,
mount: MountId,
idx: usize,
dom: &mut VirtualDom,
to: &mut impl WriteMutations,
) -> usize {
let new_id = mount.mount_node(idx, dom);
// If this is a root node, the path is empty and we need to create a new placeholder node
to.create_placeholder(new_id);
// We create one node on the stack
1
}
}
impl MountId {
fn mount_node(self, node_index: usize, dom: &mut VirtualDom) -> ElementId {
let id = dom.next_element();
dom.set_mounted_dyn_node(self, node_index, id.0);
id
}
}