Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
The rc-tree npm package is a React component for displaying tree views. It provides flexible and efficient tree components with customizable nodes, drag-and-drop functionality, checkable nodes, and event handling for various actions like select, check, load data asynchronously, and more. It's suitable for implementing features like file systems, nested menus, or any hierarchical data representation.
Basic Tree Structure
This feature allows the creation of a basic tree structure with nested nodes. The `treeData` prop defines the hierarchical structure of the tree.
import Tree from 'rc-tree';
const treeData = [{
title: 'parent 1',
key: '0-0',
children: [{
title: 'child 1-1',
key: '0-0-1',
children: [{
title: 'leaf',
key: '0-0-1-1'
}]
}, {
title: 'child 1-2',
key: '0-0-2',
children: [{
title: 'leaf',
key: '0-0-2-1'
}]
}]
}];
<Tree treeData={treeData} />
Drag-and-Drop
Enables drag-and-drop functionality within the tree, allowing users to reorder nodes by dragging them. Event handlers like `onDragEnter` and `onDrop` can be used to manage the drag-and-drop process.
import Tree from 'rc-tree';
<Tree
treeData={treeData}
draggable
onDragEnter={info => console.log('enter:', info)}
onDrop={info => console.log('drop:', info)}
/>
Checkable Nodes
This feature adds checkboxes to tree nodes, making them selectable. The `onCheck` event handler is triggered when checkboxes are checked or unchecked, allowing for custom handling of these events.
import Tree from 'rc-tree';
<Tree
checkable
onCheck={checkedKeys => console.log('onCheck', checkedKeys)}
treeData={treeData}
/>
Async Data Loading
Supports loading data asynchronously for nodes. This is useful for loading child nodes on demand, for example, when a node is expanded. The `loadData` function is called to fetch child nodes asynchronously.
import Tree from 'rc-tree';
const loadData = treeNode =>
new Promise(resolve => {
setTimeout(() => {
resolve();
}, 1000);
});
<Tree loadData={loadData} treeData={treeData} />
A package that provides a higher-order component for creating sortable drag-and-drop trees. It offers similar drag-and-drop capabilities but focuses more on the sorting aspect within the tree structure, compared to rc-tree's broader feature set.
While not exclusively a tree component library, Ant Design (antd) includes a Tree component with features similar to rc-tree, such as drag-and-drop, checkable nodes, and async data loading. Ant Design's Tree component is styled according to the Ant Design system, providing a consistent look and feel for applications using Ant Design.
tree ui component for react
http://localhost:8018/examples/
online example: http://react-component.github.io/tree/examples/
var React = require('react');
var Tree = require('rc-tree');
var TreeNode = Tree.TreeNode;
React.render(
<Tree>
<TreeNode>leaf </TreeNode>
<TreeNode>leaf </TreeNode>
<Tree/>, container);
name | description | type | default |
---|---|---|---|
className | additional css class of root dom node | String | '' |
prefixCls | prefix class | String | '' |
showLine | whether show line | bool | true |
showIcon | whether show icon | bool | true |
checkable | whether support checked | bool/React Node | false |
defaultExpandAll | expand all treeNodes | bool | false |
defaultExpandedKeys | expand specific treeNodes | String[] | false |
defaultCheckedKeys | default checked treeNodes | String[] | [] |
onCheck | click the treeNode to fire | function(e:{checked:bool,node,checkedKeys}) | - |
name | description | type | default |
---|---|---|---|
className | additional class to treeNode | String | '' |
disabled | whether disabled the treeNode | bool | false |
title | tree/subTree's title | String | '---' |
key | it's used with tree props's defaultExpandedKeys or defaultCheckedKeys | String | treeNode's pos |
npm install
npm start
http://localhost:8003/tests/runner.html?coverage
rc-tree is released under the MIT license.
FAQs
tree ui component for react
The npm package rc-tree receives a total of 576,893 weekly downloads. As such, rc-tree popularity was classified as popular.
We found that rc-tree demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 11 open source maintainers collaborating on the project.
Did you know?
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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.