-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds docs about templating, minor housekeeping
- Loading branch information
Showing
5 changed files
with
170 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,149 @@ | ||
# Templates & DOM | ||
|
||
Because `x-element` has zero dependencies it also ships with an integrated template engine. However | ||
|
||
## Customizing your base class | ||
|
||
Developers can choose to override the default template engine that ships with `x-element` according to their preference. | ||
Following is a working example using [lit-html](https://lit.dev): | ||
|
||
``` | ||
// base-element.js | ||
import XElement from 'https://deno.land/x/element/x-element.js'; | ||
import { html, render as litRender, svg } from 'https://unpkg.com/[email protected]/lit-html.js'; | ||
import { repeat } from 'https://unpkg.com/[email protected]/directives/repeat.js'; | ||
export default class BaseElement extends XElement { | ||
static get templateEngine() { | ||
const render = (container, template) => litRender(template, container); | ||
return { render, html, repeat }; | ||
} | ||
} | ||
``` | ||
|
||
Use it in your elements like this: | ||
|
||
``` | ||
// my-custom-element.js | ||
import BaseElement from './base-element.js'; | ||
class MyCustomElement extends BaseElement { | ||
static get properties() { | ||
return { | ||
items: { | ||
type: Array, | ||
}, | ||
}; | ||
} | ||
static template(html, { repeat }) { | ||
return ({ items }) => { | ||
return html` | ||
<div id="container"> | ||
${repeat(items, item => item.id, item => html` | ||
<div id="${item.id}">${item.label}</div> | ||
`)} | ||
</div> | ||
`; | ||
}; | ||
} | ||
} | ||
customElements.define('my-custom-element', MyCustomElement); | ||
``` | ||
|
||
A more complete implementation with all of the Lit directives can be viewed [here](../demo/lit-html/). | ||
|
||
## Choosing your template engine(s) | ||
|
||
Because native [custom elements](https://developer.mozilla.org/en-US/docs/Web/API/Web_components/Using_custom_elements) are now part of the browser specification it is important to distinguish `x-element` from other popular JavaScript frameworks. **The manner in which custom elements are defined is framework agnostic.** Here's more explanation: | ||
|
||
- We register a new custom element `my-custom-element` within the current page context using a native browser API: `customElements.define('my-custom-element', MyCustomElement);` | ||
- If the features of our custom element are really basic, we could do this easily without any libraries. As the feature becomes more complex some common boilerplate starts to emerge; this spurred the creation of the `x-element` project. | ||
- Regardless of the manner in which the element has been defined, the current page context now guarantees a relationship between the new tag `<my-custom-element>` and the class `MyCustomElement`. This concept is critical to understand because this normalization liberates developers from the need to choose a single framework (or framework version) to define their features. | ||
- Note that it is possible to create a DOM node named `my-custom-element` _before_ the custom element has been defined via `customElements.define('my-custom-element', MyCustomElement)`. This can be done using declarative HTML like `<my-custom-element></my-custom-element>` or with imperative API calls like `const el = document.createElement('my-custom-element')`. At this stage the `my-custom-element` DOM node is functionally equivalent to a `span`. | ||
- When `my-custom-element` is eventually defined within the page context all instances of that element are instantly "upgraded" using the `MyCustomElement` class. This is the second important concept: DOM composition is independent from custom element definition. This decoupling enables composible feature developers to have flexibility when selecting a DOM template engine. Because child nodes within `my-custom-element` can be fully encapsulated using the [Shadow DOM](https://developer.mozilla.org/en-US/docs/Web/API/Web_components/Using_shadow_DOM) creating and managing them becomes an implementation detail. | ||
|
||
Consider the following illustration... | ||
|
||
``` | ||
Node composition looks like: | ||
+-- BODY -------------------------------------+ | ||
| | | ||
| +-- DIV #root ----------------------+ | | ||
| | | | | ||
| | +-- DIV #component -------+ | | | ||
| | | | | | | ||
| | | DIV #light | | | | ||
| | | | | | | ||
| | +-------------------------+ | | | ||
| | | | | ||
| | +-- MY-CUSTOM-ELEMENT ----+ | | | ||
| | | | | | | ||
| | | DIV #shadow | | | | ||
| | | | | | | ||
| | +-------------------------+ | | | ||
| | | | | ||
| +-----------------------------------+ | | ||
| | | ||
+---------------------------------------------+ | ||
The declarative Light DOM representation looks like: | ||
<body> | ||
<div id="root"> | ||
<div id="component"> | ||
<div id="light"></div> | ||
</div> | ||
<my-custom-element></my-custom-element> | ||
<my-app> | ||
</body> | ||
``` | ||
|
||
We can generate these nodes any way we prefer while leveraging `my-custom-element`. In this scenario we will use `React` and `ReactDOM` to accomplish this: | ||
|
||
``` | ||
const root = ReactDOM.createRoot( | ||
document.getElementById('root') | ||
); | ||
const example = ( | ||
<> | ||
<div id="component"> | ||
<div id="global"></div> | ||
</div> | ||
<my-custom-element/> | ||
</> | ||
); | ||
root.render(example); | ||
``` | ||
|
||
A working example can be found (here)[../demo/react/] | ||
|
||
### Important note regarding React versions before React 19 | ||
|
||
Because `my-custom-element` has no bound properties, the above example works as expected. `ReactDOM` will generate and attach `<my-custom-element>` to your root just like any other native element. However **React 18 and all prior versions remain incompatible with custom elements**, due to a variety of past design decisions that were deliberated at length [here](https://github.com/facebook/react/issues/11347). In short, React's original property binding and event management system predates the custom element specification. Addressing the incompatibility causes breaking changes to the framework which needed careful consideration. | ||
|
||
Fortunately the React team recently [announced support for custom elements](https://react.dev/blog/2024/04/25/react-19#support-for-custom-elements) in its next major version, React 19. | ||
|
||
--- | ||
|
||
## Summary | ||
|
||
Features distributed as custom elements are framework and library agnostic. Thus custom elements can integrate with [any modern framework](https://custom-elements-everywhere.com/). By using native ShadowDOM encapsulation developers can choose the manner in which they manage the DOM while avoiding the risk of vendor lock-in. | ||
|
||
Key concepts repeated: | ||
|
||
* Custom elements are not a framework (native feature) | ||
* Custom elements provide DOM, JS and CSS encapsulation (native feature) | ||
* Developers can choose a framework to manage the DOM within their custom element | ||
* Developers can choose a framework to manage the DOM that leverages their custom elements | ||
* Developers can work with custom elements without using any framework at all (native feature) | ||
* Developers can mix and match frameworks within the same page context | ||
* It's all good baby |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters