Socket
Book a DemoInstallSign in
Socket

@productbrew/react-native-collapsible-tree

Package Overview
Dependencies
Maintainers
4
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@productbrew/react-native-collapsible-tree

0.1.3
latest
Source
npmnpm
Version published
Weekly downloads
52
62.5%
Maintainers
4
Weekly downloads
 
Created
Source

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',
    },
});

:wrench: Props

NameDescriptionRequiredTypeDefault
treeDataTree elements to renderYESGeneric Type-
selectedItemsList with selected itemsYESGeneric Type List-
buttonComponentButton rendered as tree elementYESFunction => React.ReactNode-
containerStyleContainer StyleNOFunction => StyleProp-
levelLevel of current elementsNONumber-

:camera: Screenhots

iOSAndroid

Try it out

You can also try out the example app with Expo.

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

Keywords

react-native

FAQs

Package last updated on 12 Nov 2021

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

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.