Skip to content

Latest commit

 

History

History
176 lines (116 loc) · 5.47 KB

README.md

File metadata and controls

176 lines (116 loc) · 5.47 KB

Logo

Join the chat at https://gitter.im/roman01la/html-to-react-components

Extract annotated portions of HTML into React components as separate modules. The structure of HTML is preserved by importing child components and replacing appropriate pieces of HTML with them. As a result you get an entire components tree ready to be rendered.

usage example animation

When to use it

This utility was designed to free React developers from a boring work of translating HTML into components.

Imagine you just got a pile of HTML from your designers. The first thing you will do is break HTML into React components. This is boring and we can automate this.

Installation

$ npm i -g html-to-react-components

Usage

HTML components should be annotated with data-component attribute. The value of the attribute is the name of the React component.

See and run test.js file for usage example and output.

CLI

$ html2react ./src/*.html -c stateless -m es6 -d _ -o components -e jsx

API

import extractReactComponents from 'html-to-react-components';

extractReactComponents(
`<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Document</title>
</head>
<body>

  <header class="header" data-component="Header">

    <h1 class="heading" data-component="Heading">Hello, world!</h1>

    <nav class="nav" data-component="Nav">
      <ul class="list">
        <li class="list-item" data-component="ListItem">#1</li>
        <li class="list-item" data-component="ListItem">#2</li>
      </ul>
    </nav>

  </header>

</body>
</html>
`,
{
  componentType: 'stateless',
  moduleType: false
});

/*
{ Header: 'const Header = () => <header className="header">\n\n    <Heading></Heading>\n\n    <Nav></Nav>\n\n  </header>;',
  Heading: 'const Heading = () => <h1 className="heading">Hello, world!</h1>;',
  Nav: 'const Nav = () => <nav className="nav">\n      <ul className="list">\n        <ListItem></ListItem>\n        <ListItem></ListItem>\n      </ul>\n    </nav>;',
  ListItem: 'const ListItem = () => <li className="list-item">#2</li>;' }
*/

Browserify

Use in a browser environment requires some additional setup:

NO_WRITE_FS

Disable writing to disk by setting the NO_WRITE_FS environment variable:

NO_WRITE_FS=true browserify ...

Alternatively, if you're using envify;

browserify in.js -g [ envify --NO_WRITE_FS ] ...

Note the use of a global flag (-g) for envify to ensure this module gets transformed when it is a dependency.

Error: Cannot find module './parser' from '.../node_modules/babylon'

This is a bug caused by the babylon package (which this project depends upon). While this bug is still alive, you should follow these instructions to work around it.

Options

componentType, -c

Type of generated React components.

Values:

  • stateless
  • es5 (default)
  • es6

moduleType, -m

Type of generated JavaScript modules.

Values:

  • false (do not extract components as modules)
  • es6 (default)
  • cjs (CommonJS)

moduleFileNameDelimiter, -d

Delimiter character to be used in modules filename.

If you don't specify a delimiter, or pass -d without a value, then the component name in the HTML will be used unchanged as the filename. If you do specify a delimiter character, then the module name is broken into words, joined with the delimiter and lower-cased.

output

Configuration options for output to file system.

path, -o

Output directory path.

Default is components directory in the current directory.

fileExtension, -e

Output files extension.

Default value is js.

Resources

A quick video demo on converting a simple HTML page into React components and rendering them into the same looking UI.

Annotating HTML in the editor is not the best experience, because you cannot see rendered UI itself. It's possible to annotate HTML using DevTools. Be aware that you'll have to spend time on copying and pasting markup from DevTools into files which will be processed.

usage example with DevTools animation

Browser extension

extract-to-react is an extension for Chrome and Chromium browsers built on top of html-to-react-components which allows you to extract HTML and CSS into React components and load them in CodePen or JSFiddle.

Contribution

If you spotted a bug, please, submit a pull request with a bug fix. If you would like to add a feature or change existing behaviour, open an issue and tell about what exactly you want to change/add.

License

MIT