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-native-final-tree-view

v3.0.0

Published

A React Native tree view component!

Downloads

4,784

Readme

react-native-final-tree-view

A React Native Tree View component!

Installation

yarn add react-native-final-tree-view

Usage

Firstly, you have to define your data. Example:

const family = [
  {
    id: 'Grandparent',
    name: 'Grandpa',
    age: 78,
    children: [
      {
        id: 'Me',
        name: 'Me',
        age: 30,
        children: [
          {
            id: 'Erick',
            name: 'Erick',
            age: 10,
          },
          {
            id: 'Rose',
            name: 'Rose',
            age: 12,
          },
        ],
      },
    ],
  },
]

It is required that each node on the tree have its own id key. Obviously, it should be unique. The tree nodes are defined in the children key. They are an array of objects, following the same structure as the parent.

After defining your data, mount the component. Example:

import React from 'react'
import { Text, View } from 'react-native'

import TreeView from 'react-native-final-tree-view'

function getIndicator(isExpanded, hasChildrenNodes) {
  if (!hasChildrenNodes) {
    return '-'
  } else if (isExpanded) {
    return '\\/'
  } else {
    return '>'
  }
}

function App() {
  return (
    <TreeView
      data={family} // defined above
      renderNode={({ node, level, isExpanded, hasChildrenNodes }) => {
        return (
          <View>
            <Text
              style={{
                marginLeft: 25 * level,
              }}
            >
              {getIndicator(isExpanded, hasChildrenNodes)} {node.name}
            </Text>
          </View>
        )
      }}
    />
  )
}

export default App

This should display:

First render

And, after a few touches:

All expanded

Props

data

Required. The tree data to render. It's an array of objects. Each object should have, at least, the id of the node and the children of it. This structure can be changed via the props idKey and childrenKey, respectively.

renderNode

Required. A function that must return the JSX to render the item. Signature:

renderNode({ node, level, isExpanded, hasChildrenNodes })

Example:

function getIndicator(isExpanded, hasChildrenNodes) {
  if (!hasChildrenNodes) {
    return '-'
  } else if (isExpanded) {
    return '\\/'
  } else {
    return '>'
  }
}

renderNode={({ node, level, isExpanded, hasChildrenNodes }) => (
  <View>
    <Text
      style={{
        marginLeft: 25 * level,
      }}
    >
      {getIndicator(isExpanded, hasChildrenNodes)} {node.name}
    </Text>
  </View>
)}

onNodePress

Optional. A callback fired when a node is pressed. Signature:

onNodePress({ node, level })

It accepts a promise if you want. If you DON'T want the specific node to expand or collapse, return false at the end of this event!!!

onNodeLongPress

Optional. A callback fired when a node is long pressed. Signature:

onNodeLongPress({ node, level })

isNodeExpanded

Optional. Used for custom handling of expanded nodes. Signature:

isNodeExpanded(id)

idKey

Optional. The id key to refer to. Defaults to id

childrenKey

Optional. The children key to look for. Defaults to children

activeOpacityNode

Optional. The opacity of the wrapped node. Defaults 0.2

initialExpanded

If nodes should start expanded. Defaults to false

FAQ

If I modify the data prop does it reflect the changes without collapsing the nodes?

No. Once you modify the data, the whole tree goes back to initialExpanded

Are PRs open?

Yes! Feel free to contribute!

License

MIT