Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-spread-sheet-excel

Package Overview
Dependencies
Maintainers
0
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-spread-sheet-excel

A quick example of rendering large number of input boxes in table using React JS and Redux, React Spread-sheet (Excel sheet)

  • 2.1.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

React-spread-sheet-excel

A high-performance React component for building Excel-like spreadsheets with advanced features.

A light weight component to Render large lists of input boxes in the table using React JS and Redux, Render a table with a large number of rows and columns. Able to render 1Lakh+ input boxes in react, A quick solution for web based spreadsheet or excel.

npm version Downloads license

Live Demo

Demo

Features

  • Blazing Fast Rendering: Handles large datasets efficiently (1Lakh+ input boxes).
  • Comprehensive Calculation Engine: Supports complex formulas and calculations. (= 2 * A2 + (B2 * C4))
  • Rich Formatting Options: Customize cell appearance with bold, italic, underline, and more.
  • Calculations Support, value should starts with "="
  • Select Multiple cells
  • Intuitive Keyboard Navigation: Navigate and edit cells effortlessly.
  • Delete values in selected cells.
  • Customizable header values - (Do not pass numbers in header values, will affect calc)
  • Resize columns
  • Can Use as a Spreadsheet or Excel with react
  • Flexible Data Management: Import, export, and manipulate data.
  • Customizable Headers and Columns: Tailor the spreadsheet to your application.
  • Read-Only Mode: Protect data from accidental modifications.
  • CSV Export: Easily share data in a common format.
  • Sticky Headers: Keep headers visible while scrolling.
  • 100% Unit Test Coverage: Ensures reliability and stability.
  • JSON based SpreadSheet

React-spread-sheet-excel

React-spread-sheet-excel-gif

Getting Started

Input data format

[
  [{"value": 1},{"value": 1},{"value": "a"},{"value": "b"},{"value": "d"}]
]
npm install react-spread-sheet-excel

Example

import React, { useRef, useState } from "react";
import Sheet, { SheetRef } from "./lib";
import packageConf from "../package.json";

//Create dummy data.
const createData = (count?: number) => {
  const val: any[][] = [];
  for (let i = 0; i < (count || 500) ; i++) {
    val.push(
      Array.from({ length: count || 30 }, () => ({
        value: "",
      }))
    );
  }
  return val;
};

function App() {
  const [state] = useState<any[][]>(createData());
  const childRef = useRef<SheetRef>(null);

  const onChange = (i: number, j: number, value: string) => {
    //Do not try to update state with this action, it will slow down your application
    console.log(`Value Updated at ${j}, ${j}`, value);
  };

  const getData = () => {
    console.log("Updated Data", childRef?.current?.getData()); 
  };

  //Generate CSV
  const exportCSV = () => {
    childRef?.current?.exportCsv("myCsvFile", false);
  };

  return (
    <div>
      <div>
        <button onClick={getData}>Get Updated data</button>
        <button data-testid="csv-export" onClick={exportCSV}>Export CSV data</button>
      </div>
      <div>
        <Sheet data={state} onChange={onChange} ref={childRef} />
      </div>
    </div>
  );
}

export default App;


props

PropDescriptionDefaultMandatorytype
dataArray of array with values (matrix)[[]]Noany[][]
onChangeCalls when a change is detected in input boxes, Do not set render component when value changes, the component should be uncontrolledNo
resizeshow column resize optionfalseNoboolean
hideXAxisHeaderShow serial numbers in X axisfalseNoboolean
hideYAxisHeaderShow serial numbers in Y axisfalseNoboolean
headerValuesarray of header values, Number in header values could affect calculationsalphabetsNostring[]
hideToolsHide toolsfalseNoboolean

Ref (API's)

RefDescriptionParams
getDataGet updated data from sheet
setDataSet new data to sheet[{ value: string; styles?: {[key: string]: string}}, ...]
exportCsvExport to CSVfilename: (Mandatory), IncludeHeaders (default false)

Try here

Sandbox

Stackblitz

Performance

Benchmark: Rendered 1000 rows and 100 columns in mills. Optimization Techniques: Redux, Lazy loading.

Sojin Antony

"Buy Me A Coffee"

Acknowledgments

  • React-intersection-observer
  • Redux, React Redux

Keywords

FAQs

Package last updated on 21 Aug 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc