mirror of
https://github.com/OpenCut-app/OpenCut.git
synced 2026-07-13 21:52:53 +02:00
58 lines
1.5 KiB
TypeScript
58 lines
1.5 KiB
TypeScript
import { Upload, Plus, Image } from "lucide-react";
|
|
import { Button } from "@/components/ui/button";
|
|
|
|
interface MediaDragOverlayProps {
|
|
isVisible: boolean;
|
|
isProcessing?: boolean;
|
|
progress?: number;
|
|
onClick?: () => void;
|
|
isEmptyState?: boolean;
|
|
}
|
|
|
|
export function MediaDragOverlay({
|
|
isVisible,
|
|
isProcessing = false,
|
|
progress = 0,
|
|
onClick,
|
|
isEmptyState = false,
|
|
}: MediaDragOverlayProps) {
|
|
if (!isVisible) return null;
|
|
|
|
const handleClick = (e: React.MouseEvent) => {
|
|
if (isProcessing || !onClick) return;
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
onClick();
|
|
};
|
|
|
|
return (
|
|
<div
|
|
className="bg-foreground/5 hover:bg-foreground/10 flex h-full flex-col items-center justify-center gap-4 rounded-lg p-8 text-center transition-all duration-200"
|
|
onClick={handleClick}
|
|
>
|
|
<div className="flex items-center justify-center">
|
|
<Upload className="text-foreground h-10 w-10" />
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<p className="text-muted-foreground max-w-sm text-xs">
|
|
{isProcessing
|
|
? `Processing your files (${progress}%)`
|
|
: "Drag and drop videos, photos, and audio files here"}
|
|
</p>
|
|
</div>
|
|
|
|
{isProcessing && (
|
|
<div className="w-full max-w-xs">
|
|
<div className="bg-muted/50 h-2 w-full rounded-full">
|
|
<div
|
|
className="bg-primary h-2 rounded-full transition-all duration-300"
|
|
style={{ width: `${progress}%` }}
|
|
/>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|