DEV Community

Cover image for React Multiple Images Upload with Preview example
bezkoder
bezkoder

Posted on • Updated on • Originally published at bezkoder.com

React Multiple Images Upload with Preview example

In this React tutorial, I will show you way to build React.js Multiple Images upload example with Preview using Axios and Multipart File for making HTTP requests, Bootstrap for progress bar and display list of images' information (with download url).

Original Full Post: https://bezkoder.com/react-multiple-image-upload-with-preview/

React Multiple Images upload Overview

We’re gonna create a React.js Multiple Images Upload with Preview application in that user can:

  • see the preview of images that will be uploaded
  • see the upload process (percentage) of each image with progress bars
  • view all uploaded files
  • download link to file when clicking on the file name

Here are screenshots of our React App:

  • Before upload:

react-multiple-image-upload-with-preview-before-upload

  • Upload is done:

react-multiple-image-upload-with-preview-example

  • List of Images Display with download Urls:

react-multiple-image-upload-with-preview-list-images

  • Show status for each image upload:

react-multiple-image-upload-with-preview-status

Web API for Image Upload & Storage

Here are APIs that we will use Axios to make HTTP requests:

Methods Urls Actions
POST /upload upload a File
GET /files get List of Files (name & url)
GET /files/[filename] download a File

You can find how to implement the Rest APIs Server at one of following posts:

Project Structure

After building the React project is done, the folder structure will look like this:

react-js-multiple-image-upload-with-preview-example-project-structure

Let me explain it briefly.

  • file-upload.service provides methods to save File and get Files using Axios.
  • images-upload.component contains upload form for multiple images, preview, progress bar, list of uploaded images display.
  • App.js is the container that we embed all React components.

  • http-common.js initializes Axios with HTTP base Url and headers.

  • We configure port for our App in .env

For more details, implementation and Github, please visit:
https://bezkoder.com/react-multiple-image-upload-with-preview/

Further Reading

Top comments (1)

Collapse
 
sloan profile image
Info Comment hidden by post author - thread only accessible via permalink
Sloan the DEV Moderator

Hi there, we encourage authors to share their entire posts here on DEV, rather than mostly pointing to an external link. Doing so helps ensure that readers don’t have to jump around to too many different pages, and it helps focus the conversation right here in the comments section.

If you choose to do so, you also have the option to add a canonical URL directly to your post.

Some comments have been hidden by the post's author - find out more