Reusables

File uploaders

Universal File Upload

A versatile file upload component that supports any file type with preview functionality, drag-and-drop, progress tracking, and intelligent file type detection.

Features

  • Support for any file type
  • Intelligent file type detection and icons
  • Drag and drop support
  • 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/universal-file-upload"

Usage

import { UniversalFileUpload } from "@/components/universal-file-upload"

Examples

Direct Upload

This example shows direct file upload upon selection.

Manual Upload

The example below demonstrates manual file upload with a grid layout.

Form Integration

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

Create Document

File Type Support

The component includes intelligent file type detection and displays appropriate icons for different file types:

  • Images (jpg, jpeg, png, gif, webp)
  • Videos (mp4, webm, ogg)
  • Audio (mp3, wav)
  • Documents (pdf, doc, docx)
  • Spreadsheets (xls, xlsx, csv)
  • Code files (js, ts, jsx, tsx, html, css)
  • Archives (zip, rar, 7z, tar, gz)
  • And more…

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