2024-11-22 10:20:59 +01:00
|
|
|
export class HTMLCustomElement extends HTMLElement{
|
|
|
|
static tagName= "custom-element"; // just suggestion, we can use `el(HTMLCustomElement.tagName)`
|
2024-01-09 21:18:43 +01:00
|
|
|
static observedAttributes= [ "custom-attribute" ];
|
|
|
|
constructor(){
|
|
|
|
super();
|
|
|
|
// nice place to prepare custom element
|
|
|
|
}
|
|
|
|
connectedCallback(){
|
|
|
|
// nice place to render custom element
|
|
|
|
}
|
|
|
|
attributeChangedCallback(name, oldValue, newValue){
|
|
|
|
// listen to attribute changes (see `observedAttributes`)
|
|
|
|
}
|
|
|
|
disconnectedCallback(){
|
|
|
|
// nice place to clean up
|
|
|
|
}
|
|
|
|
// for example, we can mirror get/set prop to attribute
|
|
|
|
get customAttribute(){ return this.getAttribute("custom-attribute"); }
|
|
|
|
set customAttribute(value){ this.setAttribute("custom-attribute", value); }
|
|
|
|
}
|
2024-11-22 10:20:59 +01:00
|
|
|
customElements.define(HTMLCustomElement.tagName, HTMLCustomElement);
|