feat: onInit hook

This commit is contained in:
Ayo 2023-09-17 02:05:12 +02:00
parent 1287b42186
commit 7cfef1b9c8
3 changed files with 44 additions and 24 deletions

View file

@ -1,13 +1,17 @@
# Web Component Base
Web Component Base
---
This is a very minimal base class for creating reactive custom elements easily.
When you extend the `WebComponent` class for your component, you only have to define the `template()` and `observedAttributes()`, and changes in any attribute value will automatically cause the UI to render.
The result is a reactive UI on attribute changes.
Optionally, you can
1. define a method [`onChanges`](#hooks) that gets triggered when an attribute value changed
## Table of Contents
1. [Installation](#installation)
1. [Usage](#usage)
1. [Life-Cycle Hooks](#life-cycle-hooks)
1. [`onInit`](#oninit) - the component is connected to the DOM
1. [`onChanges`](#onchanges) - an attribute value changed
## Installation
@ -64,28 +68,40 @@ The result is a reactive UI that updates on attribute changes:
<img alt="UI showing feeling toward Web Components changing from SAD to EXCITED" src="https://git.sr.ht/~ayoayco/web-component-base/blob/main/assets/wc-base-demo.gif" width="400" />
### Hooks
## Life-Cycle Hooks
Currently, you can define behavior when an attribute value changes by defining a method `onChanges` in your component:
Define behavior when certain events in the component's life cycle is triggered by providing hook methods
### onInit()
- gets triggered when the component is connected to the DOM
```js
import WebComponent from "../index.mjs";
export class HelloWorld extends WebComponent {
name = "World";
emotion = "excited";
static get observedAttributes() {
return ["name", "emotion"];
}
onChanges({ previousValue, currentValue }) {
console.log(">>> changed", { previousValue, currentValue });
class ClickableText extends WebComponent {
onInit() {
this.onclick = () => console.log(">>> click!");
}
get template() {
return `
<h1>Hello ${this.name}${this.emotion === "sad" ? ". 😭" : "! 🙌"}</h1>`;
return `<span style="cursor:pointer">Click me!</span>`;
}
}
```
### onChanges()
- gets triggered when an attribute value changed
```js
import WebComponent from "../index.mjs";
class ClickableText extends WebComponent {
onChanges({prev, curr}) {
console.log('>>> something changed', prev, curr)
}
get template() {
return `<span style="cursor:pointer">Click me!</span>`;
}
}
```

View file

@ -5,6 +5,11 @@ export class WebComponent extends HTMLElement {
return "";
}
/**
* triggered when the component is connected to the DOM
*/
onInit() {}
/**
* triggered when an attribute value changed
*/
@ -12,6 +17,7 @@ export class WebComponent extends HTMLElement {
connectedCallback() {
this.render();
this.onInit();
}
attributeChangedCallback(property, previousValue, currentValue) {

View file

@ -2,14 +2,12 @@
import WebComponent from "../index.mjs";
class SimpleText extends WebComponent {
greeting = "Hello";
static get observedAttributes() {
return ["greeting"];
onInit() {
this.onclick = () => console.log(">>> click!");
}
get template() {
return `<p>Simple text ${this.greeting}</p>`;
return `<span>Click me!</span>`;
}
}