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

v2.0.3

Published

A React component that wraps the HTML <table> element in a container of any specified dimensions while keeping its header fixed to the top during scrolling

Downloads

1,546

Readme

Installation

npm install --save react-table-container

Usage

import React from "react";
import ReactTableContainer from "react-table-container";

const CustomHTMLTableResizedWithFixedHeader = () => (
  <ReactTableContainer width="auto" height="500px">
    <table>
      <colgroup>
          <col span="1" className="" />
          ...
      </colgroup>
      <thead>
        <tr>
          <th>Header cell</th>
          ...
        </tr>
      </thead>
      <tbody>
        <tr>
          <td>Body cell</td>
          ...
        </tr>
        <tr>
          <td>Body cell</td>
          ...
        </tr>
        ...
      </tbody>
    </table>
  </ReactTableContainer>
);

export default CustomHTMLTableResizedWithFixedHeader;

Is there support for React components that render HTML table elements? Yes, the customHeader prop (as seen below) exists as an escape hatch for this purpose. The table's direct child components that render thead and colgroup elements must be passed to it. This is required in order to successfully stick the custom table header to the top.

// Based on https://github.com/mui-org/material-ui/blob/master/docs/src/pages/demos/tables/SimpleTable.js
import React from "react";
// Import components from `@material-ui/core`
import ReactTableContainer from "react-table-container";

// Define `styles`

// Define `data`

function CustomMaterialUITableResizedWithFixedHeader(props) {
  const { classes } = props;

  return (
    <Paper className={classes.root}>
      <ReactTableContainer width="auto" height="200px" customHeader={[TableHead]}>
        <Table className={classes.table}>
          <TableHead>
            <TableRow>
              <TableCell>Dessert (100g serving)</TableCell>
              <TableCell numeric>Calories</TableCell>
              <TableCell numeric>Fat (g)</TableCell>
              <TableCell numeric>Carbs (g)</TableCell>
              <TableCell numeric>Protein (g)</TableCell>
            </TableRow>
          </TableHead>
          <TableBody>
            { data.map(n => 
              <TableRow key={n.id}>
                <TableCell>{n.name}</TableCell>
                <TableCell numeric>{n.calories}</TableCell>
                <TableCell numeric>{n.fat}</TableCell>
                <TableCell numeric>{n.carbs}</TableCell>
                <TableCell numeric>{n.protein}</TableCell>
              </TableRow>
            ) }
          </TableBody>
        </Table>
      </ReactTableContainer>
    </Paper>
  );
}

export default withStyles(styles)(CustomMaterialUITableResizedWithFixedHeader);

Demo

API

  • <ReactTableContainer width height>
    • width: Any valid CSS value. Required.
    • height: Any valid CSS value. Required.
    • customHeader: List of table's direct child components that render thead and colgroup elements.
    • style: CSS-in-JS for the container itself.
    • className: CSS class name for the container itself.
    • scrollbarStyle: Object (below) to change the default scrollbar style.
      {
        // How the container of the scrollbar should look like
        background: {
          /* Any valid CSS properties or empty */
        },
        // How the container should look like on mouse over
        backgroundFocus: {
          /* Any valid CSS properties or empty */
        },
        // How the scrollbar should look like
        foreground: {
          /* Any valid CSS properties or empty */
        },
        // How it should look like on mouse over
        foregroundFocus: {
          /* Any valid CSS properties or empty */
        }
      }

REQUIRED

The table's header mustn't be transparent, otherwise the body content will appear under it on scroll.

Limitations

  • HTML caption table element is currently not supported. Using it might cause unexpected behaviour.

Contributing

  • Feel free to send pull requests for bug fixing. But make sure to run npm run prettify and npm run ci before doing so;
  • Please open an issue first for new features/ideas.