How to Use a Simple Form Submit with Files in React (2024)

Introduction

Uploading images or files is a major function of any app. It is an essential requirement for creating a truly full-stack app. For example, Facebook, Instagram, and Snapchat all have the functionality to upload images and videos.

In traditional HTML sites, the file upload form forces a page refresh, which might be confusing to users. Also, you might want to customize the look of the file input in the form to make it resonate with your overall app design. When it comes to both of these issues, React can help you provide a better user experience.

This guide will get you up and running with file uploads in React.

Creating a Basic Form

In your App.js file, create a basic form that with a name field and a file input.

Now, add state in the component to store the name and the file data.

 import React, { useState } from "react";const App = () => { const [name, setName] = useState(""); const [selectedFile, setSelectedFile] = useState(null); return ( <div className="App"> <form> <input type="text" value={name} onChange={(e) => setName(e.target.value)} /> <input type="file" value={selectedFile} onChange={(e) => setSelectedFile(e.target.files[0])} /> </form> </div> );}; 

Creating a Custom File Uploader Component

Now that the basic form is set up, create a custom file uploader component that can be reused across multiple forms in the app.

If you check the output of the current form, you will notice that the file input doesn't have a great look; that's because the browser defines its default styling. In this section, you will learn how to create a file upload component with custom styling.

 const FileUploader = () => { const handleFileInput = () => {} return ( <div className="file-uploader"> <input type="file" onChange={handleFileInput}> </div> )} 

To create a custom file uploader, the first step is to hide the default input and trigger the change event using a ref.

 import React, {useRef} from 'react'const FileUploader = ({onFileSelect}) => { const fileInput = useRef(null) const handleFileInput = (e) => { // handle validations onFileSelect(e.target.files[0]) } return ( <div className="file-uploader"> <input type="file" onChange={handleFileInput}> <button onClick={e => fileInput.current && fileInput.current.click()} className="btn btn-primary"> </div> )} 

You can style the upload button to match the theme of your overall application. Send the uploaded file back to the parent component using a callback prop; in this case, it is onFileSelect. Inside the handleFileInput method, you can do validations like checking for filesize, file extensions, etc., and based on that, send feedback to the parent component using callback props like onFileSelectSuccess and onFileSelectError.

 const handleFileInput = (e) => { // handle validations const file = e.target.files[0]; if (file.size > 1024) onFileSelectError({ error: "File size cannot exceed more than 1MB" }); else onFileSelectSuccess(file);}; 

Adding the File Uploader Component to the Form

Add the file uploader component as follows :

 import React, { useState } from "react";const App = () => { const [name, setName] = useState(""); const [selectedFile, setSelectedFile] = useState(null); const submitForm = () => {}; return ( <div className="App"> <form> <input type="text" value={name} onChange={(e) => setName(e.target.value)} /> <FileUploaded onFileSelectSuccess={(file) => setSelectedFile(file)} onFileSelectError={({ error }) => alert(error)} /> <button onClick={submitForm}>Submit</button> </form> </div> );}; 

Uploading Files Using FormData

Upload a selected file using the FormData object. Append the name and file using the append method of the formData object.

 const submitForm = () => { const formData = new FormData(); formData.append("name", name); formData.append("file", selectedFile); axios .post(UPLOAD_URL, formData) .then((res) => { alert("File Upload success"); }) .catch((err) => alert("File Upload Error"));}; 

That's pretty much it. You have successfully created and added a custom file upload component.

Conclusion

File uploading is an essential part of any web app. You can use other third-party libraries to create custom file upload inputs, but you should have a fair idea of how they are implemented under the hood.

There are several instances where file uploads are required, but with some customization. Third-party libraries may not always help you out in such cases, however, your custom file upload utility can.

Learn More

Explore these React courses from Pluralsight to continue learning:

  • React Course
  • Building React Apps
  • Calling APIs With React
  • React Best Practices
How to Use a Simple Form Submit with Files in React (2024)
Top Articles
How to Transfer Apple Cash to Your Bank Account - NerdWallet
HoYoLAB - Official Community
Nullreferenceexception 7 Days To Die
Tryst Utah
What spices do Germans cook with?
Research Tome Neltharus
Junk Cars For Sale Craigslist
My Boyfriend Has No Money And I Pay For Everything
How Much Is 10000 Nickels
27 Places With The Absolute Best Pizza In NYC
Osrs Blessed Axe
The Weather Channel Facebook
The fabulous trio of the Miller sisters
Transfer Credits Uncc
Craigslist Apartments In Philly
Nj State Police Private Detective Unit
D10 Wrestling Facebook
Highland Park, Los Angeles, Neighborhood Guide
Theresa Alone Gofundme
Walgreens San Pedro And Hildebrand
NBA 2k23 MyTEAM guide: Every Trophy Case Agenda for all 30 teams
Babbychula
Move Relearner Infinite Fusion
January 8 Jesus Calling
Is Holly Warlick Married To Susan Patton
11526 Lake Ave Cleveland Oh 44102
Jersey Shore Subreddit
Kaliii - Area Codes Lyrics
Unm Hsc Zoom
Nicole Wallace Mother Of Pearl Necklace
CARLY Thank You Notes
Colorado Parks And Wildlife Reissue List
Pepsi Collaboration
WorldAccount | Data Protection
Craigslist Mexicali Cars And Trucks - By Owner
Second Chance Apartments, 2nd Chance Apartments Locators for Bad Credit
Academy Sports New Bern Nc Coupons
Weather Underground Corvallis
Umiami Sorority Rankings
Simnet Jwu
Clausen's Car Wash
John Wick: Kapitel 4 (2023)
Mcoc Black Panther
Theater X Orange Heights Florida
Mail2World Sign Up
Shannon Sharpe Pointing Gif
Is TinyZone TV Safe?
786 Area Code -Get a Local Phone Number For Miami, Florida
OSF OnCall Urgent Care treats minor illnesses and injuries
Dr Seuss Star Bellied Sneetches Pdf
Latest Posts
Article information

Author: Dan Stracke

Last Updated:

Views: 6266

Rating: 4.2 / 5 (63 voted)

Reviews: 86% of readers found this page helpful

Author information

Name: Dan Stracke

Birthday: 1992-08-25

Address: 2253 Brown Springs, East Alla, OH 38634-0309

Phone: +398735162064

Job: Investor Government Associate

Hobby: Shopping, LARPing, Scrapbooking, Surfing, Slacklining, Dance, Glassblowing

Introduction: My name is Dan Stracke, I am a homely, gleaming, glamorous, inquisitive, homely, gorgeous, light person who loves writing and wants to share my knowledge and understanding with you.