Lesson guide
Learning objectives
- Explain the main purpose of Custom elements in JavaScript.
- Identify the syntax, APIs, or concepts introduced in this lesson.
- Use the examples to predict how JavaScript will behave before you run similar code.
- Connect this topic to nearby lessons in Web components.
Real-world context
This lesson matters when you need to recognize where Custom elements fits into real JavaScript programs. We can create custom HTML elements, described by our class, with its own methods and properties, events and so on.
Key ideas
- Custom elements is part of the Web components chapter, so it builds on the surrounding concepts rather than standing alone.
- Read each code example in two passes: first for the result, then for the rule that explains the result.
- When a section compares similar features, focus on the condition that makes you choose one feature over another.
Key terms
- Custom elements
- Custom
- elements
- Web components
- JavaScript
We can create custom HTML elements, described by our class, with its own methods and properties, events and so on.
Once a custom element is defined, we can use it on par with built-in HTML elements.
That’s great, as HTML dictionary is rich, but not infinite. There are no <easy-tabs>, <sliding-carousel>, <beautiful-upload>… Just think of any other tag we might need.
We can define them with a special class, and then use as if they were always a part of HTML.
There are two kinds of custom elements:
- Autonomous custom elements – “all-new” elements, extending the abstract
HTMLElementclass. - Customized built-in elements – extending built-in elements, like a customized button, based on
HTMLButtonElementetc.
First we’ll cover autonomous elements, and then move to customized built-in ones.
To create a custom element, we need to tell the browser several details about it: how to show it, what to do when the element is added or removed to page, etc.
That’s done by making a class with special methods. That’s easy, as there are only few methods, and all of them are optional.
Here’s a sketch with the full list:
class MyElement extends HTMLElement { constructor() { super(); // element created } connectedCallback() { // browser calls this method when the element is added to the document // (can be called many times if an element is repeatedly added/removed) } disconnectedCallback() { // browser calls this method when the element is removed from the document // (can be called many times if an element is repeatedly added/removed) } static get observedAttributes() { return [/* array of attribute names to monitor for changes */]; } attributeChangedCallback(name, oldValue, newValue) { } adoptedCallback() { // (happens in document.adoptNode, very rarely used) } // there can be other element methods and properties }
After that, we need to register the element:
// let the browser know that <my-element> is served by our new class customElements.define("my-element", MyElement);
Now for any HTML elements with tag <my-element>, an instance of MyElement is created, and the aforementioned methods are called. We also can document.createElement('my-element') in JavaScript.
Custom element name must contain a hyphen -
Custom element name must have a hyphen -, e.g. my-element and super-button are valid names, but myelement is not.
That’s to ensure that there are no name conflicts between built-in and custom HTML elements.
Example: “time-formatted”
For example, there already exists <time> element in HTML, for date/time. But it doesn’t do any formatting by itself.
Let’s create <time-formatted> element that displays the time in a nice, language-aware format:
<script>
class TimeFormatted extends HTMLElement { // (1)
connectedCallback() {
let date = new Date(this.getAttribute('datetime') || Date.now());
this.innerHTML = new Intl.DateTimeFormat("default", {
year: this.getAttribute('year') || undefined,
month: this.getAttribute('month') || undefined,
day: this.getAttribute('day') || undefined,
hour: this.getAttribute('hour') || undefined,
minute: this.getAttribute('minute') || undefined,
second: this.getAttribute('second') || undefined,
timeZoneName: this.getAttribute('time-zone-name') || undefined,
}).format(date);
}
}
customElements.define("time-formatted", TimeFormatted); // (2)
</script>
<!-- (3) -->
<time-formatted datetime="2019-12-01"
year="numeric" month="long" day="numeric"
hour="numeric" minute="numeric" second="numeric"
time-zone-name="short"
></time-formatted>
November 30, 2019 at 7:00:00 PM EST
- The class has only one method
connectedCallback()– the browser calls it when<time-formatted>element is added to page (or when HTML parser detects it), and it uses the built-in Intl.DateTimeFormat data formatter, well-supported across the browsers, to show a nicely formatted time. - We need to register our new element by
customElements.define(tag, class). - And then we can use it everywhere.
Custom elements upgrade
If the browser encounters any <time-formatted> elements before customElements.define, that’s not an error. But the element is yet unknown, just like any non-standard tag.
Such “undefined” elements can be styled with CSS selector :not(:defined).
When customElement.define is called, they are “upgraded”: a new instance of TimeFormatted
is created for each, and connectedCallback is called. They become :defined.
To get the information about custom elements, there are methods:
customElements.get(name)– returns the class for a custom element with the givenname,customElements.whenDefined(name)– returns a promise that resolves (without value) when a custom element with the givennamebecomes defined.
Rendering in connectedCallback, not in constructor
In the example above, element content is rendered (created) in connectedCallback.
Why not in the constructor?
The reason is simple: when constructor is called, it’s yet too early. The element is created, but the browser did not yet process/assign attributes at this stage: calls to getAttribute would return null. So we can’t really render there.
Besides, if you think about it, that’s better performance-wise – to delay the work until it’s really needed.
The connectedCallback triggers when the element is added to the document. Not just appended to another element as a child, but actually becomes a part of the page. So we can build detached DOM, create elements and prepare them for later use. They will only be actually rendered when they make it into the page.
Observing attributes
In the current implementation of <time-formatted>, after the element is rendered, further attribute changes don’t have any effect. That’s strange for an HTML element. Usually, when we change an attribute, like a.href, we expect the change to be immediately visible. So let’s fix this.
We can observe attributes by providing their list in observedAttributes() static getter. For such attributes, attributeChangedCallback is called when they are modified. It doesn’t trigger for other, unlisted attributes (that’s for performance reasons).
Here’s a new <time-formatted>, that auto-updates when attributes change:
<script>
class TimeFormatted extends HTMLElement {
render() { // (1)
let date = new Date(this.getAttribute('datetime') || Date.now());
this.innerHTML = new Intl.DateTimeFormat("default", {
year: this.getAttribute('year') || undefined,
month: this.getAttribute('month') || undefined,
day: this.getAttribute('day') || undefined,
hour: this.getAttribute('hour') || undefined,
minute: this.getAttribute('minute') || undefined,
second: this.getAttribute('second') || undefined,
timeZoneName: this.getAttribute('time-zone-name') || undefined,
}).format(date);
}
connectedCallback() { // (2)
if (!this.rendered) {
this.render();
this.rendered = true;
}
}
static get observedAttributes() { // (3)
return ['datetime', 'year', 'month', 'day', 'hour', 'minute', 'second', 'time-zone-name'];
}
attributeChangedCallback(name, oldValue, newValue) { // (4)
this.render();
}
}
customElements.define("time-formatted", TimeFormatted);
</script>
<time-formatted id="elem" hour="numeric" minute="numeric" second="numeric"></time-formatted>
<script>
setInterval(() => elem.setAttribute('datetime', new Date()), 1000); // (5)
</script>
12:24:13 AM
- The rendering logic is moved to
render()helper method. - We call it once when the element is inserted into page.
- For a change of an attribute, listed in
observedAttributes(),attributeChangedCallbacktriggers. - …and re-renders the element.
- At the end, we can easily make a live timer.
Rendering order
When HTML parser builds the DOM, elements are processed one after another, parents before children. E.g. if we have <outer><inner></inner></outer>, then <outer> element is created and connected to DOM first, and then <inner>.
That leads to important consequences for custom elements.
For example, if a custom element tries to access innerHTML in connectedCallback, it gets nothing:
<script>
customElements.define('user-info', class extends HTMLElement {
connectedCallback() {
alert(this.innerHTML); // empty (*)
}
});
</script>
<user-info>John</user-info>
If you run it, the alert is empty.
That’s exactly because there are no children on that stage, the DOM is unfinished. HTML parser connected the custom element <user-info>, and is going to proceed to its children, but just didn’t yet.
If we’d like to pass information to custom element, we can use attributes. They are available immediately.
Or, if we really need the children, we can defer access to them with zero-delay setTimeout.
This works:
<script>
customElements.define('user-info', class extends HTMLElement {
connectedCallback() {
setTimeout(() => alert(this.innerHTML)); // John (*)
}
});
</script>
<user-info>John</user-info>
Now the alert in line (*) shows “John”, as we run it asynchronously, after the HTML parsing is complete. We can process children if needed and finish the initialization.
On the other hand, this solution is also not perfect. If nested custom elements also use setTimeout to initialize themselves, then they queue up: the outer setTimeout triggers first, and then the inner one.
So the outer element finishes the initialization before the inner one.
Let’s demonstrate that on example:
<script>
customElements.define('user-info', class extends HTMLElement {
connectedCallback() {
alert(`${this.id} connected.`);
setTimeout(() => alert(`${this.id} initialized.`));
}
});
</script>
<user-info id="outer">
<user-info id="inner"></user-info>
</user-info>
Output order:
- outer connected.
- inner connected.
- outer initialized.
- inner initialized.
We can clearly see that the outer element finishes initialization (3) before the inner one (4).
There’s no built-in callback that triggers after nested elements are ready. If needed, we can implement such thing on our own. For instance, inner elements can dispatch events like initialized, and outer ones can listen and react on them.
Customized built-in elements
New elements that we create, such as <time-formatted>, don’t have any associated semantics. They are unknown to search engines, and accessibility devices can’t handle them.
But such things can be important. E.g, a search engine would be interested to know that we actually show a time. And if we’re making a special kind of button, why not reuse the existing <button> functionality?
We can extend and customize built-in HTML elements by inheriting from their classes.
For example, buttons are instances of HTMLButtonElement, let’s build upon it.
- Extend
HTMLButtonElementwith our class:
class HelloButton extends HTMLButtonElement { /* custom element methods */ }
- Provide the third argument to
customElements.define, that specifies the tag:
customElements.define('hello-button', HelloButton, {extends: 'button'});
There may be different tags that share the same DOM-class, that’s why specifying extends is needed.
- At the end, to use our custom element, insert a regular
<button>tag, but addis="hello-button"to it:
<button is="hello-button">...</button>
Here’s a full example:
<script>
// The button that says "hello" on click
class HelloButton extends HTMLButtonElement {
constructor() {
super();
this.addEventListener('click', () => alert("Hello!"));
}
}
customElements.define('hello-button', HelloButton, {extends: 'button'});
</script>
<button is="hello-button">Click me</button>
<button is="hello-button" disabled>Disabled</button>
Click meDisabled
Our new button extends the built-in one. So it keeps the same styles and standard features like disabled attribute.
References
- HTML Living Standard: https://html.spec.whatwg.org/#custom-elements.
- Compatiblity: https://caniuse.com/#feat=custom-elementsv1.
Common mistakes
- Skipping the small examples and then missing the exact rule that Custom elements depends on.
- Copying code without changing one value at a time to see which part controls the result.
- Treating similar-looking syntax or APIs as interchangeable before checking their edge cases.
Summary
Custom elements can be of two types:
- “Autonomous” – new tags, extending
HTMLElement.
Definition scheme:
class MyElement extends HTMLElement { constructor() { super(); /* ... */ } connectedCallback() { /* ... */ } disconnectedCallback() { /* ... */ } static get observedAttributes() { return [/* ... */]; } attributeChangedCallback(name, oldValue, newValue) { /* ... */ } adoptedCallback() { /* ... */ } } customElements.define('my-element', MyElement); /* <my-element> */
- “Customized built-in elements” – extensions of existing elements.
Requires one more .define argument, and is="..." in HTML:
class MyButton extends HTMLButtonElement { /*...*/ } customElements.define('my-button', MyElement, {extends: 'button'}); /* <button is="my-button"> */
Custom elements are well-supported among browsers. There’s a polyfill https://github.com/webcomponents/polyfills/tree/master/packages/webcomponentsjs.
Predict
Before running this custom-elements model, predict the six output lines. It models the hyphen naming rule, upgrade after define, rendering in connectedCallback, observed attribute changes, ignored unobserved attributes, and customized built-in element registration.
Reveal explanation
The element created before registration is pending until define upgrades it. After upgrade, connectedCallback renders from attributes that are now available. Changing datetime triggers attributeChangedCallback because it is observed; changing title is ignored by the custom element lifecycle. A customized built-in element stores its base tag through the extends option and is used with is="hello-button" in real HTML.
Try it
Change TimeFormatted.observedAttributes to include "title", then predict which output line changes. Then try defining "timeformatted" mentally and explain why the model would throw.
Practice
- Rewrite one example from this lesson without looking at the original, then run it and compare the result.
- Change one input, operator, method call, or option in a code sample and predict what will happen before running it.
- Explain Custom elements in your own words as if you were reviewing it with another learner.
Keep learning
Continue with Shadow DOM when you are ready for the next lesson.