0.1.7 • Published 6 years ago

@jhohman/react-components v0.1.7

Weekly downloads
-
License
ISC
Repository
bitbucket
Last release
6 years ago

React Components

A suite of Redux powered React UI components.

Install

npm install --save @jhohman/react-components

Live 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:

0.1.7

6 years ago

0.1.6

6 years ago

0.1.5

6 years ago

0.1.4

6 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago