react-drag-n-drop-to-s3

0.1.0 • Public • Published

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.

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

Package Sidebar

Install

npm i react-drag-n-drop-to-s3

Weekly Downloads

1

Version

0.1.0

License

MIT

Unpacked Size

13.5 kB

Total Files

4

Last publish

Collaborators

  • ggregoire