figma-tree
TypeScript icon, indicating that this package has built-in type declarations

0.0.11 • Public • Published

Tree

npm npm Donate npm bundle size

A React tree component that looks similar to Figma tree, a tree ui component that has all the tree functionalities

Document

https://noxxxxxxxx.github.io/tree/

How to use

In an ideal scenario, we only store the necessary data in the database. When retrieving data to construct a tree, we may need to extend some attributes in the tree nodes to align with our custom logic. So we need an API fieldNames to tell the component which nodes can be inserted into other nodes.

Confirm whether the attributes are consistent. If they are not consistent, use fieldNames to set them.

import Tree from 'figma-tree'
import 'figma-tree/dist/style.css'

export default App () => {
  const data= []
  const config = {}

  return (
    return (
    <Tree
      {...config}
      data={data}
    />
  )
  )
}

Feature

  • [x] copy node
  • [x] paste node
  • [x] cut node
  • [x] fold node
  • [x] hidden node
  • [x] lock node
  • [x] move node
  • [x] remove node
  • [x] select single node
  • [x] select multi nodes
  • [x] context menu
  • [x] change selected color
  • [x] node icon
  • [x] custom indent size
  • [x] draggable
  • [x] theme option

Develop

Feel free to fork or clone this repository.

pnpm i

npm run dev

LICENSE

This repository is published under MIT license

Package Sidebar

Install

npm i figma-tree

Weekly Downloads

3

Version

0.0.11

License

MIT

Unpacked Size

78 kB

Total Files

6

Last publish

Collaborators

  • brooks2harry