-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Description
Currently merger procedure:
- Checks if number of child nodes is the same as number of views. If there are more views it creates new one(s).
- Goes through the list and if the child node's connected view is different than merged view, it recreates it completely.
It is wrong because when someone adds view at the top of the list, child nodes are all rewritten nevertheless their views weren't changed. We can optimize it like React does it by adding key property to El and use it to merge child nodes.
Reactions are currently unavailable