be-enhanced [WIP]
be-enhanced provides a base class that enables "casting spells", or enhancing server-rendered DOM elements based on cross-cutting custom attributes. These base classes can also be used during template instantiation for a more optimal repeated web component scenario.
be-enhanced, which focuses on adding custom properties to an element, and be-hive, which focuses on attaching the custom property based on the matching custom attribute, together form a simplified userland implementation of this proposal. Whereas that proposal builds on this really nice idea and allows for a mapping from one "behavior" or "enhancement" to any number of custom attributes (including none), be-enhanced only supports a one-to-one mapping, and doesn't support observing changes to the values of the attributes (as I prefer working through the enhancement property gateway).
be-enhanced provides a much more "conservative" alternative approach to enhancing existing DOM elements, in place of the controversial "is"-based customized built-in element standard-ish. There are, however, a small number of use cases where the is-based built-in approach may be the preferred one.
In contrast to the "is" approach, we can apply multiple behaviors / decorators to the same element:
#shadow-root (open)
<black-eyed-peas
be-on-the-next-level=11
be-rocking-over-that-bass-tremble
be-chilling-with-my-motherfuckin-crew
></black-eyed-peas>
which seems more readable than:
<is-on-the-next-level level=11>
<is-rocking-over-that-base-tremble>
<is-chilling-with-my-motherfunckin-crew>
<black-eyed-peas></black-eyed-peas>
</is-chilling-with-my-motherfuckin-crew>
</is-rocking-over-that-base-tremble>
</is-on-the-next-level>
Not to mention concerns about performance. And then there's this.
Priors
be-enhanced's goals are quite similar to what is achieved via things that go by many names.
We prefer (progressive) "enhancement" as the term, but "decorator", "[cross-cutting] custom attribute", "directive", "behavior" are also acceptable terms.
Differences to these solutions (perhaps):
- This can be used independently of any framework (web component based).
- Each decorator can be imported independently of others via an ES6 module.
- Definition is class-based, but with functional reactive ways of organizing the code ("FROOP")
- Applies exclusively within Shadow DOM realms.
- Reactive properties are managed declaratively via JSON syntax.
- Namespace collisions easily avoidable within each shadow DOM realm.
- Use of namespaced properties allows multiple vendors to apply different enhancements simultaneously.
- be-enhanced provides "isomorphic" support for using the same declarative syntax while transforming templates during template instantiation, as well as while the DOM is sitting in the live DOM tree. But the critical feature is that if the library is not yet loaded during template instantiation, nuk ka problem, the live DOM decorator can apply the logic progressively when the library is loaded. Meaning we can punt during template instantiation, so that render blocking is avoided. And if the library is loaded prior to template instantiation, it can still be supplemented by the live DOM decorator, but the initial work performed during the template instantiation can be skipped by the live DOM decorator.
Prior to that, there was the heretical htc behaviors.
Examples of constructing a be-enhanced progressive enhancement decorator:
The be-enhancement api
be-enhancement commits the cardinal sin of attaching a custom property gateway, "beEnhanced" on all Elements. Being that the platform has shown little to no interest in providing support for progressive enhancement over many decades when such solutions have proven useful, we should feel no guilt whatsoever.
Having this property gateway is a life-saver as far as performance and providing an easy way of integrating enhancements into (some) frameworks.
To set a value on a namespaced property (e.g. via a framework), do the following:
await customElements.whenDefined('be-enhanced');
const base = myElement.beEnhanced.by.aButterBeerCounter;
Object.assign(base, {count: 7});
This should work just fine even if the enhancement a-butter-beer-counter hasn't loaded yet. The enhancement will absorb the settings the moment it becomes attached to the element it is enhancing.
Server-rendered HTML vs Template Instantiated HTML
If the HTML we are working with is rendered by the server, the most effective way of activating the custom enhancement is via the associated attribute:
<button be-counted>Count me</button>
However, activating enhancements via attributes is not ideal when using client side api's to build the API, such as during template instantiation.
As we stated so very long ago, the way to do this most effectively programmatically is:
import('be-counted/be-counted.js');
await customElements.whenDefined('be-enhanced');
const base = myElement.beEnhanced.by.beCounted;
Object.assign(base, {value: 7});
In the example above, we are importing the dependency asynchronously using the dynamic import. This means that depending on the timing the hydration of the enhancement may be done during template instantiation (for example), or after the element being enhanced has been added to the live DOM tree.
Using dynamic import as shown above has the benefit that the dependency will not cause the template instantiation to be render blocked.
Event Notifications
Be-enhancement element decorators/behaviors typically don't, by default, emit events that get bubbled up the DOM tree.
To subscribe to an event:
const myEnhancement = await myElement.beEnhanced.whenDefined('my-enhancement');
myEnhancement.addEventListener('resolved', e => {
})
Alternate attribute names
To be HTML5 compliant, use data-[enh-by-name-of-enhancement]. If enhancing a custom element, chances are significant that the custom element may support an attribute that matches your (short name). To make the chances of this approach nil, the companion to be-enhanced mentioned above, be-hive, only recognizes attributes that start with enh-by- or data-enh-by when attached to a custom element.