1.4.6 • Published 5 years ago

react-ajax-data-table-component v1.4.6

Weekly downloads
9
License
MIT
Repository
github
Last release
5 years ago

Build Status npm version codecov Storybook

React Data Table Component Demo

React Data Table Component

Creating yet another React table library came out of necessity while developing a web application for a growing startup. I discovered that while there are some great table libraries already available, most required heavy customization or lacked basic features such as built in sorting and pagination, and in some cases required a restrictive license.

If you want to achieve balance with the force and want a simple but flexible table library give React Data Table Component a chance. If you require an Excel clone and need to pivot large data sets then this is not the React table library you are looking for 👋

Key Features

  • Declarative Configuration
  • Sortable (client)
  • Selectable Rows
  • Expandable Rows
  • Themeable via js config
  • Data Aware (i.e. easily callback to a parent component get the DataTable state, e.g. selectedRows
  • Responsive (via x-scroll/flex)
  • Pagination

Requirements

React Data Table Component requires the following be installed in your project:

  • React 16.3+
  • styled-components 3.2.3+ || 4.0.0+

If you need to have backwards compatability with React versions previous to 16.3 you will have to yarn add react-data-table-component@0.13.0.

Note that versions previous to react-data-table-component@1.0.0` are deprecated and will no longer be maintained.

Installation

React Data Table requires the wonderful styled-components library. If you've already installed styled-components there is no need to install it again.

npm install react-data-table-component styled-components

or

yarn add react-data-table-component styled-components

API/Usage

Columns

Nothing new here - we are using an array of object literals and properties to describle the columns:

PropertyTypeRequiredExample
namestringnothe display name of our Column e.g. 'Name'
selectorstringyesthe propery in the data set e.g. property1.nested1.nested2.
sortableboolnoif the column is sortable
formatfuncnoformat the selector e.g. row => moment(row.timestamp).format('lll')
cellfuncnofor ultimate control use cell to render your own custom component! e.g row => <h2>{row.title}</h2> Negates format
grownumbernoflex-grow of the column. the is useful if you want a column to take up more width than its relatives (without having to set widths explicitly). this will be affected by other columns where you have explicitly set widths
widthstringnogive the column a fixed width
minWidthstringnogive the column a minWidth
maxWidthstringnogive the column a maxWidth
rightboolnoright aligns the content in the cell. useful for numbers
centerboolnocenter aligns the content in the cell
compactboolnoreduces the padding in the cell by 50%
buttonboolnoapplies additional styling when using a button
wrapboolnowhether the cell content shold be allowed to wrap.
allowOverflowboolnoallows content in the cell to overflow. useful for menus/layovers that do not rely on "smart" positioning
ignoreRowClickboolnoprevents the onRowClicked event from being passed on a specific TableCell column. This is really useful for a menu or button where you do not want the onRowClicked triggered

DataTable Properties

PropertyTypeRequiredDefaultDescription
titlestring or componentnoThe Title displayed in the Table Header
columnsarrayyes[]The column configuration
dataarrayno[]it is highly recommended that your data has a unique identifier (keyField). The default keyField is id. If you need to override this value then see keyField DataTable Properties.
keyFieldstringno'id'your data should have a unique identifier. By default, React Data Table looks for an id property for each item in your data. You must match keyField to your identifier key, especially if you want to manage row state at a later time or use the expander feature. If a unique id is not present, React Data Table will use the row index (not recommended) as the key value
progressPendingboolnodisables the table and displays a plain text Loading Indicator
progressComponentcomponentnoallows you to use your own custom progress component
progressCenteredboolnoabsolutely position and center the progress over the table
selectableRowsboolnofalseWhether to show selectable checkboxes
selectableRowsComponentfuncnoOverride the default checkbox component - must be passed as a function (e.g. Checkbox not <Checkbox />)
selectableRowsComponentPropsobjectnoAdditional props you want to pass to selectableRowsComponent. See Advanced Selectable Component Options to learn how you can override indeterminate state
expandableRowsboolnofalseWhether to make a row expandable, if true it requires an expandableRowsComponent. It is highly recommended your data set have a unique identifier defined as the keyField for row expansion to work properly.
expandableRowsComponentstring or componentnoA custom component to display in the expanded row. It will have the data prop composed so that you may access the row data
noDataComponentstring or componentnoA custom component to display when there are no records to display
sortIconcomponentnoOverride the default sort icon - the icon must be a font or svg icon and it should be a "downward" icon since animation will be handled by React Data Table
stripedboolnofalsestripe color the odd rows
highlightOnHoverboolnofalseif rows are to be highlighted on hover
pointerOnHoverboolnofalseif rows show a point icon on hover
actionscomponent or array of componentsnoadd actions to the TableHeader
contextTitlestringnooverride the context menu title
contextActionscomponent or array of componentsnoadd context actions to the TableHeader context
onTableUpdatefuncnocallback to access the entire Data Table state ({ allSelected, selectedCount, selectedRows, sortColumn, sortDirection, rows })
onRowClickedfuncnocallback to access the row data,index on row click
clearSelectedRowsboolnofalsetoggling this property clears the selectedRows. If you use redux or react state you need to make sure that you pass a toggled value or the component will not update. See Clearing Selected Rows
defaultSortFieldstringnoSetting this ensures the table data is presorted before it renders and the field(selector) is focused
defaultSortAscboolnotrueset this to false if you want the table data to be sorted in DESC order
classNamestringnooverride the className on the Table wrapper
styleobjectnooverride the style on the Table wrapper
overflowYboolnofalseif a table is responsive, items such as layovers/menus/dropdowns will be clipped on the last row(s) due to to overflow-x-y behavior - setting this value ensures there is invisible space below the table to prevent "clipping". However, if possible, the correct approach is to use menus/layovers/dropdowns that support smart positioning. If used, the table parent element must have a fixed height or height: 100%.
overflowYOffsetstringno250pxused with overflowY to "fine tune" the offset
responsiveboolnotruemakes the table horizontally scrollable on smaller screen widths
customThemeobjectnoOverride the default theme, by overriding specifc props. Your changes will be merged. See Theming for more information
disabledboolnofalsedisables the Table section
noHeaderboolnofalseremoves the table header. title, contextTitle and contextActions will be ignored
fixedHeaderboolnofalsemakes the table header fixed allowing you to scroll the table body
paginationboolnofalseenable pagination with defaults
paginationTotalRowsnumberno0allows you to provide the total row count for your table as represented by your API when performing server side pagination. if this property is not provided then react-data-table will use data.length
paginationPerPagenumberno10rows per page
paginationRowsPerPageOptionsnumberno10, 15, 20, 25, 30row page dropdown selection options
onChangePagefuncnonullcallback when paged that returns the current page and total row count. e.g. onChangePage(page, totalRows)
onChangeRowsPerPagefuncnonullcallback when rows per page is changed that returns the new rows per page
paginationComponentfuncnoPaginationa component that overrides the default paginator component
paginationIconFirstPagenoJSXa component that overrides the first page icon for the pagination
paginationIconLastPagenoJSXa component that overrides the last page icon for the pagination
paginationIconNextnoJSXa component that overrides the next page icon for the pagination
paginationIconPreviousnoJSXa component that overrides the previous page icon for the pagination
subHeadercomponent or array of componentsnofalseshow a subheader between the table and table header
subHeaderAlignstringnorightalign the subheader content (left, right, center)
subHeaderWrapboolnotruewhether the subheader content should wrap
subHeadercomponent or array of componentsnofalseshow a subheader between the table and table header
subHeaderComponentcomponent or array of componentsno[]a component you want to render

Advanced Selectable Component Options

Sometimes 3rd party checkbox components have their own way of handling indeterminate state. We don't want React Data Table hardcoded to a specific ui lib or custom component, so instead a "hook" is provided to allow you to pass a function that will be resolved by React Data Table's internal Checkbox for use with indeterminate functionality.

Example Usage:

const { Checkbox } from 'react-md';

...

/* 
  In this example, the react-md ui lib determines its own indeterminate state via the `uncheckedIcon` property. 
  Let's override it. React Data Table is made aware if a checkbox is indetermite or not becuase internally we can resolve this   as `yourfunction(checkboxawareindeterminatestate)`
*/

const handleIndeterminate = isIndeterminate => (isIndeterminate ? <FontIcon>indeterminate_check_box</FontIcon> : <FontIcon>check_box_outline_blank</FontIcon>);

const MyComponent = () => (
  <DataTable
    title="Arnold Movies"
    columns={columns}
    data={data}
    selectableRows
    selectableRowsComponent={Checkbox} // Pass the function only
    selectableRowsComponentProps={{ uncheckedIcon: handleIndeterminate  }}
  />
);

Note This is currently only supported for indeterminate state, but may be expanded in the future if there is a demand

Basic Table

The following declarative structure creates a sortable table of Arnold movie titles:

import DataTable from 'react-data-table-component';

const data = [{ id: 1, title: 'Conan the Barbarian', year: '1982' } ...];
const columns = [
  {
    name: 'Title',
    selector: 'title',
    sortable: true,
  },
  {
    name: 'Year',
    selector: 'year',
    sortable: true,
    right: true,
  },
];

class MyComponent extends Component {
  render() { 
    return (
      <DataTable
        title="Arnold Movies"
        columns={columns}
        data={data}
      />
    )
  }
);

Selectable Rows

Let's make our rows selectable so we can access the selected results

...

const handleChange = (state) => {
  // You can use setState or dispatch with something like Redux so we can use the retrieved data
  console.log('Selected Rows: ', state.selectedRows);
};

class MyComponent extends Component {
  render() { 
      return (
        <DataTable
          title="Arnold Movies"
          columns={columns}
          data={data}
          selectableRows // add for checkbox selection
          onTableUpdate={handleChange}
        />
    )
  }
);

Clearing Selected Rows

We need some hook to trigger all the selectedRows to clear. If you were building your own table component, you would manage the selected rows state in some parent component, however, in our case, since we to keep row management within React Data Table, a clearSelectedRows prop is provided so you can pass a toggled state.

It will be up to you to make sure you do not pass the same state twice. For example, if you set clearSelectedRows={true} twice, on the second update/trigger, none the rows will not be cleared.

...
// set the initial state
state = { toggledClearRows: false }
...

const handleChange = (state) => {
  // You can use setState or dispatch with something like Redux so we can use the retrieved data
  console.log('Selected Rows: ', state.selectedRows);
};

// Toggle the state so React Table Table changes to `clearSelectedRows` are triggered
const handleClearRows = () => {
  this.setState({ toggledClearRows: !this.state.toggledClearRows})
}

class MyComponent extends Component {
  render() { 
    return (
      <DataTable
        title="Arnold Movies"
        columns={columns}
        data={data}
        selectableRows // add for checkbox selection
        onTableUpdate={handleChange}
        clearSelectedRows={this.state.toggledClearRows}
      />
    )
  }
);

Overriding with a 3rd Party Ui Component Library

Don't like those ugly html checkboxes? Let's override them with some react-md sexyiness. While we are at it we will also override the sortIcon:

...
import { Checkbox, FontIcon } from 'react-md';
...

class MyComponent extends Component {
  render() { 
    return (
      title="Arnold Movies"
      columns={columns}
      data={data}
      selectableRows
      selectableRowsComponent={Checkbox} // Pass the function only
      selectableRowsComponentProps={{ inkDisabled: true }} // optionally, pass react-md supported props down to our custom checkbox
      sortIcon={<FontIcon>arrow_downward</FontIcon>} // use a material icon for our sort icon
      onTableUpdate={handleChange}
    />
    )
  }
);

Custom Cells

Let's give our Movie list a summary, but in the same cell as Name:

....

const data = [{ id: 1, title: 'Conan the Barbarian', summary: 'Orphaned boy Conan is enslaved after his village is destroyed...',  year: '1982' } ...];
const columns = [
  {
    name: 'Title',
    sortable: true,
    cell: row => <div><div style={{ fontWeight: bold }}>{row.title}</div>{row.summary}</div>,
  },
  {
    name: 'Year',
    selector: 'year',
    sortable: true,
    right: true,
  },
];

...

class MyComponent extends Component {
  render() { 
    return (
      <DataTable
        title="Arnold Movies"
        columns={columns}
        data={data}
        selectableRows
        selectableRowsComponent={Checkbox}
        selectableRowsComponentProps={{ inkDisabled: true }}
        sortIcon={<FontIcon>arrow_downward</FontIcon>}
        onTableUpdate={handleChange}
      />
    )
  }
);

Expandable Rows

Let's make our rows expandable so we can view more details:

...

const data = [{ id: 1, title: 'Conan the Barbarian', summary: 'Orphaned boy Conan is enslaved after his village is destroyed...',  year: '1982', image: 'http://conan.image.png' } ...];
const columns = [
  {
    name: 'Title',
    sortable: true,
    cell: row => <div><div style={{ fontWeight: 700 }}>{row.title}</div>{row.summary}</div>,
  },
  {
    name: 'Year',
    selector: 'year',
    sortable: true,
    right: true,
  },
];

...

// The row data is composed into your custom expandable component via the data prop
const ExpanableComponent = ({ data }) => <img src={data.image} />;

class MyComponent extends Component {
  render() { 
    return (
      <DataTable
        title="Arnold Movies"
        columns={columns}
        data={data}
        selectableRows
        selectableRowsComponent={Checkbox}
        selectableRowsComponentProps={{ inkDisabled: true }}
        sortIcon={<FontIcon>arrow_downward</FontIcon>}
        onTableUpdate={handleChange} 
        expandableRows
        expandableRowsComponent={<ExpanableComponent />}
      />
    )
  }
);

Theming

You can override or replace the default theme using the customTheme prop. Internally, this just deep merges your theme with the default theme.

For Example:

// Override the row default height
const mySweetTheme = {
  rows: {
    height: '64px'
  }
}

class MyComponent extends Component {
  render() { 
    return (
      <DataTable
        title="Arnold Movies"
        columns={columns}
        customTheme={mySweetTheme}
      />
    )
  }
);

Refer to Default Theme for reference and avaiilable properties to override

Theme Resources

Development

Setup

Install the latest Node JS LTS and Yarn and simply run yarn or yarn install command in the root and stories directory.

Installing Flow Types

Install flowtypes using the package script:

yarn flow-typed

It is advised to run the script whenever NPM packages are installed.

Local development

During development,

# watch and build new source changes
yarn start
# or serve *.stories.js files and manually test on the Storybook app
yarn storybook

Including NPM packages

This project uses two package.json structure.

Library dependencies -- <root_dir>/package.json

yarn add [package-name] --dev # for dev tools
yarn add [package-name] # for app

Storybook dependencies -- <root_dir>/stories/package.json

cd stories/
yarn add [package-name]

Static Types

yarn flow # performs type checking on files

Lint

yarn lint # runs linter to detect any style issues (css & js)
yarn lint:css # lint only css
yarn lint:js # lint only js
yarn lint:js --fix # tries to fix js lint issues

Test

yarn test # runs functional/unit tests using Jest
yarn test --coverage # with coverage

Build

yarn build # builds sources at src/