Render CSV data using react-window or react-virtualized

133 Views Asked by At

I am trying to render CSV data (sampleCSVData) using react-window. I am splitting the data using "," and then trying to populate it in a Cell component. To properly populate in Cell component I need a series like 0,1,2,3,4,5... which should change to a new row after 13 counts. I am not able to figure out this code:

See this Code Sandbox.

const Cell = ({ columnIndex, rowIndex, style }) => {
  return (
    <div
      className={
        columnIndex % 2
          ? rowIndex % 2 === 0
            ? "GridItemOdd"
            : "GridItemEven"
          : rowIndex % 2
          ? "GridItemOdd"
          : "GridItemEven"
      }
      style={style}
    >
      {rowIndex} {columnIndex} - {finalData[columnIndex]}
    </div>
  );

Current Outcome: Current Outcome

Expected Outcome: Expected Outcome 1 OR Expected Outcome 2

Currently, I am using the below code to render the table, it's working fine but it's not very efficient.

<CsvToHtmlTable
  data={sampleCSVData.slice(sampleCSVData.search(",result"), pingData.length)}
  csvDelimiter=","
  />

0

There are 0 best solutions below