Upload Multiple Files To Cloudinary Using React Dropzone & Axios
3 min read

Upload Multiple Files To Cloudinary Using React Dropzone & Axios

Upload Multiple Files To Cloudinary Using React Dropzone & Axios

We had a requirement in one of our recent client’s project to provide a lot of file uploading. Being a developer we are quite used to the whole uploading process & the time it takes on the internet. However, file upload can be a daunting experience for a massive amount of users on the internet so, be mindful when you’re working on one.

We’ve good experience in building file uploading — By leveraging all those experience our aim was to build a delightful user experience around it. I’ve described below the service & libraries we used to build that experience.

Cloudinary — This service has become my de facto place to host assets for a long time now, the reason being they not just provide great image processing features on the fly but also provide super simple file uploading process directly from the browser without involving any backend.

React Dropzone — We’re big fan of React’s declarative approach towards building UI. Similarly, drop zone provides an intuitive declarative API for enabling file upload across browsers.

Axios — A sleek promise based HTTP robust client library which helps us to talk to third party services & backend without breaking a sweat.

How To ??‍?

Firstly register on Cloudinary, (if you don’t have an account already) and obtain your API KEY & Image upload URL

Secondly, We will need to enable unsigned upload in our account settings

Once we’ve enabled unsigned uploading, we should see something like this

Note down the preset name we will need it later in the code.

Now, Head over to your project — add React Dropzone & Axios

npm install --save react-dropzone axios

Let’s import these newly added dependencies to the React component where we want to provide uploading feature

import Dropzone from 'react-dropzone'
import axios from 'axios'

We’ll now add the code for uploading

<Dropzone 
    onDrop={this.handleDrop} 
    multiple 
    accept="image/*" 
    style={styles.dropzone}
>
    <p>Drop your files or click here to upload</p>
</Dropzone>

Dropzone will trigger functionhandleDrop with the first parameter as an array of File when our user is done choosing the files to upload.

Now let’s add code which will upload those files to our Cloudinary Account

handleDrop = files => {
  // Push all the axios request promise into a single array
  const uploaders = files.map(file => {
    // Initial FormData
    const formData = new FormData();
    formData.append("file", file);
    formData.append("tags", `codeinfuse, medium, gist`);
    formData.append("upload_preset", "pvhilzh7"); // Replace the preset name with your own
    formData.append("api_key", "1234567"); // Replace API key with your own Cloudinary key
    formData.append("timestamp", (Date.now() / 1000) | 0);
    
    // Make an AJAX upload request using Axios (replace Cloudinary URL below with your own)
    return axios.post("https://api.cloudinary.com/v1_1/codeinfuse/image/upload", formData, {
      headers: { "X-Requested-With": "XMLHttpRequest" },
    }).then(response => {
      const data = response.data;
      const fileURL = data.secure_url // You should store this URL for future references in your app
      console.log(data);
    })
  });

  // Once all the files are uploaded 
  axios.all(uploaders).then(() => {
    // ... perform after upload is successful operation
  });
}

Gist: https://gist.github.com/BilalBudhani/97c36307bfb184d32f4125bcedc0fd55

(Replace the Cloudinary image upload URL, upload preset, API key with your own)

Voila! We just got ourselves a completely functional file upload mechanism without any involvement of backend code.