Coder Social home page Coder Social logo

rajeevbbqq / react-webcomponentify Goto Github PK

View Code? Open in Web Editor NEW

This project forked from a7ul/react-webcomponentify

0.0 1.0 0.0 504 KB

Build Web Components with React or Preact (without any extra effort)

Home Page: https://www.atulr.com/webcomponents-with-react-webcomponentify/

License: MIT License

JavaScript 100.00%

react-webcomponentify's Introduction

react-webcomponentify

npm version

logo

Build and export React Components as Web Components without any extra effort.

Size = ~3kb after gzip

* works nicely with preact aswell: See demo

Show me live demo?

Use cases

  • Export existing react components as web components so you can use them with Vue or Angular.
  • Use react's rich api to build web components with state management, etc. Instruction on how to do exactly that and Live Demo here: https://github.com/master-atul/webcomponents-with-react-webcomponentify
  • Lets say you are writing a component library with web components but you already have a huge collection of component in react.You can use this library to generate a component library with the existing components. And then safely continue to rewrite each one of them behind the scene. This makes sure other teams are not waiting for you to finish.
  • For more crazy people - You can even export your entire react app as a web component and embed it into another app made with Angular or Vue. So you can keep writing newer parts of code in react while keeping your legacy code working on the side.
  • Maybe (not tried) you can embed another old react app (wrapped with this module) inside ur current react app.

Install

npm install react-webcomponentify

or

yarn add react-webcomponentify

Usage

Basic

Simple use case

import React from "react";
import { registerAsWebComponent } from "react-webcomponentify";

export const ExampleReactComponent = () => {
  return <div> Hello </div>;
};

registerAsWebComponent(ExampleReactComponent, "example-component");

In HTML:

<!DOCTYPE html>
<html>
  ....
  <body>
    <example-component />
  </body>
  ....
</html>

Advanced

Sending non string props to react

You can send serializable string props via the html attributes itself. But for props like callback functions or complex objects you can use the setProps method on the element as shown below.

import React from "react";
import { registerAsWebComponent } from "react-webcomponentify";

export const ButtonComponent = props => {
  return (
    <div>
      Hello <button onClick={props.onClick}>{props.text}</button>
    </div>
  );
};

registerAsWebComponent(ButtonComponent, "button-web");

In HTML:

<!DOCTYPE html>
<html>
  ....
  <body>
    <button-web text="click me" id="mybutton" />
  </body>
  ....
  <script>
    const myBtn = document.getElementById("mybutton");
    myBtn.setProps({
      onClick: () => console.log("btn was clicked")
    });
  </script>
</html>

Every custom component built using react-webcomponentify will have an instance method setProps

element.setProps({
  ....
  /* set the props here that you want to send to react */
  ....
})

What about child elements?

Thats possible too ๐Ÿ˜Ž

import React from "react";
import { registerAsWebComponent } from "react-webcomponentify";

// You access the children just like you would in react (using this.props.children)
export const ComponentWithChild = props => {
  return (
    <div>
      Hello World
      {this.props.text}
      <div>{this.props.children}</div>
    </div>
  );
};

registerAsWebComponent(ComponentWithChild, "component-with-child");

In HTML:

<!DOCTYPE html>
<html>
  ....
  <body>
    <component-with-child text="I love children">
      <p>Some child</p>
    </component-with-child>
  </body>
  ....
</html>

This will send <p>Some Child</p> via this.props.children to the React component ComponentWithChild. Note that <p>Some Child</p> is a dom node and not a react component. So it will be wrapped with a simple react component found here: https://github.com/master-atul/react-webcomponentify/blob/master/src/react-dom-child.js But for implementation purposed use it like a regular child component.

TODO

  • Live Demos
  • Maybe Typescript this?
  • Test cases

react-webcomponentify's People

Contributors

a7ul avatar

Watchers

 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.