@productbrew/react-native-collapsible-tree
TypeScript icon, indicating that this package has built-in type declarations

0.1.3 • Public • Published

React Native Collapsible Tree

Install

yarn add @productbrew/react-native-collapsible-tree

npm i @productbrew/react-native-collapsible-tree

Usage

./Button.tsx

import React from "react";
import { Text, TouchableHighlight, View } from "react-native";

type ButtonProps = {
    onPress: () => void;
    isSelected: boolean;
    title: string;
};

export default function Button(props: ButtonProps) {
    return (
        <TouchableHighlight
            onPress={props.onPress}
            underlayColor="white"
        >
            <View
                style={{
                    backgroundColor: props.isSelected ? "orange" : "white",
                    flexDirection: "column",
                    margin: 5,
                    padding: 15,
                    borderRadius: 50,
                    shadowColor: "#000",
                    shadowOffset: {
                        width: 0,
                        height: 2,
                    },
                    shadowOpacity: 0.25,
                    shadowRadius: 3.84,
                    elevation: 5,
                }}
            >
                <Text>{props.title}</Text>
            </View>
        </TouchableHighlight>
    );
}

./App.tsx

import React, { useState } from "react";
import { StatusBar } from 'expo-status-bar';
import { StyleSheet, View } from 'react-native';

import Pill, { DataStructure } from '@productbrew/react-native-collapsible-tree';

import Button from "./Button";

const dataStructure: DataStructure[] = [
    {
        id: 1,
        name: "Parent1",
        children: [
            { id: 11, name: "child1" },
            { id: 12, name: "child2" },
            { id: 13, name: "child3" },
            { id: 14, name: "child4" },
        ],
    },
    {
        id: 2,
        name: "Parent2",
        children: [
            { id: 21, name: "child1" },
            { id: 22, name: "child2" },
            { id: 23, name: "child3" },
            { id: 24, name: "child4" },
        ],
    }
];

export default function App() {
    const [selected, setSelected] = useState<number[]>([]);

    return (
        <View style={styles.container}>
            <Pill<{ id: number; name: string }>
            treeData={dataStructure}
            selectedItemId={selected}
            buttonComponent={(itemData: DataStructure, level: number) => {
            const isSelected = !!(selected.find(s => s === itemData.id));

            return (
                <Button
                    onPress={() => {
                        setSelected(isSelected ? selected.filter(s => s !== itemData.id) : [...selected, itemData.id]);
                    }}
                    isSelected={isSelected}
                    title={`${itemData?.name} + ${itemData.children?.length ?? 0}`}
                />
            );
        }}
            />
            <StatusBar style="auto"/>
        </View>
    );
}

const styles = StyleSheet.create({
    container: {
        flex: 1,
        backgroundColor: '#fff',
        alignItems: 'center',
        justifyContent: 'center',
    },
});

🔧 Props

Name Description Required Type Default
treeData Tree elements to render YES Generic Type -
selectedItems List with selected items YES Generic Type List -
buttonComponent Button rendered as tree element YES Function => React.ReactNode -
containerStyle Container Style NO Function => StyleProp -
level Level of current elements NO Number -

📷 Screenhots

iOS Android

Try it out

You can also try out the example app with Expo.

The source code for the example app is under /example folder.

Readme

Keywords

Package Sidebar

Install

npm i @productbrew/react-native-collapsible-tree

Weekly Downloads

50

Version

0.1.3

License

MIT

Unpacked Size

262 MB

Total Files

23059

Last publish

Collaborators

  • dkmiecik
  • some3ody_
  • knowbody
  • czystyl