react-custom-element-connector
v1.0.2
Published
A simple connector for custom elements that are used in react applications
Downloads
4
Readme
React Custom Element Wrapper
A simple wrapper that allows you to wrap custom elements in reactjs.
Install
npm install react-custom-element-connector
Usage
Say you have a custom element hello-world
created via pure-lib
with a prop whoIsThere
and an event knockknock
that's triggered when clicked.
const who = "me";
return html`<hello-world
.whoIsThere=${who}
@knockknock=${e => console.log(e.detail)}
></hello-world>`
This element can be used like this:
const who = "me";
<CustomElement
tag="hello-world"
whoIsThere={who}
knockknock={console.log}
/>
The wrapper will take care to:
- transform
camelCase
attributes todashed
, as react doesn't support camelCase for attributes (this will only work if your framework supports that.@angular/elements
andpure-lit
do this out of the box,lit
will need manual work) - attach an event listener to the dom event and adds it to the virtual element.