Skip to content

Latest commit

 

History

History
49 lines (40 loc) · 1.58 KB

README.md

File metadata and controls

49 lines (40 loc) · 1.58 KB

react-drag-n-drop-to-s3

React component to drag and drop files and upload them to AWS S3.

Based on react-dropzone and react-s3-uploader/s3upload.js.

Install

npm install react-drag-n-drop-to-s3 react-dropzone

Example

import DragNDropToS3 from 'react-drag-n-drop-to-s3'

const UploadAvatar = () => (
  <DragNDropToS3
    dropzoneProps={{
      accept: 'image/png',
      maxSize: 2000000,
    }}
    s3UploaderProps={{
      getSignedUrl: APIs.getSignedURL,
      autoUpload: true,
      onFinish: response => console.log(response.publicUrl),
    }}
  >
    {({ acceptedFiles }) => (
      <div>
        <p>Drop your avatar here or click to upload</p>
        <ul>
          {acceptedFiles.map((file, i) => (
            <li key={i}>{file.name}</li>
          ))}
        </ul>
      </div>
    )}
  </DragNDropToS3>
)

Props

Prop Description Type Required
dropzoneProps For the list of available options, see react-dropzone Object No
s3UploaderProps For the list of available options, see react-s3-uploader Object No