feat: improve drop zone with gradient icon, format pills, and card layout
Combines gradient icon (pink→purple with glow) and soft card wrapper with format type pills so the empty state feels more alive and informative. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
+59
-18
@@ -15,6 +15,17 @@ interface DropZoneProps {
|
|||||||
onBrowse: () => void;
|
onBrowse: () => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const FORMAT_PILLS = [
|
||||||
|
{ label: "IMG", color: "bg-pink/10 text-pink" },
|
||||||
|
{ label: "PDF", color: "bg-orange/10 text-orange" },
|
||||||
|
{ label: "MP4", color: "bg-purple/10 text-purple" },
|
||||||
|
{ label: "MP3", color: "bg-blue/10 text-blue" },
|
||||||
|
{ label: "SVG", color: "bg-teal/10 text-teal" },
|
||||||
|
{ label: "CSV", color: "bg-mint/10 text-mint" },
|
||||||
|
{ label: "DOCX", color: "bg-orange/10 text-orange" },
|
||||||
|
{ label: "+60", color: "bg-[#f6f6f6] text-text-light" },
|
||||||
|
];
|
||||||
|
|
||||||
export function DropZone({
|
export function DropZone({
|
||||||
isDragging,
|
isDragging,
|
||||||
onDragEnter,
|
onDragEnter,
|
||||||
@@ -23,7 +34,6 @@ export function DropZone({
|
|||||||
onDrop,
|
onDrop,
|
||||||
onBrowse,
|
onBrowse,
|
||||||
}: DropZoneProps) {
|
}: DropZoneProps) {
|
||||||
// Empty state inside Finder window
|
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
className="flex min-h-full items-center justify-center px-6 sm:px-10 py-12 sm:py-20"
|
className="flex min-h-full items-center justify-center px-6 sm:px-10 py-12 sm:py-20"
|
||||||
@@ -34,41 +44,54 @@ export function DropZone({
|
|||||||
onDrop={onDrop}
|
onDrop={onDrop}
|
||||||
>
|
>
|
||||||
<motion.div
|
<motion.div
|
||||||
className="flex w-full max-w-2xl flex-col items-center gap-5 sm:gap-6 text-center"
|
className="flex w-full max-w-lg flex-col items-center text-center"
|
||||||
initial={{ opacity: 0, y: 16 }}
|
initial={{ opacity: 0, y: 16 }}
|
||||||
animate={{ opacity: 1, y: 0 }}
|
animate={{ opacity: 1, y: 0 }}
|
||||||
transition={{ duration: 0.5, ease: [0.16, 1, 0.3, 1] as const }}
|
transition={{ duration: 0.5, ease: [0.16, 1, 0.3, 1] as const }}
|
||||||
>
|
>
|
||||||
{/* Upload icon */}
|
{/* Card */}
|
||||||
<motion.div
|
<div
|
||||||
className={`flex items-center justify-center w-20 h-20 sm:w-28 sm:h-28 rounded-3xl transition-all duration-300 ${
|
className={`w-full flex flex-col items-center gap-5 sm:gap-6 px-8 sm:px-12 py-10 sm:py-12 rounded-2xl border transition-all duration-300 ${
|
||||||
isDragging
|
isDragging
|
||||||
? "bg-pink/12 text-pink scale-110"
|
? "bg-pink/[0.03] border-pink/20 shadow-[0_8px_40px_rgba(244,114,182,0.12)]"
|
||||||
: "bg-[#f6f6f6] text-text-light"
|
: "bg-white border-border-soft shadow-[0_4px_24px_rgba(45,31,20,0.07)]"
|
||||||
}`}
|
}`}
|
||||||
|
>
|
||||||
|
{/* Upload icon — gradient bg + glow */}
|
||||||
|
<motion.div
|
||||||
|
className={`flex items-center justify-center w-20 h-20 sm:w-24 sm:h-24 rounded-2xl transition-all duration-300 ${
|
||||||
|
isDragging
|
||||||
|
? "shadow-[0_0_40px_rgba(244,114,182,0.4)]"
|
||||||
|
: "shadow-[0_0_32px_rgba(244,114,182,0.2)]"
|
||||||
|
}`}
|
||||||
|
style={{
|
||||||
|
background: isDragging
|
||||||
|
? "linear-gradient(135deg, #f472b6 0%, #a78bfa 100%)"
|
||||||
|
: "linear-gradient(135deg, #f9a8d4 0%, #c4b5fd 100%)",
|
||||||
|
}}
|
||||||
animate={{
|
animate={{
|
||||||
y: isDragging ? -8 : 0,
|
y: isDragging ? -6 : 0,
|
||||||
rotate: isDragging ? -3 : 0,
|
rotate: isDragging ? -3 : 0,
|
||||||
}}
|
}}
|
||||||
transition={{ type: "spring", stiffness: 300, damping: 20 }}
|
transition={{ type: "spring", stiffness: 300, damping: 20 }}
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
width="40"
|
width="36"
|
||||||
height="40"
|
height="36"
|
||||||
viewBox="0 0 48 48"
|
viewBox="0 0 48 48"
|
||||||
fill="none"
|
fill="none"
|
||||||
className="sm:w-12 sm:h-12"
|
className="sm:w-10 sm:h-10"
|
||||||
>
|
>
|
||||||
<path
|
<path
|
||||||
d="M24 32V12M24 12L16 20M24 12L32 20"
|
d="M24 32V12M24 12L16 20M24 12L32 20"
|
||||||
stroke="currentColor"
|
stroke="white"
|
||||||
strokeWidth="2.5"
|
strokeWidth="2.5"
|
||||||
strokeLinecap="round"
|
strokeLinecap="round"
|
||||||
strokeLinejoin="round"
|
strokeLinejoin="round"
|
||||||
/>
|
/>
|
||||||
<path
|
<path
|
||||||
d="M8 28v8a4 4 0 004 4h24a4 4 0 004-4v-8"
|
d="M8 28v8a4 4 0 004 4h24a4 4 0 004-4v-8"
|
||||||
stroke="currentColor"
|
stroke="white"
|
||||||
strokeWidth="2.5"
|
strokeWidth="2.5"
|
||||||
strokeLinecap="round"
|
strokeLinecap="round"
|
||||||
strokeLinejoin="round"
|
strokeLinejoin="round"
|
||||||
@@ -76,19 +99,35 @@ export function DropZone({
|
|||||||
</svg>
|
</svg>
|
||||||
</motion.div>
|
</motion.div>
|
||||||
|
|
||||||
<div className="max-w-xl">
|
{/* Heading + subtitle */}
|
||||||
<h2 className="font-serif text-3xl sm:text-5xl font-extrabold text-text-dark tracking-tight mb-3">
|
<div>
|
||||||
|
<h2 className="font-serif text-3xl sm:text-4xl font-extrabold text-text-dark tracking-tight mb-2">
|
||||||
{isDragging ? "Release to add" : "Drop files here"}
|
{isDragging ? "Release to add" : "Drop files here"}
|
||||||
</h2>
|
</h2>
|
||||||
<p className="text-text-mid text-base sm:text-xl max-w-xl leading-relaxed">
|
<p className="text-text-mid text-sm sm:text-base leading-relaxed">
|
||||||
{isDragging
|
{isDragging
|
||||||
? "Your files are ready for transformation"
|
? "Your files are ready for transformation"
|
||||||
: "Images, documents, audio, video, data — all formats welcome"}
|
: "Images, documents, audio, video, data — all formats welcome"}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{/* Format pills */}
|
||||||
|
{!isDragging && (
|
||||||
|
<div className="flex flex-wrap justify-center gap-1.5">
|
||||||
|
{FORMAT_PILLS.map(({ label, color }) => (
|
||||||
|
<span
|
||||||
|
key={label}
|
||||||
|
className={`font-mono text-[10px] font-semibold tracking-wide px-2.5 py-1 rounded-full ${color}`}
|
||||||
|
>
|
||||||
|
{label}
|
||||||
|
</span>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* Browse button */}
|
||||||
<motion.button
|
<motion.button
|
||||||
className="inline-flex items-center gap-2.5 mt-2 px-7 sm:px-8 py-3 sm:py-3.5 text-base sm:text-lg font-bold text-white bg-pink rounded-2xl cursor-pointer shadow-[0_6px_24px_rgba(244,114,182,0.25)] hover:-translate-y-0.5 hover:shadow-[0_8px_30px_rgba(244,114,182,0.35)] active:scale-[0.97] transition-all border-none"
|
className="inline-flex items-center gap-2.5 px-7 sm:px-8 py-3 sm:py-3.5 text-base sm:text-lg font-bold text-white bg-pink rounded-2xl cursor-pointer shadow-[0_6px_24px_rgba(244,114,182,0.25)] hover:-translate-y-0.5 hover:shadow-[0_8px_30px_rgba(244,114,182,0.35)] active:scale-[0.97] transition-all border-none"
|
||||||
onClick={onBrowse}
|
onClick={onBrowse}
|
||||||
whileHover={{ scale: 1.03 }}
|
whileHover={{ scale: 1.03 }}
|
||||||
whileTap={{ scale: 0.97 }}
|
whileTap={{ scale: 0.97 }}
|
||||||
@@ -106,9 +145,11 @@ export function DropZone({
|
|||||||
Browse files
|
Browse files
|
||||||
</motion.button>
|
</motion.button>
|
||||||
|
|
||||||
<p className="font-mono text-xs sm:text-sm text-text-light/60 tracking-wide mt-2">
|
{/* Trust signal */}
|
||||||
|
<p className="font-mono text-[11px] text-text-light/60 tracking-wide -mt-1">
|
||||||
70+ formats — 100% client-side
|
70+ formats — 100% client-side
|
||||||
</p>
|
</p>
|
||||||
|
</div>
|
||||||
</motion.div>
|
</motion.div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user