@iosio/xact
v0.7.12
Published
modified and reduced version of preact without class components. great for simply rendering jsx inside web components (including shadowRoots)
Downloads
9
Maintainers
Readme
@iosio/xact
modified and reduced version of preact without class components
Great if you just need a solid vdom for rendering JSX inside web components without the need for p/react class components, since lifecycles methods can be handled by the custom element.
Installation
npm install @iosio/xact --save
Quick example
Use @iosio/x or @iosio/x-preact for all the boilerplate set up
import {h, render, Fragment} from "../../src";
customElements.define('my-sweet-component', class extends HTMLElement {
constructor() {
super();
this.root = this.attachShadow({mode: 'open'});
}
static get observedAttributes() {
return ['count']
}
update = (props) => {
render(this.render(props), this.root);
};
render = ({count}) => {
return (
<Fragment>
<h1>Hello </h1>
<h1>I update when my count attribute changes</h1>
<h1>{count}</h1>
</Fragment>
)
};
connectedCallback() {
this.update({count: this.getAttribute('count')})
}
attributeChangedCallback(attr, oldValue, newValue) {
if (oldValue === newValue) return;
this.update({[attr]: newValue})
}
disconnectedCallback() {
if (!this.isConnected) {
render(null, this.root);
}
}
});
const component = document.createElement('my-sweet-component');
document.body.appendChild(component);
let count = 0;
setInterval(() => {
component.setAttribute('count', count++);
}, 1000);