Pricing Login
Pricing
Support
Demo
Interactive demos

Click through interactive platform demos now.

Live demo, real expert

Schedule a platform demo with a Sumo Logic expert.

Start free trial
Back to blog results

July 5, 2018 By Kinshuk Jain

React Tables: How to Evaluate Options and Integrate a Table into Your Project

Tables are used to present data in a tabular form and are great for looking at individual values as opposed to trends in data. Simply put, a table consists of an ordered arrangement of data into rows and columns (think of an Excel spreadsheet). The elements of a table may be grouped, segmented or arranged in many different ways. They can even be nested recursively. Tables are widely used in communication, research and data analysis.

What is a React Table?

As a data analytics company, one of the most complex and function-filled UI components in our application is a Table. This is because they have multiple use cases ranging from showing search results that may contain tens of thousands of results to simple tables for managing administrative objects like users and roles. While there is nothing inherently special about React Tables, they can be rather difficult to implement, especially if they are function-filled like some of the ones we create here.

Securely Migrate to the Cloud

Cloud computing is quickly becoming the standard for modern applications and enterprises. Learn how to securely migrate to the cloud today!

Consider the complexity required for showing search results:

  • Freezing the first column
  • Flexible pagination as there can be thousands (or may be millions) of results and users can choose how many items to show per page
  • Searching within the results
  • Sorting results
  • Resizing and dragging columns

This all must be available while results are still downloading and the table is updated continuously. On the other hand, showing all users within an organization requires a single table with potentially thousands of entries, which we need to scroll smoothly without pagination.

By the time we finally got to writing the list of features we needed, it became overwhelming.

overwhelming react table requirements

Don’t believe me? Here is the list:

  • Horizontal scrolling
  • Filtering
  • Sorting
  • Resizable columns
  • Draggable columns
  • Grouping/aggregation
  • Hide/show columns
  • Pagination
  • Inline editing of table cells
  • Components within table cells
  • Fixed header
  • Column freeze
  • Implement the Sumo Logic design language
  • Infinite/virtual scrolling to make scrolling thousands of rows smooth
  • No lag and overall smooth user experience.
  • If we are using a library, it should not have any open issues related to our requirements

How to Choose the Best React Table

Everybody on our UI dev team was excited to have the chance to implement this challenging component.

Then came the hammer of timelines — it had to be done in one month — so we decided to see if one of the available libraries could do the job for us. Here is the evaluation of the three best options we found:

FeatureAg-Grid(v17.1.0)React Table(v6.8.2)React Data Grid(v4.0.8)
Horizontal scrolling
Filtering
Sorting
Resizable columns
Draggable columns❌(Needs a higher order component, or HOC, i.e. a wrapper over this)
Pagination
Inline editing of table cells
Sub-components within table rows/cells
Fixed header
Column freeze❌(Needs a HOC i.e. a wrapper over this)
Support Sumo Logic styles
Infinite scroll❌(Needs a HOC i.e. a wrapper over this)
No open issues for our features❌(Warnings when used with React 16 and issues in dragging columns)
Grouping/aggregation
Hide/show columns❌(but can be implemented using existing features)❌(but can be implemented using existing features)
No lag/smooth user experience❌(buggy infinite scroll and slow performance)
Virtual Scroll/Smooth scroll for thousands of rows❌(Needs a HOC i.e. a wrapper over this)❌(No such feature)
Free to use❌(but has all the above features in free version)

Based on the above, Ag-Grid seems like it should have won the race loud and clear, right? But hold it right there. It’s 732kb in size without styles unzipped, and still 146kb after Gzipping.

ag-grid stats

Also, to use Ag-Grid with React requires another package (Ag-Grid-React), which itself is 9kb when unzipped and 3kB when Gzipped.

ag-grid react stats

We eliminated React-Data-Grid from our list of choices due to its buggy infinite scroll and no support for React 16, triggering multiple warning when used with React Fibre (yes, I am going to get fancy and use this term). Furthermore, it’s perceived performance is poor and provides a bad user experience altogether when the number of rows is greater than 100. We compared the performances of Ag-Grid and React Table. Here is the comparison:

react table options
Test Conditions: 2.8GHz intel core i7, 16 GB 2133 MHz LPDDR3, 256GB SSD, macOS High Sierra
  1. For a given test, except when the test required, data was kept constant between repeat renders
  2. Data changed with each test
  3. Page size was set equal to number of rows i.e. there was no pagination
  4. Tests were performed using a script accessible here: https://github.com/kinshukjain/benchmark-component/tree/master/src

Difficult, difficult decisions! Ag-Grid smokes React Table in terms of its performance and it also has a feature list that smokes React Table. But man it is huge (the big elephant in the room)! Ag-Grid won fair and square as we decided to lazy load the library and cache it on a user's browser.

react table decision

Getting Started: Writing a Wrapper for Our React Table

Next step was writing a wrapper for our Table component so we could replace the underlying library in the future with our own implementation, or a better library. We needed to complete the following:

  • Limit the exposed functionality of the underlying library to only the features our app needs
  • Decide on a folder structure - it can be hard to organize things when we are designing a component independent of the underlying library. This is especially true for complex components like Table.
  • Style the table row, column, header, cell or entire table per our design language
  • Create a component API for container components
  • Devise a standard format of data to be passed in
  • Devise a standard format to pass column headers and options
  • Add new/missing features or workarounds for existing bugs
  • Write unit tests
  • Implement internationalization support
  • Write necessary utility functions
  • Lazy load the library

These are all implementation details and can vary from one use case to another. We will outline our implementation for you in a second blog post, coming soon!

Summary and Additional Reading

We evaluated three different libraries for a React Table that met our requirements: Ag-Grid, React Table and React-Data-Grid. React-Data-Grid did not support React 16 and had performance issues so was ruled out. We compared Ag-Grid and React Table and the former outperformed the latter by a significant margin. Despite its size we decided to separate out Ag-Grid on its own chunk and use it. Further, we added a wrapper over Ag-Grid to add our own styles apart from other functionalities. We hope this has been useful for you and will help you arrive at a better decision on your own table component. Thanks for reading, and come back for part two to learn how we implemented the table.

best react table winner

Complete visibility for DevSecOps

Reduce downtime and move from reactive to proactive monitoring.

Sumo Logic cloud-native SaaS analytics

Build, run, and secure modern applications and cloud infrastructures.

Start free trial

Kinshuk Jain

Kinshuk Jain is a UI developer at Sumo Logic. He’s interested in everything Javascript and Blockchain.

More posts by Kinshuk Jain.

People who read this also enjoyed