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

v0.0.7

Published

Compact and Easy to use react table(render props pattern)

Downloads

26

Readme

react-compact-table

  • This is compact & easy to use react-compact-table (render props pattern & using styled components)

Getting Started

npm install react-compact-table --save

Dependancies

- styled-components
- lodash

Demo

https://cicada1992.github.io/react-compact-table/

TableProps

| Property | Type | Required? | Description | |:---|:---|:---:|:---| | data | T[] | ✓ | inject your data (array) ✓ | TableColumn | minWidth | string | | If you want to set minWidth, apply this. | maxHeight | string | | maxHeight means body's max height. If table body's height exceed this, will be scrollable. | headerBgColor | string | | default: #ffffff | headerFontSize | string | | default: 12px | headerFontColor | string | | default: black | headerHeight | string | | default: 22px | rowHeight | string | | default: auto (depends on content) | renderFooterChildren | () => React.ReactNode | | If you need footer, use this | footerColor | string | | default: none | selectable | boolean | | activate to select (radio button in first column) | selectedId | string | | inject selected id | noRadioButton | boolean | | you can apply selectable row without radio button | onRowClick | (id: string) => void | | inject callback function to change clicked id | removable | boolean | | activate to remove (be added X icon end of each row) | onRemoveClick | (id: string) => void | | inject callback function to remove clicked id | sortable | boolean | | activate to sort (If you click header label, will be added sorting icon end of each header) | currentSortKey | keyof T | | sort key (same as data key) | currentSortOrder | SortOrder | | desc or asc | onHeaderClick | (sortKey: keyof T) => void | | inject callback function to change sort key || sort order related to clicked specific header label

TableColumnProps

| Property | Type | Required? | Description | |:---|:---|:---:|:---| | dataKey | string | ✓ | matched key as your data | label | string | | header label | help | React.ReactNode | | tooltip (inactive now, fixing minor bug) | width | string | | default: 10% of table width | align | string | | default: left | cellAlign | string | | if you want to apply align separately between header and cell, use this

Basic Usage

interface DataItem {
  id: string;
  name: string;
  conversions: number;
}
const data: DataItem[] = [
  { id: 'id-0', name: 'DongYoon',  conversions: 23242424 },
  { id: 'id-1', name: 'SangBoak', conversions: 1234 },
  { id: 'id-2', name: 'MoonSik', conversions: 3 },
  { id: 'id-3', name: 'Heejin', conversions: 7211233123 },
  { id: 'id-4', name: 'Youngjae', conversions: 312 }
];
<Table data={data}>
  <TableColumn<DataItem, 'name'>
    dataKey="name"
    label="Name"
    help="this is pure text"
    align="left"
  >
     {({ value }) => <Text>{value}</Text>}
  </TableColumn>
  <TableColumn<DataItem, 'conversions'>
     dataKey="conversions"
     label="Conversions"
     help={<div>I'm react node</div>}
     align="right"
  >
    {({ value }) => <Text>{formatNumber(value) || 0}</Text>}
  </TableColumn>
</Table>