Reusables

File uploaders

Multi File Upload

A versatile file upload component that supports both images and PDFs with preview functionality, drag-and-drop, progress tracking, and form integration.

Features

  • Drag and drop support for images and PDFs
  • Preview functionality with modal viewer
  • PDF viewer integration
  • Grid or list display modes
  • Upload progress indication
  • Direct or manual upload modes
  • Error handling
  • Customizable styles
  • Dark mode support
  • Maximum file count and size limits

Installation

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

Usage

import { MultiFileUpload } from "@/components/multi-file-upload"

Examples

The examples below use the useMultipleFileUpload hook to handle the upload process.

Direct Upload

This example demonstrates direct file upload upon selection with a grid layout and circular progress indicators.

Manual Upload

This example shows manual upload control with a list layout and linear progress indicators.

Form Integration

This example demonstrates integration with React Hook Form, including validation and form submission.

Create Document

Reference

PropTypeDefault
width
string
100%
height
string
240px
className
string
-
value
FileState[]
-
onChange
(files: FileState[]) => void | Promise<void>
-
onFilesAdded
(addedFiles: FileState[]) => void | Promise<void>
-
disabled
boolean
-
dropzoneOptions
Omit<DropzoneOptions, 'disabled'>
-
isDirectUpload
boolean
-
onUpload
(files: File[]) => void | Promise<void>
-
displayMode
'grid' | 'list'
grid
Edit on GitHub

Last updated on

On this page