@shoelace-style/react-wrapper

1.0.3 • Public • Published

React Wrapper for Shoelace

A lightweight utility that wraps custom elements ("web components") so they can be used like native React components.

Usage

import wrapCustomElement from '@shoelace/react-wrapper';

const ShoelaceButton = wrapCustomElement('sl-button');

return <ShoelaceButton type="primary">Click me</ShoelaceButton>;

This utility was built for Shoelace, but it should work for just about any custom element.

Why is this necessary?

React and custom elements don't play nicely together. The problem is best described by Custom Elements Everywhere:

Handling data

React passes all data to Custom Elements in the form of HTML attributes. For primitive data this is fine, but the system breaks down when passing rich data, like objects or arrays. In these instances you end up with stringified values like some-attr="[object Object]" which can't actually be used.

Handling events

Because React implements its own synthetic event system, it cannot listen for DOM events coming from Custom Elements without the use of a workaround. Developers will need to reference their Custom Elements using a ref and manually attach event listeners with addEventListener. This makes working with Custom Elements cumbersome.

This utility solves these problems by exposing a native React component that maps properties and events to the underlying custom element.

Readme

Keywords

none

Package Sidebar

Install

npm i @shoelace-style/react-wrapper

Weekly Downloads

3

Version

1.0.3

License

MIT

Unpacked Size

16.1 kB

Total Files

6

Last publish

Collaborators

  • supercodepoet
  • claviska