Reusables

Use File Upload

A React hook for handling file uploads with progress tracking and cancellation

Installation

npx shadcn@latest add "https://reusables.vercel.app/r/use-file-upload"

Usage

import { useFileUpload } from "@/hooks/useFileUpload"

For a complete implementation example, check out the Single Image Upload component.

const { handleFileUpload, cancelUpload, isUploading, progress, error, data } =
  useFileUpload({
    onSuccess: (url) => console.log("Uploaded:", url),
    onError: (error) => console.log("Error:", error),
  })

Reference

Options

PropTypeDefault
onSuccess
(url: string) => void
-
onError
(error: string) => void
-

Return Values

PropTypeDefault
data
string
-
selectedFile
File | null
-
isUploading
boolean
-
progress
number
-
error
string | null
-
handleFileUpload
(file: File) => Promise<void>
-
cancelUpload
() => void
-
Edit on GitHub

Last updated on

On this page