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-generic-table

v1.0.4

Published

Easily & Beautifully create scroll transitions in react!

Downloads

6

Readme

react-generic-table

A generic but very usable table component for react with built-in sorting, configurable cell rendering & item counts, actions support with callbacks, out-of-the-box sorting & loading states and more!

NPM JavaScript Style Guide

Introduction

react-generic-table is a generic table component for react to display data in a table format. It supports custom cell rendering, configurable item counts, actions with callbacks, out-of-the-box sorting & loading states and much more!

Check out examples here!

Install

Npm:

npm install --save react-generic-table

Yarn:

yarn add --save react-generic-table

Usage

import React, { Component } from 'react'

import GenericTable from "react-generic-table";
import "react-generic-table/dist/index.css";

function Example() {
    return(
      <GenericTable
        objArray={[
          { id: 1, name: "J.W.", age: "25", profession: "Developer" },
          { id: 2, name: "Lea", age: "22", profession: "Journalist" },
          { id: 3, name: "Max", age: "34", profession: "Taxi Driver" }
        ]}
        columns={["name", "age", "profession"]}
        {...options}
      />
    )
}

Options

| Name | Type | Default | Description | |---------------------|------------|-------------|------------------------------------------------------------------------------------------------------------------------------------------------| | objArray | Array | null | Array of objects to display in table (Defaults to null which triggers table loading state) | | columns | Array | [] | Array of column names or objects with key as column name and options as value to display in the table | | actions | Array | undefined | Array of action objects with key as action name and value as element function to display in the table (function has access to full row object) | | entityName | String | null | Name of entity to display in table (Defaults to item as generic entity name, useful for making empty state and new links more specific) | | onAction | function | () => {} | Callback function to handle actions (has access to the action and the full row object) | | showCount | boolean | false | Whether to show count of entities in table | | newLink | string | null | Whether to show a link to add new entities to the table (Value is link address) | | actionsColumnName | string | Actions | Custom name for the actions column | | sorting | boolean | true | Whether to enable sorting on columns |

Column Options

Columns can be specified as an array of strings or objects. If specified as a string, the column name will be used as the key and the column header will be the capitalized column name. If specified as an object, the key will be used as the column name and the value will be an object with the following options:

| Name | Type | Default | Description | |--------------|------------|---------|---------------------------------------------------------------------------------------------------------------| | alias | string | null | Column header to display in table (Useful if the key in the object is different than the desired column name) | | capitalize | boolean | true | Whether to capitalize the values in the column rows | | onClick | function | null | Callback function to handle click events on a row value in the column (has access to the full row object) | | Any prop | any | null | Any other prop will be passed to the cell component (useful for custom cell rendering) |

Features

  • 🚀 Simple syntax
  • ⚙️ Minimal config
  • 🎨 Customizable
  • 🌙 Supports Dark Mode
  • 🔍 Out-of-the-box sorting
  • ⌛ Built-in loading state
  • 📭 Built-in empty state
  • ➕🔗 Built-in new link
  • 🔧 Built-in row actions column
  • 🔨 Built-in row actions
  • 🔄 Built-in action callbacks
  • 📊 Built-in count display

License

MIT © alianza