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

v1.2.5

Published

React Static and Dynamic Table

Downloads

492

Readme

Installation

npm install react-sd-table

Component

import {SDTable} from 'react-sd-table'

<SDTable 
  rows={users} 
  columns={columns}
/>

[!IMPORTANT] Static Data Avoid setting totalRecords if you are using static list. just pass rows and columns for static list. You can also use options and toolbar feature for static data.

[!IMPORTANT] Dynamic Data
For dynamic Data set two porps
loadRecords : loadRecords(params). params object contain the local default or updated setting in the table.
totalRecords : set the total record number.

Set Column for Table


let columns = [
  { label: "Image", indexKey: "image" , validation : { type : "image"}, visible:true,  style : {} },
  { label: "Id", indexKey : "id", validation : { type : "number"}},
  { label: "Role", indexKey: "role", validation : { type : "string"} },
  { label: "Name", indexKey: "firstName", validation : { type : "string"} },
  { label: "city", indexKey: "city" , validation : { type : "String"} },
  { label: "Email", indexKey: "email" , validation : { type : "email",  subject:"Subject", body:"Hello sir/ madam,"} },
  { label: "DOB", indexKey: "birthDate", validation : { type : "date", input : "mm-dd-yy"}, },
  { label: "Phone", indexKey: "phone", validation : { type : "string",}},
  { label: "Gender", indexKey: "gender", validation : { type : 'string'}},
  { label: "Salary", indexKey: "salary", validation : { type : 'number',  append : "", prepand : "$"}},
  { label: "Age", indexKey: "age" , validation : { type : "number"} },
  { label: "Progress", indexKey: "progress" , validation : { type : "progress"}},
  { label: "Description", indexKey: "description" },
]

[!NOTE] Column Structure for SD Table
label : To display in Heading
indexKey : It will match the key in row list to display in appropriate column
visible : default visible . You can make it false to remove from table
style : Help to update style for column. you can create object of standerd style guidlines . eg {"background":"black",color:"white" }
validation : This object help to add some more feature like, append, prepend, input, subject, body, progress

Add Rows for Table

rows = [
{
    "id": 1,
    "firstName": "John",
    "lastName": "Taylor",
    "salary": 4200000,
    "birthDate": "1990-11-30",
    "age": 27,
    "progress": 78,
    "gender": "male",
    "email": "[email protected]",
    "role": "user",
    "image": "https://dummyjson.com/icon/isabellad/128",
    "phone": "+1 458-853-7877",
    "cellStyle": [
      {
        "name": "gender",
        "style": {  "background":"#F3E5F5" }
      }
    ],
    "rowStyle": { "background": "#EF5350" }
  },
...
]

[!NOTE] Row Detail for SD Table
cellStyle : Will Help you to set style for specfic cell
rowStyle : Will Help you to set style for specfic Row

Option to set Sort and Filters

let options = [
   {
     sorting: true,
     sortColumn : [1,2,3],
     sortOrder : 'asc',
     sortBy : 'id'
   },
   {
     searching: true,
     searchColumn : [3,4,7],
   }
]

Component

<SDTable 
 ...
 options={options}
/>

[!NOTE] Row Detail for SD Table
Sorting : Sorting will allow to show sort icon in all table head. If we need specific coloum sorting so set sortColumn with number of column started with 0 ans seprated by comma. sortOrder will set asc or desc order of the column and sortBy will allow to sort that specific column at first.
Searching : Searching make to view all input field search open in all column. We can manage specific search column by adding numbers of column starting from 0 in searchColumn array

ToolBar

let toolbar = {
   tableName :"Employee Listing", 
   tableHeader : true, 
   search: true, 
   download:true, 
   print: true, 
   refresh:true 
}

Component

<SDTable 
 ...
 toolbar={toolbar}
/>

[!NOTE] ToolBar Details tableHeader : Disaply Table Header
tableName : Set any table name

Actions


let actionsList = [
   { label: "Download", action : handleDownload },
   { label: "Delete", action : handleDelete, confirmMsg : "Are you sure to Download?"},
 ]
 

Component

<SDTable 
 ...
 actions={actionsList}
/>

New colum item

let columns = [
    ...
    { label: "", indexKey: "actions" }
]

Callback Function for row

const handleDelete = (e,data) =>{
  console.log(e,data)
}

 const handleDownload = (e,data) =>{
   console.log(e,data)
 }

[!NOTE] Actions Details
Add new item in column with indexKey as actions.
Create the list of items in array. Pass the action list of array in the table actions={actionsList}
Add action as function to get row details.
confirmMsg is help to update to confirmation Message after any action clicked. default Do you want to {label} this record? "

Row per page and Dropdown count of rows per page

<SDTable 
     ...
     rowsPerPage={10}
     rowsPerPageDropdown={[5,10,15,20]}
  />

View records like Table, List or card

<SDTable
   ...
   display="list"
/>
<SDTable
   ...
   display="card"
/>

[!NOTE] Display Style
You can use display proerty to display table like list of item or card view
Default view is Table. use list || card to update the view