DEV Community

graciesharma
graciesharma

Posted on

Implementing CSV Data Export in React Without External Libraries

In the realm of React development, exporting data in CSV format is a frequent requirement. This task can be accomplished without the dependency on external libraries by leveraging vanilla JavaScript capabilities within a React component. This guide details the process of creating a feature that enables users to export CSV files directly from a React application.

Step 1: Construct a React Component

Begin by crafting a straightforward React component dedicated to managing the CSV export process. This component should include a button to initiate the export and a function to handle the creation and downloading of the CSV file.

import React from 'react';

const ExportCSV = ({ data, fileName }) => {
  const downloadCSV = () => {
    // Convert the data array into a CSV string
    const csvString = [
      ["Header1", "Header2", "Header3"], // Specify your headers here
      ...data.map(item => [item.field1, item.field2, item.field3]) // Map your data fields accordingly
    ]
    .map(row => row.join(","))
    .join("\n");

    // Create a Blob from the CSV string
    const blob = new Blob([csvString], { type: 'text/csv' });

    // Generate a download link and initiate the download
    const url = URL.createObjectURL(blob);
    const link = document.createElement('a');
    link.href = url;
    link.download = fileName || 'download.csv';
    document.body.appendChild(link);
    link.click();
    document.body.removeChild(link);
    URL.revokeObjectURL(url);
  };

  return <button onClick={downloadCSV}>Export CSV</button>;
};

export default ExportCSV;

Enter fullscreen mode Exit fullscreen mode

Step 2: Deploy the Component

Incorporate the ExportCSV component into another component or page within your application where you need the CSV export functionality. Supply the necessary data and the desired filename for the exported file.

import React from 'react';
import ExportCSV from './ExportCSV';

const MyComponent = () => {
  const data = [
    { field1: "row1-col1", field2: "row1-col2", field3: "row1-col3" },
    { field1: "row2-col1", field2: "row2-col2", field3: "row2-col3" }
    // Include additional data as needed
  ];

  return (
    <div>
      <h1>My Data Exporter</h1>
      <ExportCSV data={data} fileName="myData.csv" />
    </div>
  );
};

export default MyComponent;

Enter fullscreen mode Exit fullscreen mode

Detailed Workflow Explanation:

Generate CSV String: The function transforms an array of data into a CSV format, starting with headers and followed by the corresponding data rows.
Blob and URL Handling: A Blob object is created using the CSV string to facilitate the file download.
Dynamic Link for Download: The download process is triggered by creating a temporary anchor (a) element programmatically and assigning the Blob URL to it. This is followed by a simulated click to commence the download.
Cleanup Post-Download: The Blob URL is revoked, and the anchor element is removed to release resources and clean up the document.

The technique can be expanded to include more complex CSV formatting options, handle diverse data types, or introduce error handling mechanisms to enhance the robustness and functionality of your application.

Top comments (0)