Live virtual parent for nodes. Transparent group of nodes. No DOM patching. Production targeted.
const parent1 = document.createElement("div")
parent1.style.background = "hsl(0 40% 60%)"
const parent2 = document.createElement("div")
parent2.style.background = "hsl(200 40% 60%)"
const group = new Group
group.append("123", "456", "789")
parent1.append(group) // So far acts exactly as `DocumentFragment`.
parent2.append(group) // The difference is that the nodes are actually moved.
group.append("000") // And changing nodes of `group` will be reflected in the `parent2`.group is transparent to CSS Selectors, Box Model and Layout Flow,
while changes to group are streamed to parent1 - allowing remote nodes rearranging or owned nodes area.
This is trying to follow as many aspects as possible from my comment. Even though it has several "flaws" or deviations since this implementation sets "No DOM patching" as a goal. Meaning some things may not be possible to fully implement. Other things may not be implemented
This is an implementation variant of DOM DocumentPersistentFragment proposal.
Another implementation variant is made by @WebReflection.
React impacted Web development a lot by introducing JSX. It shifted element composition from "Side Effect" to "Ownership Sharing". And as 1/3 of developers use React (including me), it not only shifts this paradigm for people who uses React, it also affects how people perceive VanillaJS after using React.
I can talk only for myself, but seeing this proposal, it tells me I'm not alone in thinking we need to inherit best practices from React.
I started this project as an experiment since React recently become too conservative, which led to me to understand VanillaJS in a such way that made me realize, it actually could be better than React.
By adopting best things from React like JSX, Fragments, Lifecycle events and "Ownership Sharing" element composition, VanillaJS can easily become the only tool I need to build UI on the daily.
My proposal of NodeGroup and this implementation without DOM patching is my attempt to make this future closer.
I'm also willing to (at least trying to) make this production-ready product, I'm using this in React/SolidJS-like ui building library.
@robbiespeed comment covers this neatly, I also have exact same impression when doing my own research.
This implementation is exactly about fragments, which allows proper "Ownership Sharing" in VanillaJS.
The plan is to implement widely accepted standard that used by frameworks like React, which is based on comment nodes (<!--$-->)
that can be customized for wider usage.
One of the proposed feature of NodeGroup is named groups.
<!--$Named-->
<!--/$Named--><!--<Named>-->
<!--</Named>-->Which are parsed and added to document.groups by names.
This is not possible without DOM patching (even little one).
If anyone shows interest in having this feature, it can be added as Group.list (or similar).
There are two parent determining strategies:
- Nodes read
parentNodeas a targeted parent ofgroupas if nodes are attached withoutgroup. - Nodes read
parentNodeasgroupas if they were direct children ofgroup, while actually being not.
Both these approaches cause confusion (@justinfagnani comment).
Note
In current implementation, the children of the group are not patched,
meaning they will read their parentNode as if nodes are attached without group.
Group extends HTMLElement and registers a custom element group-relay,
which behaves as a container and the pointer to where the children should go.
Group overrides several properties and methods to pretend it is attached to a parent and is actively carrying nodes.
Group can be newable as per this DOM spec - custom-elements-autonomous-example. So it's possible to do new class Group extends HTMLElement { } if it was registered via customElements.define.
group-relay custom element is not actively attached, it's removed once it moves children to the target parent.
group-relay acts only as a pointer where the children go to.