GithubHelp home page GithubHelp logo

shekhardtu / react-to-webcomponent Goto Github PK

View Code? Open in Web Editor NEW

This project forked from bitovi/react-to-web-component

0.0 0.0 0.0 779 KB

Convert react components to native Web Components. Works with Preact too!

License: MIT License

Shell 7.11% JavaScript 83.66% TypeScript 9.24%

react-to-webcomponent's Introduction

react-to-webcomponent

react-to-webcomponent converts React components to custom elements! It lets you share React components as native elements that don't require mounted being through React. The custom element acts as a wrapper for the underlying React component. Use these custom elements with any project that uses HTML even in any framework (vue, svelte, angular, ember, canjs) the same way you would use standard HTML elements.

react-to-webcomponent:

Need help or have questions?

This project is supported by Bitovi, a React consultancy. You can get help or ask questions on our:

Or, you can hire us for training, consulting, or development. Set up a free consultation.

Basic Use

For basic usage, we will use this simple React component:

import React from "react"
import * as ReactDOM from "react-dom/client"
// When using React 16 and 17 import ReactDom with the commented statement below instead:
// import ReactDom from "react-dom"

const Greeting = ({name}) => {
  return (
    <h1>Hello, {name}</h1>
  )
}

With our React component complete, all we have to do is call reactToWebComponent and customElements.define to create and define our custom element:

import reactToWebComponent from "react-to-webcomponent"

const WebGreeting = reactToWebComponent(Greeting, React, ReactDOM)

customElements.define("web-greeting", WebGreeting)

Now we can use <web-greeting> like any other HTML element!

<body>
  <h1>Greeting Demo</h1>

  <web-greeting></web-greeting>
</body>

Note that by using React 18, reactToWebComponent will use the new root API. If your application needs the legacy API, please use React 17

In the above case, the web-greeting custom element is not making use of the name property from our Greeting component.

Working with Attributes

By default, custom elements created by reactToWebComponent only pass properties to the underlying React component. To make attributes work, you must specify your component's properties with PropTypes as follows:

import React from "react"
import PropTypes from "prop-types"
import * as ReactDOM from "react-dom/client"

const Greeting = ({ name }) => {
  return (
    <h1>Hello, {name}</h1>
  )
}

Greeting.propTypes = {
  name: PropTypes.string.isRequired
}

Now reactToWebComponent will know to look for name attributes as follows:

<body>
  <h1>Greeting Demo</h1>

  <web-greeting name="Justin"></web-greeting>
</body>

For projects needing more advanced usage of the web components, see our prgramatic usage and declarative demos.

We also have a complete example using a third party library.

Setup

To install from npm:

npm i react-to-webcomponent

External Examples

Greeting example in a CodePen

Greeting example in CodeSandbox

Bundled JS file available

https://unpkg.com/react-to-webcomponent/dist/react-to-webcomponent.js

How it works

Check out our full API documentation.

reactToWebComponent creates a constructor function whose prototype is a Proxy. This acts as a trap for any property set on instances of the custom element. When a property is set, the proxy:

  • re-renders the React component inside the custom element.
  • creates an enumerable getter / setter on the instance to save the set value and avoid hitting the proxy in the future.

Also:

  • Enumerable properties and values on the custom element are used as the props passed to the React component.
  • The React component is not rendered until the custom element is inserted into the page.

tests

To run tests, first run:

npm run buildtests

This copies the root test file into each of the /tests/react* versioned folders, modifies the ReactDOM import for older versions, and installs the corresponding version of react in that directory.

Then run:

npm run test

We want to hear from you.

Come chat with us about open source in our community Slack.

See what we're up to by following us on Twitter.

react-to-webcomponent's People

Contributors

cded avatar cherifgsoul avatar christopherjbaker avatar ivospinheiro avatar janebitovi avatar justinbmeyer avatar psamusev avatar snoattoh avatar westonvincze avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.