@verkstedt/react-component-hierarchy

1.0.2 • Public • Published

React Component Hierarchy Viewer

npm license PRs Welcome Maintenance

This script uses a fork of pretty-tree to build and display a visual representation of your React component hierarchy in the console. (The fork simply allows for colors of tree nodes to be depth-based)

rch example

Usage

rch is created with the intent of being installed globally, to make it easy to use anywhere on your system. You can do this with

$ npm install -g react-component-hierarchy

Once it is installed, you can run it by passing in the path to the source of the root component to begin with and rch will look for and map all of your root component's child components:

$ rch

  Usage: rch [opts] <path/to/src/of/rootComponent>

  React component hierarchy viewer.

  Options:

    -h, --help             output usage information
    -V, --version          output the version number
    -c, --hide-containers  Hide redux container components

Requirements

Currently rch is v1 and has the following requirements to understand your code:

  • Must have one default export per component source file
  • Components may be defined in any way (es6 React.Component class, functional stateless, or react.createClass)
  • Must use raw non-transpiled JS.
  • Must use JSX
  • Must use ES6 import/export
  • If you are using React Redux, your component must be wrapped and exported with React Redux's connect function, e.g:
import { connect } from 'react-redux';

const SomeComponent = ({ title }) =>
  <div>{title}</div>;

export default connect(
  mapStateToProps,
  mapDispatchToProps
)(SomeComponentContainer)

Or you can use a separate file for your container component which is formatted approximately like this:

import { connect } from 'react-redux';

import SomeComponent from '../components/SomeComponent';

const SomeComponentContainer = connect(
  mapStateToProps,
  mapDispatchToProps
)(SomeComponent);

export default SomeComponentContainer;

(If your container components merely render their children with JSX, that works too.)


Website: blackpixel.com  ·  GitHub: @bpxl-labs  ·  Twitter: @blackpixel  ·  Medium: @bpxl-craft

Dependents (0)

Package Sidebar

Install

npm i @verkstedt/react-component-hierarchy

Weekly Downloads

0

Version

1.0.2

License

MIT

Unpacked Size

15.9 kB

Total Files

13

Last publish

Collaborators

  • zach.verkstedt
  • erolci
  • nuc
  • a.thomas
  • saji