Categories

Thursday, April 25, 2024
#919814419350 therichposts@gmail.com
NodejsReactjs

Reactjs Nodejs Upload Multiple Images

Reactjs Nodejs Upload Multiple Images

Hello friends, welcome back to my blog. Today in this blog post, I am going to tell you, Reactjs Nodejs Upload Multiple Images.

Reactjs Nodejs Multiple Images Uploading

For reactjs new comers, please check the below link for basic understanding:

Reactjs Basic Tutorials


Here is the working code snippet for Reactjs Nodejs Upload Multiple Images and please use carefully and avoid mistakes:

1. Firstly friends we need reactjs fresh setup and for then we need to run below commands into our terminal and also we should have latest node version installed on our pc:

npx create-react-app reactnode

cd reactnode

npm start

 

2. Now friends we need to run below commands also to have  multiple image upload module into our reactjs application:

npm install --save react-images-uploading //mltiple image upload module

npm install bootstrap

npm install axios

npm i --save sweetalert2 

npm start //start the application

 

3. Now, we need to add below code into our src/app.js file or you can replace below code with existing one that you have into your src/app.js file:

import React from 'react';
import './App.css';

import ImageUploading from 'react-images-uploading';
//bootstrap
import 'bootstrap/dist/css/bootstrap.min.css';
//for image saving request call
import axios from 'axios';

import Swal from 'sweetalert2';
 
export function App() {
  let [images, setImages] = React.useState([]);
  const maxNumber = 69;
  
  const onChange = (imageList, addUpdateIndex) => {
    // data for submit
    console.log(imageList, addUpdateIndex);
    
    setImages(imageList);
  };

  const uploadimages = () =>
  {
        for(var a = 0; a<images.length; a++)
        {
          const fd = new FormData();
          //console.log(images[a])
          fd.append('image', images[a]['file']);
        
          //Post Request to Nodejs API Route
          axios.post('http://localhost:8000/upload', fd
          ).then(res=>
          {
            //Success Message in Sweetalert modal
            Swal.fire({
              title: 'Images hava been uploaded successfully.',
              text: "Thanks",
              type: 'success',
              
            });
            

            
          });
        }
       
  }
 
  return (
    <div className="App">
     
      <h1>Therichpost.com</h1>
      
    
      <div>
      <ImageUploading
        multiple
        value={images}
        onChange={onChange}
        maxNumber={maxNumber}
        dataURLKey="data_url"
      >
        {({
          imageList,
          onImageUpload,
          onImageRemoveAll,
          onImageUpdate,
          onImageRemove,
          isDragging,
          dragProps,
        }) => (
          // write your building UI
          <div className="upload__image-wrapper">
            <div className="mainbtndiv">
              <button className="btn btn-primary"
                style={isDragging ? { color: 'red' } : undefined}
                onClick={onImageUpload}
                {...dragProps}
              >
                Click or Drop here
              </button>
              
              <button className="btn btn-danger" onClick={onImageRemoveAll}>Remove all images</button>
            </div>
            {imageList.map((image, index) => (
              <div key={index} className="image-item mt-5 mb-5 mr-5">
                <img src={image['data_url']} />
                <div className="image-item__btn-wrapper">
                  <button className="btn btn-primary" onClick={() => onImageUpdate(index)}>Update</button>
                  <button className="btn btn-danger" onClick={() => onImageRemove(index)}>Remove</button>
                </div>
              </div>
            ))}
          </div>
        )}
      </ImageUploading>
      </div>
      <button className="btn btn-primary" onClick={() => uploadimages()}>Submit Images</button>
    </div>
  );
}
export default App;

 


1. Now friends, we need to create new folder name ‘nodeproject’ and inside it open new terminal and run below commands:

npm i express express-fileupload cors

 

2. Now friends, we need to create new file name ‘nodejs’ and add below code inside that file:

const express = require('express');
const fileUpload = require('express-fileupload');
const cors = require('cors')
const app = express();
// middle ware
app.use(express.static('public')); //to access the files in public folder
app.use(cors()); // it enables all cors requests
app.use(fileUpload());
// file upload api
app.post('/upload', (req, res) => {
    if (!req.files) {
        return res.status(500).send({ msg: "file is not found" })
    }
        // accessing the file
    const myFile = req.files.image;
    //  mv() method places the file inside public directory
    myFile.mv(`${__dirname}/public/${myFile.name}`, function (err) {
        if (err) {
            console.log(err)
            return res.status(500).send({ msg: "Error occured" });
        }
        // returing the response with file path and name
        return res.send({name: myFile.name, path: `/${myFile.name}`});
    });
})
app.listen(8000, () => {
    console.log('server is running at port 8000');
})

 

3. Now friends, we need to create folder name ‘public’ inside ‘nodeproject’ folder.

4. Now friends, we need to run below command to start node server:

node node.js

 

Now we are done friends. If you have any kind of query or suggestion or any requirement then feel free to comment below.

Note: Friends, I just tell the basic setup and things, you can change the code according to your requirements. For better understanding and live working must watch video above.

I will appreciate that if you will tell your views for this post. Nothing matters if your views will good or bad.

Jassa

Thanks

therichpost
the authortherichpost
Hello to all. Welcome to therichpost.com. Myself Ajay Malhotra and I am freelance full stack developer. I love coding. I know WordPress, Core php, Angularjs, Angular 14, Angular 15, Angular 16, Angular 17, Bootstrap 5, Nodejs, Laravel, Codeigniter, Shopify, Squarespace, jQuery, Google Map Api, Vuejs, Reactjs, Big commerce etc.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.