@99xt/react-fileupload

1.0.2 • Public • Published

@99xt/react-fileupload

npm (scoped) license

Simpler file upload implementation for react.js apps.

Installation

To install this library, run:

npm install @99xt/react-fileupload --save

Usage

example.component.js

import React, {Component} from 'react';
import FileUpload from '@99xt/react-fileupload';

class ExampleApp extends Component {
  onUploadFiles(evt) {
    if (evt.error) {
        throw evt.error;
    }

    const files = evt.files;
    // You can run upload script here
    console.log(files);
  }

  render() {
    const allowedTypes = [];
    const allowedSize = 15; // MB
    const multiple = true;

    return (
      <div>
        <h1>react-fileupload Demo</h1>

        { /* with default UI */ }
        <FileUpload
          allowedTypes={ allowedTypes }
          allowedSize={ allowedSize }
          multiple={ multiple }
          onUploadFiles={ this.onUploadFiles }
        />

      { /* with custom UI */ }
      <FileUpload
          allowedTypes={allowedTypes}
          allowedSize={allowedSize}
          multiple={multiple}
          onUploadFiles={this.onUploadFiles}
          renderUI={props => {
            const { status } = props;
            return (
              <div style={{ border: "2px dashed #ccc", padding: "50px" }}>
                <p>Click or drag n drop your file(s) here.</p>
                <p>Drag n drop status: {status}</p>
              </div>
            );
          }}
        />
      </div>
    );
  }
}

Contributing Guide

Setting up the development environment

Clone the repository to your workstation

git clone git@github.com:99xt/react-fileupload.git

Navigate to the project directory

cd react-fileupload
npm install
npm run build

Use npm run clean for delete built resources.

Run Demo app

npm start

Demo app will start on http://localhost:3000

Publish to NPM

Update the version in package.json;

npm publish

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i @99xt/react-fileupload

Weekly Downloads

4

Version

1.0.2

License

MIT

Last publish

Collaborators

  • rajikaimal
  • samsam-026
  • mudithab
  • shalithasuranga
  • mjfernando
  • thinkholic
  • 99xtechnology
  • rehrumesh