|
|
|
|
|
|
|
|
|
import * as React from 'react' |
|
import { FileText, Upload, X } from 'lucide-react' |
|
import Dropzone, { type DropzoneProps, type FileRejection } from 'react-dropzone' |
|
import { toast } from 'sonner' |
|
|
|
import { cn } from '@/lib/utils' |
|
import { useControllableState } from '@radix-ui/react-use-controllable-state' |
|
import Button from '@/components/ui/Button' |
|
import Progress from '@/components/ui/Progress' |
|
import { ScrollArea } from '@/components/ui/ScrollArea' |
|
import { supportedFileTypes } from '@/lib/constants' |
|
|
|
interface FileUploaderProps extends React.HTMLAttributes<HTMLDivElement> { |
|
|
|
|
|
|
|
|
|
|
|
|
|
value?: File[] |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
onValueChange?: (files: File[]) => void |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
onUpload?: (files: File[]) => Promise<void> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
progresses?: Record<string, number> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
accept?: DropzoneProps['accept'] |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
maxSize?: DropzoneProps['maxSize'] |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
maxFileCount?: DropzoneProps['maxFiles'] |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
multiple?: boolean |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
disabled?: boolean |
|
|
|
description?: string |
|
} |
|
|
|
function formatBytes( |
|
bytes: number, |
|
opts: { |
|
decimals?: number |
|
sizeType?: 'accurate' | 'normal' |
|
} = {} |
|
) { |
|
const { decimals = 0, sizeType = 'normal' } = opts |
|
|
|
const sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB'] |
|
const accurateSizes = ['Bytes', 'KiB', 'MiB', 'GiB', 'TiB'] |
|
if (bytes === 0) return '0 Byte' |
|
const i = Math.floor(Math.log(bytes) / Math.log(1024)) |
|
return `${(bytes / Math.pow(1024, i)).toFixed(decimals)} ${ |
|
sizeType === 'accurate' ? (accurateSizes[i] ?? 'Bytes') : (sizes[i] ?? 'Bytes') |
|
}` |
|
} |
|
|
|
function FileUploader(props: FileUploaderProps) { |
|
const { |
|
value: valueProp, |
|
onValueChange, |
|
onUpload, |
|
progresses, |
|
accept = supportedFileTypes, |
|
maxSize = 1024 * 1024 * 200, |
|
maxFileCount = 1, |
|
multiple = false, |
|
disabled = false, |
|
description, |
|
className, |
|
...dropzoneProps |
|
} = props |
|
|
|
const [files, setFiles] = useControllableState({ |
|
prop: valueProp, |
|
onChange: onValueChange |
|
}) |
|
|
|
const onDrop = React.useCallback( |
|
(acceptedFiles: File[], rejectedFiles: FileRejection[]) => { |
|
if (!multiple && maxFileCount === 1 && acceptedFiles.length > 1) { |
|
toast.error('Cannot upload more than 1 file at a time') |
|
return |
|
} |
|
|
|
if ((files?.length ?? 0) + acceptedFiles.length > maxFileCount) { |
|
toast.error(`Cannot upload more than ${maxFileCount} files`) |
|
return |
|
} |
|
|
|
const newFiles = acceptedFiles.map((file) => |
|
Object.assign(file, { |
|
preview: URL.createObjectURL(file) |
|
}) |
|
) |
|
|
|
const updatedFiles = files ? [...files, ...newFiles] : newFiles |
|
|
|
setFiles(updatedFiles) |
|
|
|
if (rejectedFiles.length > 0) { |
|
rejectedFiles.forEach(({ file }) => { |
|
toast.error(`File ${file.name} was rejected`) |
|
}) |
|
} |
|
|
|
if (onUpload && updatedFiles.length > 0 && updatedFiles.length <= maxFileCount) { |
|
const target = updatedFiles.length > 0 ? `${updatedFiles.length} files` : 'file' |
|
|
|
toast.promise(onUpload(updatedFiles), { |
|
loading: `Uploading ${target}...`, |
|
success: () => { |
|
setFiles([]) |
|
return `${target} uploaded` |
|
}, |
|
error: `Failed to upload ${target}` |
|
}) |
|
} |
|
}, |
|
|
|
[files, maxFileCount, multiple, onUpload, setFiles] |
|
) |
|
|
|
function onRemove(index: number) { |
|
if (!files) return |
|
const newFiles = files.filter((_, i) => i !== index) |
|
setFiles(newFiles) |
|
onValueChange?.(newFiles) |
|
} |
|
|
|
|
|
React.useEffect(() => { |
|
return () => { |
|
if (!files) return |
|
files.forEach((file) => { |
|
if (isFileWithPreview(file)) { |
|
URL.revokeObjectURL(file.preview) |
|
} |
|
}) |
|
} |
|
|
|
}, []) |
|
|
|
const isDisabled = disabled || (files?.length ?? 0) >= maxFileCount |
|
|
|
return ( |
|
<div className="relative flex flex-col gap-6 overflow-hidden"> |
|
<Dropzone |
|
onDrop={onDrop} |
|
accept={accept} |
|
maxSize={maxSize} |
|
maxFiles={maxFileCount} |
|
multiple={maxFileCount > 1 || multiple} |
|
disabled={isDisabled} |
|
> |
|
{({ getRootProps, getInputProps, isDragActive }) => ( |
|
<div |
|
{...getRootProps()} |
|
className={cn( |
|
'group border-muted-foreground/25 hover:bg-muted/25 relative grid h-52 w-full cursor-pointer place-items-center rounded-lg border-2 border-dashed px-5 py-2.5 text-center transition', |
|
'ring-offset-background focus-visible:ring-ring focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:outline-none', |
|
isDragActive && 'border-muted-foreground/50', |
|
isDisabled && 'pointer-events-none opacity-60', |
|
className |
|
)} |
|
{...dropzoneProps} |
|
> |
|
<input {...getInputProps()} /> |
|
{isDragActive ? ( |
|
<div className="flex flex-col items-center justify-center gap-4 sm:px-5"> |
|
<div className="rounded-full border border-dashed p-3"> |
|
<Upload className="text-muted-foreground size-7" aria-hidden="true" /> |
|
</div> |
|
<p className="text-muted-foreground font-medium">Drop the files here</p> |
|
</div> |
|
) : ( |
|
<div className="flex flex-col items-center justify-center gap-4 sm:px-5"> |
|
<div className="rounded-full border border-dashed p-3"> |
|
<Upload className="text-muted-foreground size-7" aria-hidden="true" /> |
|
</div> |
|
<div className="flex flex-col gap-px"> |
|
<p className="text-muted-foreground font-medium"> |
|
Drag and drop files here, or click to select files |
|
</p> |
|
{description ? ( |
|
<p className="text-muted-foreground/70 text-sm">{description}</p> |
|
) : ( |
|
<p className="text-muted-foreground/70 text-sm"> |
|
You can upload |
|
{maxFileCount > 1 |
|
? ` ${maxFileCount === Infinity ? 'multiple' : maxFileCount} |
|
files (up to ${formatBytes(maxSize)} each)` |
|
: ` a file with ${formatBytes(maxSize)}`} |
|
Supported formats: TXT, MD, DOC, PDF, PPTX |
|
</p> |
|
)} |
|
</div> |
|
</div> |
|
)} |
|
</div> |
|
)} |
|
</Dropzone> |
|
{files?.length ? ( |
|
<ScrollArea className="h-fit w-full px-3"> |
|
<div className="flex max-h-48 flex-col gap-4"> |
|
{files?.map((file, index) => ( |
|
<FileCard |
|
key={index} |
|
file={file} |
|
onRemove={() => onRemove(index)} |
|
progress={progresses?.[file.name]} |
|
/> |
|
))} |
|
</div> |
|
</ScrollArea> |
|
) : null} |
|
</div> |
|
) |
|
} |
|
|
|
interface FileCardProps { |
|
file: File |
|
onRemove: () => void |
|
progress?: number |
|
} |
|
|
|
function FileCard({ file, progress, onRemove }: FileCardProps) { |
|
return ( |
|
<div className="relative flex items-center gap-2.5"> |
|
<div className="flex flex-1 gap-2.5"> |
|
{isFileWithPreview(file) ? <FilePreview file={file} /> : null} |
|
<div className="flex w-full flex-col gap-2"> |
|
<div className="flex flex-col gap-px"> |
|
<p className="text-foreground/80 line-clamp-1 text-sm font-medium">{file.name}</p> |
|
<p className="text-muted-foreground text-xs">{formatBytes(file.size)}</p> |
|
</div> |
|
{progress ? <Progress value={progress} /> : null} |
|
</div> |
|
</div> |
|
<div className="flex items-center gap-2"> |
|
<Button type="button" variant="outline" size="icon" className="size-7" onClick={onRemove}> |
|
<X className="size-4" aria-hidden="true" /> |
|
<span className="sr-only">Remove file</span> |
|
</Button> |
|
</div> |
|
</div> |
|
) |
|
} |
|
|
|
function isFileWithPreview(file: File): file is File & { preview: string } { |
|
return 'preview' in file && typeof file.preview === 'string' |
|
} |
|
|
|
interface FilePreviewProps { |
|
file: File & { preview: string } |
|
} |
|
|
|
function FilePreview({ file }: FilePreviewProps) { |
|
if (file.type.startsWith('image/')) { |
|
return <div className="aspect-square shrink-0 rounded-md object-cover" /> |
|
} |
|
|
|
return <FileText className="text-muted-foreground size-10" aria-hidden="true" /> |
|
} |
|
|
|
export default FileUploader |
|
|