npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-immutable-treeview

v0.3.7

Published

React Tree View Component Accept Immutable.js Data

Downloads

17

Readme

react-immutable-treeview

Build Status Coverage Status npm version PRs Welcome

React Tree View Component. Take Advantage of Immutable.js.

Example

An online example from the /example directory can be found here: Here

Screenshots

Install

npm install react-immutable-treeview --save

Quick Start


import React from 'react';
import ReactDOM from 'react-dom';
import ImmutableTree from 'react-immutable-treeview';
import Immutable from "immutable";

const data = {
  title: "react-immutable-treeview",
  expanded: true,
  activated: true,
  children: [
    {
      title: "normal",
      expanded: true,
      children: [
        {
          title: "normal_child",
          expanded: true
        },
        {
          title: "normal_child_with_data",
          data: {
            anyKey: "anyValue"
          }
        },
        {
          title: "normal_child_with_children",
          expanded: false,
          children: [
            {
              title: "child1"
            },
            {
              title: "child2"
            },
            {
              title: "child3"
            },
            {
              title: "child4"
            }
          ]
        }
      ]
    }
  ]
};

class TreeExample extends React.Component {
    constructor(){
      super();
      this.state = {immutableTreeData:Immutable.fromJS(data)};
      this.onExpand = this.onExpand.bind(this);
    }
    onExpand(e, nodePath, toggled) {
      const { immutableTreeData } = this.state;
      this.setState({
        immutableTreeData: immutableTreeData.setIn(
          nodePath.concat('expanded'), toggled)
      })
    }
    render(){
        return (
            <ImmutableTree
                data={this.state.immutableTreeData}
                onExpand={this.onExpand}
            />
        );
    }
}

const content = document.getElementById('app');
ReactDOM.render(<TreeExample/>, app);

Prop Values

data

PropTypes.oneOfType([ImmutablePropTypes.map, ImmutablePropTypes.list]).isRequired

Immutable Data that drives the tree view. State-driven effects can be built by manipulating the attributes in this object. An example can be found in example/data.js

options

{
    nodeHeight: '[optional] string', 
    expandButtonWidth: '[optional] string',
    checkboxWidth: '[optional] Immutable.List',
    checkboxDisplay: '[optional] boolean',
}

Display options of treeview, you can set it here as global or specify every single node in data attributes.

onExpand

PropTypes.func

Callback function when expand button of a node is clicked. Passes 3 attributes: dom event object, node path and it's expand boolean state.

onClick

PropTypes.func

Callback function when label of a node is clicked. Passes 2 attributes: dom event object, node path.

Data Attributes

{
    id: '[optional] string',
    title: 'string',
    children: '[optional] Immutable.List',
    expanded: '[optional] boolean',
    activated: '[optional] boolean',
    checkboxDisplay: '[optional] boolean',
    checked: '[optional] string',
}

id

The component key. If not defined, an auto-generated index is used.

title

The title prop passed into the TreeNode component.

children

The children attached to the node. This value populates the subtree at the specific node. Each child is built from the same basic data structure.

expanded

Visibility of a node's children. False by default.

activated

If true, the node will be highlighted.

checkboxDisplay

override global checkboxDisplay options.

checked

setting checkbox by [checked], [unchecked] or [indeterminate].