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

datable-react

v1.0.4

Published

data table component with reactJS

Downloads

5

Readme

datable-react

Datable is a ReactJS library to create a custom and sortable data table. This is the V1 of this project.

NPM JavaScript Style Guide

Image

Features

  • Searching a direct data
  • Paginate and Sort data
  • Customizable
  • Add table headers
  • Responsive

Install

npm install --save datable-react

or

npm i datable-react

General

import {DataTable} from 'datable-react';
import {Header} from 'datable-react';
import {Table} from 'datable-react';
import {Footer} from 'datable-react';
import {labels, data} from './your-data-repository'

//css module for the table
import "datable-react/dist/index.css";

//to use all the table - Header, table, footer 
<DataTable labels={labels} data={data} />

//to use the header
<Header labels={labels} data={data} />

//to use only the table
<Table labels={labels} data={data} />

//to use the footer
<Footer labels={labels} data={data} />

include data

// titles of columns:
const labels = [ 
      { text: "column title 1", value: "valueTitle1" },
      { text: "column title 2", value: "valueTitle2" },
      { text: "column title 3", value: "valueTitle3" },
      {...},
]

// data in rows:
const data = [ 
      { valueTitle1: "data 1",
        valueTitle2: "data 2",
        valueTitle3: "data 3",
       }
]

// example
const labels = [
    { text: "First Name", value: "firstName" },
    { text: "Last Name", value: "lastName" },
    { text: "Start Date", value: "startDate" },
    { text: "Department", value: "department" },
  ];
  
  const data = [
    {
      firstName: "Tyson",
      lastName: "Doe",
      startDate: "04/14/2021",
      department: "Marketing",
    },
    {
      firstName: "Anna",
      lastName: "Alia",
      startDate: "03/02/2020",
      department: "Marketing",
    },
]

Custom

| Property | Type | Required | Default | Description | | :--------------- | :------ | :------- | :---------------------- | :---------------------------------------------------- | | labels | array | true | [] | Names of columns | | data | array | true | [] | Data in rows | | language | boolean | false | false | false = french, true = english | | firstBackground | string | false | '#5e5d5c' | Background color of columns and active page | | secondBackground | string | false | '#e9e9ed' | Background color of certains rows and page not active | | color | string | false | 'white' | Column font color | | arrowColor | string | false | '#75797a' | Arrow's color to sort data | | customButton | object | false | [] | to customize the previous and next button | | customColumn | object | false | backgroundColor, color | to customize the column component | | customFooter | object | false | [] | to customize the footer component | | customHeader | object | false | [] | to customize the header component | | customPagination | object | false | [] | to customize the pagination | | customRow | object | false | backgroundColor, filter | to customize the row component | | customSearch | object | false | [] | to customize the search section | | customArrow | object | false | [] | to customize arrows to sort data | | customLength | object | false | [] | to customize the section of "show length entries" |

Exemple custom

<DataTable 
labels={labels} 
data={data} 
language={true}
firstBackground={"#038C3E"}
secondBackground={"#DEF4E0"}
arrowColor={"#022601"}
/>

Image

License

MIT © loeMa