0.1.0 • Published 6 years ago

@srph/react-uploadi v0.1.0

Weekly downloads
1
License
-
Repository
github
Last release
6 years ago

React Uploadi npm version Build Status

The bare minimum to build file upload user interfaces.

  • Provides a terse interface to enable file upload.
  • Removes the effort of dealing with FileReader (usually needed to display the preview of uploaded photos).
  • Dropping of files is built out of the box.
  • Doesn't assume markup, styling, or template.

Unlike Dropzone.js, Uploadi does not handle the actual uploading of the files to a 3rd-party service / API.

View demo. View examples.

How It Works

This library uses the render props pattern. You can read more about it here.

Installation

npm install @srph/react-uploadi --save

Script tags

If you're not using a bundler like Browserify or Webpack, simply add the script tag after your React script tag.

<!-- Script tags for React and other libraries -->
<script src="https://unpkg.com/@srph/react-uploadi/dist/react-uploadi.min.js"></script>

This library is exposed as ReactUploadi (e.g., <ReactUploadi />).

Usage

The following lets you build a single-file uploader:

import React from 'react'
import Uploadi from '@srph/react-uploadi'

class App extends React.Component {
  state = {
    // Here goes the base64 parsed event
    image: '',
    // Here goes the original File which you may
    // need when uploading to an API / any kind of backend.
    // In most cases, you will use formdata with it.
    file: null
  }

  render() {
    const {image} = this.state

    return (
      <Uploadi onFiles={this.handleFiles}>
        {({onSelect}) => {
          return (
            <div>
              {image ? <img src={image} /> : 'Select a file to upload.'}
              <button onClick={onSelect}>
                Browse
              </button>
            </div>
          )
        }}
      </Uploadi>
    )
  }

  handleFiles = (file, image) => {
    this.setState({
      file,
      image
    })
  }
}

export default App;

NOTE: Regarding the onFiles callback prop The first parameter contains the original File event may need in order to upload the selected file.

The second parameter contains the encoded string (contents of the file): a base64-encoded string if it's an image, otherwise a text string.

Multiple files

You can make your uploader accept multiple files by passing the multiple={true} prop to Uploadi. Take note that the onFiles callback is slightly different: You will receive an array of Files and encoded strings.

class App extends React.Component {
  state = {
    images: [],
    files: []
  }

  render() {
    const {images} = this.state

    return (
      <Uploadi multiple onFiles={this.handleFiles}>
        {({onSelect}) => {
          return (
            <div>
              {images.length
                ? images.map((image, i) => (
                  <img src={image} key={i} />
                )) : 'Select a file to upload.'
              }

              <button onClick={onSelect}>
                Browse
              </button>
            </div>
          )
        }}
      </Uploadi>
    )
  }

  handleFiles = (files, images) => {
    this.setState({
      files,
      images
    })
  }
}

export default App;

NOTE: The onFiles callback prop is slightly different when multiple is true. Instead of a File and an encoded string, you will receive array of Files and array of encoded strings.

View more examples.

Reacting to dropped files

By default, Uploadi reacts to dropped files. In order to display something when something is being dragged over to Uploadi, you may use the over property provided to the render prop like so:

class App extends React.Component {
  render() {
    return (
      <Uploadi multiple onFiles={this.handleFiles}>
        {({over, onSelect}) => {
          return (
            <div>
              {over && (
                <div className="drop-overlay" />
              )}
            </div>
          )
        }}
      </Uploadi>
    )
  }

  handleFiles = (files, images) => {
    //
  }
}

export default App;

NOTE: The onFiles callback prop is slightly different here. Instead of a File and an encoded string, you will receive array of Files and array of encoded strings.

View more examples.

API Documentation

Here's a list of props you may use to customize the component for your use-case:

ParameterTypeDescription
multiplebooleanEnable multiple files to be selected. Defaults to false.
acceptstringFiles types you'd like to be selected.
onFilesfunction(File file, string img) (required)Callback called when a file is selected.
onFilesfunction(Array<File> files, Array<string> img) (required)Callback called when multiple is true.

Setup

You can check the demo, or build it yourself locally:

npm install
npm run start

Afterwards, open up localhost:9001 in your browser.

Bundling package

npm run bundle

Publish storybook

npm run storybook:publish

Attribution

Big thanks to Pavlo Tyshchuk for his Free User pics used in the examples.

Alternatives