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

react-treeviewselect

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-treeviewselect

A react based select control where the drop down is a tree view.

latest
Source
npmnpm
Version
1.0.4
Version published
Maintainers
1
Created
Source

react-treeviewselect

A react based select control where the drop down is a tree view.

React/JS is not my first language, so open to suggestions for improvements as I have not seen a useful version of this control elsewhere, so I want this to be robust.

Features

  • Attempts to be WAI-ARIA compliant compliant although not thoroughly tested. Support for ARIA attributes and keyboard interactions. Issues welcome
  • Mobile friendly
  • Full control over item rendering.
  • Can use with any structure, as it uses callbacks for composing tree.
  • Typescript typings.

Installation

yarn add react-treeviewselect

or

npm install react-treeviewselect --save

Basic Usage

import { TreeViewSelect } from "react-treeviewselect";

function renderManagerLink(manager) {
    return <span
        key={manager.id}
    >
        {manager.name}
    </span>;
}

function renderSelectedManager(manager) {
    return <div className="d-inline-block">{manager.name}</div>;
}

function getChildren(item) {
    return item.reports;
}

function getParent(item) {
    return item.manager;
}

function getKey(item) {
    return item.id;
}

function onSelectedItemChange(item: IManager) {
    console.log(item.name);
}

class Example extends React.Component {
  constructor(props) {
        super(props);

        this.state = {};
        this.onSelectedItemChange = this.onSelectedItemChange.bind(this);
    }

  render() {

    return (
      <TreeViewSelect
                        style={{ width: "20rem" }}
                        defaultCollapsed={1}
                        renderSelectedItem={renderSelectedManager}
                        selectedItem={manager}
                        item={hierarchy.manager}
                        getChildren={getChildren}
                        getParent={getParent}
                        getKey={getKey}
                        renderItem={renderManagerLink}
                        onSelectedItemChange={onSelectedItemChange}
                    />
    );
  }
}

Props

PropTypeRequiredDescription
classNameStringSet a class name for outer TreeViewSelect element.
styleObjectSets a style for TreeViewSelect, can be useful to set a fixed width.
defaultCollapsedNumberUse this to define what level should default to collapsed. Can be useful for big trees to keep just the first few levels open by default.
renderSelectedItemFunctionHow do we render the selected item.
selectedItemObjectCurrently selected item.
itemObjectRoot node of the tree.
getChildrenFunctionUsed on a node to get the children. This allows a flexible data structure as input.
getParentFunctionGet parent for an item. This is used to make sure that selected items are not collapsed.
getKeyFunctionGet the key for a node. Used for item equivalency as well as for React key.
renderItemFunctionUsed to render an item in the treeview.
onSelectedItemChangeFunctionCallback when the selected item changes.

License

MIT

Keywords

react

FAQs

Package last updated on 16 Aug 2017

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