All components
Image Upload List
file-uploadOrigin UI component.
responsive · 600px
Install
Same command in any shadcn project — React (Vite/CRA), Next.js, Remix, Astro, and more:
$
npx shadcn@latest add https://your-domain/r/comp-547.jsonUsage
import Cmp from "@/registry/origin-ui/comp-547";
export default function Demo() {
return <Cmp />;
}Component source
"use client";
import { AlertCircleIcon, ImageIcon, UploadIcon, XIcon } from "lucide-react";
import {
formatBytes,
useFileUpload,
} from "@/registry/origin-ui/use-file-upload";
import { Button } from "@/components/ui/button";
// Create some dummy initial files
const initialFiles = [
{
id: "image-01-123456789",
name: "image-01.jpg",
size: 1528737,
type: "image/jpeg",
url: "https://picsum.photos/1000/800?grayscale&random=1",
},
{
id: "image-02-123456789",
name: "image-02.jpg",
size: 2345678,
type: "image/jpeg",
url: "https://picsum.photos/1000/800?grayscale&random=2",
},
{
id: "image-03-123456789",
name: "image-03.jpg",
size: 3456789,
type: "image/jpeg",
url: "https://picsum.photos/1000/800?grayscale&random=3",
},
];
export default function Component() {
const maxSizeMB = 5;
const maxSize = maxSizeMB * 1024 * 1024; // 5MB default
const maxFiles = 6;
const [
{ files, isDragging, errors },
{
handleDragEnter,
handleDragLeave,
handleDragOver,
handleDrop,
openFileDialog,
removeFile,
clearFiles,
getInputProps,
},
] = useFileUpload({
accept: "image/svg+xml,image/png,image/jpeg,image/jpg,image/gif",
initialFiles,
maxFiles,
maxSize,
multiple: true,
});
return (
<div className="flex flex-col gap-2">
{/* Drop area */}
<div
className="relative flex min-h-52 flex-col items-center not-data-[files]:justify-center overflow-hidden rounded-xl border border-input border-dashed p-4 transition-colors has-[input:focus]:border-ring has-[input:focus]:ring-[3px] has-[input:focus]:ring-ring/50 data-[dragging=true]:bg-accent/50"
data-dragging={isDragging || undefined}
data-files={files.length > 0 || undefined}
onDragEnter={handleDragEnter}
onDragLeave={handleDragLeave}
onDragOver={handleDragOver}
onDrop={handleDrop}
>
<input
{...getInputProps()}
aria-label="Upload image file"
className="sr-only"
/>
<div className="flex flex-col items-center justify-center px-4 py-3 text-center">
<div
aria-hidden="true"
className="mb-2 flex size-11 shrink-0 items-center justify-center rounded-full border bg-background"
>
<ImageIcon className="size-4 opacity-60" />
</div>
<p className="mb-1.5 font-medium text-sm">Drop your images here</p>
<p className="text-muted-foreground text-xs">
SVG, PNG, JPG or GIF (max. {maxSizeMB}MB)
</p>
<Button className="mt-4" onClick={openFileDialog} variant="outline">
<UploadIcon aria-hidden="true" className="-ms-1 opacity-60" />
Select images
</Button>
</div>
</div>
{errors.length > 0 && (
<div
className="flex items-center gap-1 text-destructive text-xs"
role="alert"
>
<AlertCircleIcon className="size-3 shrink-0" />
<span>{errors[0]}</span>
</div>
)}
{/* File list */}
{files.length > 0 && (
<div className="space-y-2">
{files.map((file) => (
<div
className="flex items-center justify-between gap-2 rounded-lg border bg-background p-2 pe-3"
key={file.id}
>
<div className="flex items-center gap-3 overflow-hidden">
<div className="aspect-square shrink-0 rounded bg-accent">
<img
alt={file.file.name}
className="size-10 rounded-[inherit] object-cover"
src={file.preview}
/>
</div>
<div className="flex min-w-0 flex-col gap-0.5">
<p className="truncate font-medium text-[13px]">
{file.file.name}
</p>
<p className="text-muted-foreground text-xs">
{formatBytes(file.file.size)}
</p>
</div>
</div>
<Button
aria-label="Remove file"
className="-me-2 size-8 text-muted-foreground/80 hover:bg-transparent hover:text-foreground"
onClick={() => removeFile(file.id)}
size="icon"
variant="ghost"
>
<XIcon aria-hidden="true" />
</Button>
</div>
))}
{/* Remove all files button */}
{files.length > 1 && (
<div>
<Button onClick={clearFiles} size="sm" variant="outline">
Remove all files
</Button>
</div>
)}
</div>
)}
<p
aria-live="polite"
className="mt-2 text-center text-muted-foreground text-xs"
role="region"
>
Multiple image uploader w/ image list ∙{" "}
<a
className="underline hover:text-foreground"
href="https://github.com/cosscom/coss/blob/main/apps/origin/docs/use-file-upload.md"
>
API
</a>
</p>
</div>
);
}Source: Origin UI