0.1.7 • Published 8 years ago
@jhohman/react-components v0.1.7
React Components
A suite of Redux powered React UI components.
Install
npm install --save @jhohman/react-componentsLive Demo
Usage
A brief summary of usage. See the demo site for more information.
import React from 'react';
import { render } from 'react-dom';
import { Provider } from 'react-redux';
import { createStore } from 'redux';
// Minimum tree styles
import '@jhohman/react-components/css/Tree.min.css';
import { 
  Tree,  // Component
  treeReducer,  // Reducer is always component name + Reducer.
  TREE_EXPANDED,  // You must use this constant for expanded
  TREE_COLLAPSED   // You must use this constant for collapsed
} from '@jhohman/react-components/Tree.min';
const store = createStore(treeReducer);
const tree = {
  id: 'root',
  label: 'root',
  children: [  // Required at root.
    {
      id: 'element1',
      label: ...,
      children: [  // Optional, everywhere else
        {
          id: 'element1.1',
          label: ...,
          children: ...
        }
      ]
    },
    ...
    {
      id: 'elementN',
      ...
    }
  ]
};
render(
  <Provider store={store}>
    <Tree
      name="myTree"
      selectCallback={selectCallback}
      tree={tree} />
  </Provider>,
  document.body
);Repos
View the repos at the following links: