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-drilld

v1.2.0

Published

> The best DrillDown for folder or graph or tree structure package for react

Downloads

9

Readme

react-drilld

The best DrillDown for folder or graph or tree structure package for react

GitHub branch checks state GitHub issues GitHub npm Website GitHub language count GitHub top language GitHub code size in bytes

What is this?

This package is a React component that can display graphic, tree or folder structures as a drill-down technique. You can call the data simply or using the api and display it to the users. Users can now easily analyze unstructured data that is difficult to understand and select their items in an analyzed and comprehensible way.


Table of Contents


Installation

You can install this package in two ways simultaneously

install with npm

npm install react-drilld

install with yarn

yarn add react-drilld

Usage

import {DrillD} from 'react-drilld';

or

import DrillD from 'react-drilld';

Examples

Simple

simple example for show simple folder structure data

simple

import React, { Component } from 'react';
import {DrillD} from 'react-drilld';

function App() {
  return (
    <div className="App">
      <DrillD
        title="Choose Folder or File"
        folders={[
          {
            name: 'Folder A',
            children: [{name: 'File A1'}, {name: 'File A2'}, {name: 'Folder AA', children: [{name: 'File AA1'}]}]
          },
          {
            name: 'File 1'
          },
          {
            name: 'Folder B',
            children: [{name: 'File B1'}, {name: 'File A2'}, {name: 'Folder BB', children: [{name: 'File BB1'}]}]
          },
        ]}
      />
    </div>
  );
}

Advance

advance example for show folder structure data with fetch from url

advance

import React, { Component } from 'react';
import {DrillD} from 'react-drilld';

function App() {
  return (
    <DrillD
      title="Choose Category"
      url="https://api.stlouisfed.org/fred/category/children"
      mode="multiple"
      showFullPath
      isSelectableFolder
      queryParams={{api_key: 'f8d2c84d4b22cefd6a6e1d5e78128c61', file_type: 'json'}}
      selectFolderQueryParams={(folder: any) => ({category_id: folder?.id})}
      fetchedChildrenDataPath={['categories']}
      folderKey
    />
  );
}

more Advance

more advance example for show folder structure data with fetch from dynamic url for every depth

moreAdvance

import React, { Component } from 'react';
import {DrillD} from 'react-drilld';

function App() {
  return (
    <DrillD
      title="Choose city"
      url={[
        'https://api.countrystatecity.in/v1/countries',
        'https://api.countrystatecity.in/v1/countries/{{0.iso2}}/states',
        'https://api.countrystatecity.in/v1/countries/{{0.iso2}}/states/{{1.iso2}}/cities'
      ]}
      maxDepth={2}
      headerRequest={{
        'X-CSCAPI-KEY': 'WG10bkduU1owaVJDQ0I2bGt6VG9pREtoNkZuY2ZlR2Jna1lRVWFPcw=='
      }}
      mode="multiple"
      folderKey
      hasSearch
    />
  );
}

Demo

A demo is worth a thousand words


Documentation

Check the documentation to get you started!


Creator

Sina Shah Oveisi @sinashahoveisi

I love programming and I am interested in popular frameworks or programming languages and I am currently coding with JavaScript and React framework.


License

MIT © Sina Shahoveisi