GithubHelp home page GithubHelp logo

react-webpacker's Introduction

React-Webpacker

React-Webpacker is the smallest, enoughly-tested library for react with webpacker.

Features

  • View Helper to render react component. (using Custom Data Attributes)
  • JavaScript library to render react components, loading only used components.
  • Enoughly view testing.
  • NOT Provide Server-Side Rendering.

Usage

Notes

  • From Ruby to JS, snake_case in props will be transformed to camelCase AUTOMATICALLY.
  • react-webpacker script should be called ONCE per rendered html page, DON'T call in looped views.

ES Modules Way Usage

your-view.js

import ReactWebpacker from 'react-webpacker'
import YourCoolComponent from 'path/to/YourCoolComponent'

const components = {
  YourCoolComponent
}

ReactWebpacker.render(components)

your-view.html.erb

<%= javascript_pack_tag 'your-view', defer: true %>

<%= render_component('YourCoolComponent', {props_key: :value}) %>

or Easy Usage

YourCoolComponent.js

// Add component to `window` scope.
Object.assign(window, { YourCoolComponent })

react-webpacker.js

import ReactWebpacker from 'react-webpacker'

ReactWebpacker.render()

your-view.html.erb

<%= use_components ['path/to/YourCoolComponent'], defer: true %>
<%= javascript_pack_tag 'react-webpacker', defer: true %>

<%= render_component('YourCoolComponent', {props_key: :value}) %>

Notes

  • DOM is rendered in order from the top, so you should call ReactWebpacker#render() with defer attribute.
    • or after render_component
  • You should call ReactWebpacker#render() after use_components, even if using defer.

Compared with React-Rails and React on Rails

  • They provide JavaScript library to load ALL COMPONENTS, too heavy and harmful for browser performance.
  • They provide Server-Side Rendering, so library is too large.
  • They don't test JavaScript library about rendering by E2E testing.

Supports

  • Ruby 2.3.x+
  • Webpacker 1.1+
  • Node.js 8.x+

License

MIT

react-webpacker's People

Contributors

euxn23 avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  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.