New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

react-expandable-treeview

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-expandable-treeview

A simple and fully customizable tree view React component

latest
Source
npmnpm
Version
1.0.1
Version published
Weekly downloads
243
-28.74%
Maintainers
1
Weekly downloads
 
Created
Source

react-expandable-treeview

npm version

A simple and fully customizable tree view React component

Check out the live demo!

Quick start

  • Install the package using yarn add react-expandable-treeview or npm install react-expandable-treeview

  • Import the TreeView component

import TreeView from 'react-expandable-treeview';
  • Define the data you want to pass to TreeView. It should be a recursive array of elements with an unique id and a children optional prop for children elements. Each one of them will be rendered as a tree node. Here is the base object model:
    {
        id: 0,
        children: [
            //...all the children elements*/
        ],
        // ...other user-defined object properties
    }

And an example of the data prop o be passed to TreeView component.

const data = [
    {
        id: 0,
        children: [
            {
                id: 1
            },
            {
                id: 2
            }
        ],
        id: 3,
        children: [
            {
                id: 4,
                children: [
                    {
                        id: 5
                    }
                ]
            }
        ]
    }
]
  • The TreeView component has two required props: data and renderNode. The renderNode prop is a function that allows you to represent the nodes of the tree as fully customizable React components: you can define their structure. In the example we add a custom label attribute to our data elements and we want it to be rendered.
const data = [
    {
        id: 0,
        label: 'A Father'
        children: [
            {
                id: 1,
                label: 'A Son'
            },
            {
                id: 2,
                label: 'Another Son'
            }
        ],
        id: 3,
        label: 'Another Father',
        children: [
            {
                id: 4,
                children: [
                    {
                        id: 5,
                        label: 'Yet Another Son',
                    }
                ]
            }
        ]
    }
]

Now we can render the component inside our application:

<TreeView
    data={data}
    renderNode={({ label }) => <div>{label}</div>}
/>

Props

Here are the props you can pass to TreeView.

Prop NameTypeIs RequiredDefault ValueDescription
dataarrayrequired-The data to display.
renderNodefuncrequired-The node render function
lineColorstringoptional'#4B6DAA'The color of the tree lines
lineWidthnumberoptional0.5Thickness of the tree lines
lineStylestringoptional'solid'Style of the tree lines. Can be 'solid', 'dotted', etc. (all the possible values for 'border-style' CSS attribute)
lineAlphanumberoptional0.4The alpha value of the tree lines
expandButtonColorstringoptional'#4B6DAA'The color of the expand button
nodeSizenumberoptional20The size of the tree leaf icons

Keywords

react

FAQs

Package last updated on 12 Nov 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts