0.1.11 β€’ Published 7 months ago

@importcsv/react v0.1.11

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

ImportCSV Frontend

React-based embeddable CSV and spreadsheet importer with streamlined column mapping

React TypeScript License

πŸš€ Overview

The ImportCSV Frontend provides a polished, user-friendly interface for importing CSV, XLS, XLSX, and TSV files. It can be embedded in any React application and offers intuitive column mapping functionality.

Note: This component was forked from TableFlow's CSV Import and enhanced with additional features.

✨ Key Features

  • πŸ“Š Multi-Format Support - Import from CSV, XLS, XLSX, and TSV files
  • πŸ”„ Smart Column Mapping - Intuitive interface for mapping columns
  • πŸ” Data Validation - Immediate feedback on data quality issues
  • 🎨 Customizable UI - Theming and component customization options
  • πŸ”Œ Flexible Integration - Available as React component or vanilla JavaScript

πŸ—οΈ Architecture

The frontend is built as a React library with TypeScript and can be used in two ways:

  1. React Component - Direct integration into React applications
  2. JavaScript SDK - For use in non-React applications

πŸ› οΈ Technical Details

Key Components

  • CSVImporter - Main React component for the import flow
  • ColumnMapper - Handles column mapping with smart suggestions
  • DataValidator - Validates data against schema requirements
  • ImportSummary - Displays import results and validation issues

πŸš€ Getting Started

Installation

Use NPM or Yarn to install the SDK:

NPM

npm install csv-import-react
# or for non-React applications
npm install csv-import-js

Yarn

yarn add csv-import-react
# or for non-React applications
yarn add csv-import-js

Basic Usage

Using React

import { CSVImporter } from "csv-import-react";
import { useState } from "react";

function MyComponent() {
  const [isOpen, setIsOpen] = useState(false);

  return (
    <>
      <button onClick={() => setIsOpen(true)}>Open CSV Importer</button>

      <CSVImporter
        modalIsOpen={isOpen}
        modalOnCloseTriggered={() => setIsOpen(false)}
        darkMode={true}
        onComplete={(data) => console.log(data)}
        template={{
          columns: [
            {
              name: "First Name",
              key: "first_name",
              required: true,
              description: "The first name of the user",
              suggested_mappings: ["First", "Name"],
            },
            {
              name: "Age",
              data_type: "number",
            },
          ],
        }}
      />
    </>
  );
}

Using JavaScript

<head>
  <script src="https://unpkg.com/csv-import-js@latest/index.js"></script>
</head>
<body>
  <button id="uploadButton">Open CSV Importer</button>
  <div id="app"></div>
  <script>
    const importer = CSVImporter.createCSVImporter({
      domElement: document.getElementById("app"),
      modalOnCloseTriggered: () => importer?.closeModal(),
      onComplete: (data) => console.log(data),
      darkMode: true,
      template: {
        columns: [
          {
            name: "First Name",
            key: "first_name",
            required: true,
            description: "The first name of the user",
            suggested_mappings: ["First", "Name"],
          },
          {
            name: "Age",
            data_type: "number",
          },
        ],
      },
    });

    const uploadButton = document.getElementById("uploadButton");
    uploadButton.addEventListener("click", () => {
      importer?.showModal();
    });
  </script>
</body>

SDK Reference

isModal (boolean, default: true)

When set to true (default value), the importer will behave as a modal with its open state controlled by modalIsOpen. When set to false, the importer will be embedded directly in your page.

modalIsOpen (boolean, default: false)

Only used when isModal is true: Controls the importer modal being open or closed. \ React SDK Only: For the JavaScript SDK, use .showModal() and .closeModal() to operate the modal.

modalOnCloseTriggered (function)

Only used when isModal is true: A function called when the user clicks the close button or clicks outside of (when used with modalCloseOnOutsideClick) the importer. useState can be used to control the importer modal opening and closing.

const [isOpen, setIsOpen] = useState(false);
<button onClick={() => setIsOpen(true)}>Open CSV Importer</button>
<CSVImporter
  modalIsOpen={isOpen}
  modalOnCloseTriggered={() => setIsOpen(false)}
  ...
/>

modalCloseOnOutsideClick (boolean, default: false)

Only used when isModal is true: Clicking outside the modal will call the modalOnCloseTriggered function.

template (object)

Configure the columns used for the import.

template={{
  columns: [
    {
      name: "First Name",
      key: "first_name",
      required: true,
      description: "The first name of the user",
      suggested_mappings: ["First", "Name"],
    },
    {
      name: "Age",
      data_type: "number",
    },
  ],
}}

onComplete (function)

Callback function that fires when a user completes an import. It returns data, an object that contains the row data, column definitions, and other information about the import.

onComplete={(data) => console.log(data)}

Example data:

{
  "num_rows": 2,
  "num_columns": 3,
  "columns": [
    {
      "key": "age",
      "name": "Age"
    },
    {
      "key": "email",
      "name": "Email"
    },
    {
      "key": "first_name",
      "name": "First Name"
    }
  ],
  "rows": [
    {
      "index": 0,
      "values": {
        "age": 23,
        "email": "maria@example.com",
        "first_name": "Maria"
      }
    },
    {
      "index": 1,
      "values": {
        "age": 32,
        "email": "robert@example.com",
        "first_name": "Robert"
      }
    }
  ]
}

darkMode (boolean, default: false)

Toggle between dark mode (true) and light mode (false).

primaryColor (string)

Specifies the primary color for the importer in hex format. Use customStyles to customize the UI in more detail.

primaryColor = "#7A5EF8";

customStyles (object)

Apply custom styles to the importer with an object containing CSS properties and values. Note that custom style properties will override primaryColor and any default styles from darkMode. Available options:

customStyles={{
  "font-family": "cursive",
  "font-size": "15px",
  "base-spacing": "2rem",
  "border-radius": "8px",
  "color-primary": "salmon",
  "color-primary-hover": "crimson",
  "color-secondary": "indianRed",
  "color-secondary-hover": "crimson",
  "color-tertiary": "indianRed",
  "color-tertiary-hover": "crimson",
  "color-border": "lightCoral",
  "color-text": "brown",
  "color-text-soft": "rgba(165, 42, 42, .5)",
  "color-text-on-primary": "#fff",
  "color-text-on-secondary": "#ffffff",
  "color-background": "bisque",
  "color-background-modal": "blanchedAlmond",
  "color-input-background": "blanchedAlmond",
  "color-input-background-soft": "white",
  "color-background-menu-hover": "bisque",
  "color-importer-link": "indigo",
  "color-progress-bar": "darkGreen"
}}

Internationalization

Predefined languages

  • Out-of-the-box support for various languages.
  • Common languages are available through the language prop (i.e., language="fr" for French).
  • Available predefined languages:
    • en
    • es
    • fr

Customizable language

  • Language keys can be exported and overridden.
  • Labels and messages can be customized to any text.
  • Translations key examples can be found in src/i18n/es.ts
// Set up custom translations
const customTranslations = {
  jp: {
    Upload: "をップロード",
    "Browse files": "フゑむルを参照",
  },
  pt: {
    Upload: "Carregar",
    "Browse files": "Procurar arquivos",
  },
};

return (
  <CSVImporter language="jp" customTranslations={customTranslations} ...props />
)

showDownloadTemplateButton (boolean, default: true)

When set to false, hide the Download Template button on the first screen of the importer.

skipHeaderRowSelection (boolean, default: false)

When set to true, the importer will not display and skip the Header Row Selection step and always choose the first row in the file as the header.

Contributing

Setting Up the Project

To set up the project locally, follow these steps:

  1. Clone the repository
git clone https://github.com/tableflowhq/csv-import.git
cd csv-import
  1. Install dependencies
yarn install
  1. Build the project
yarn build

Running Storybook

To run Storybook locally, follow these steps:

  1. Start Storybook
yarn storybook
  1. Open Storybook in your browser: Storybook should automatically open in your default browser. If it doesn't, navigate to http://localhost:6006.

Modifying the project and testing with the demo app

The project includes a demo app that you can use to test your changes. The demo app has its own README.md file with detailed instructions on how to set it up and run it.

  1. Make your changes in the codebase.
  2. Follow the instructions in the demo app's README.md to set up and run the demo app. This will help you verify that your changes work as expected in a real application.
  3. Commit your changes and push them to your forked repository.
  4. Create a pull request to the main repository.

Publishing the Library

Using Yarn Publish

To publish the library to npm:

  1. Update the version in package.json:

    # Increment version - choose one of:
    npm version patch  # for bug fixes
    npm version minor  # for new features
    npm version major  # for breaking changes
  2. Build the library:

    yarn build
  3. Publish to npm:

    # If you're publishing for the first time
    npm login
    
    # Publish the package
    yarn publish
  4. To use the published package in another project:

    # In your project
    yarn add csv-import-react

Using Yalc (for Local Development)

Yalc is a tool for local package development and sharing. It's useful when you want to test your library in another project without publishing to npm.

  1. Install yalc globally:

    npm install -g yalc
  2. Build the library:

    yarn build
  3. Publish to local yalc store:

    yalc publish
  4. Add to your project:

    # In your project directory
    yalc add csv-import-react
    yarn install  # or npm install
  5. When you make changes to the library:

    # In the library directory
    yarn build
    yalc push  # Updates all linked projects
  6. To remove the yalc link:

    # In your project directory
    yalc remove csv-import-react
    yarn install  # Restore to regular dependencies

Get In Touch

Let us know your feedback or feature requests! Submit a GitHub issue here.