From 76ba7603280f5e31450c8f42bc01c4893954f8f8 Mon Sep 17 00:00:00 2001 From: Kevin Mok Date: Fri, 28 Mar 2025 15:11:40 -0400 Subject: [PATCH] Transition details from event to popup --- src/components/DraggableEvent.tsx | 21 +++++++++++++++++---- src/components/EventModal.tsx | 22 +++++++++++++++++++--- 2 files changed, 36 insertions(+), 7 deletions(-) diff --git a/src/components/DraggableEvent.tsx b/src/components/DraggableEvent.tsx index 7e60a09..43b032b 100644 --- a/src/components/DraggableEvent.tsx +++ b/src/components/DraggableEvent.tsx @@ -71,6 +71,7 @@ export default function DraggableEvent({ onClick={() => !isDragging && onEventClick({ event, date })} className="bg-white p-4 rounded shadow-md mb-2 cursor-grab active:cursor-grabbing transition-all relative select-none" whileHover={{ scale: 1.01 }} + transition={{ duration: 1.2 }} style={{ opacity: isDragging ? 0.7 : 1, userSelect: 'none', @@ -80,18 +81,30 @@ export default function DraggableEvent({ >
{event.imageUrl && ( - {event.title} )} -
+ {event.time} -
+
-

{event.title}

+ + {event.title} + ); } \ No newline at end of file diff --git a/src/components/EventModal.tsx b/src/components/EventModal.tsx index 477ab0c..c981acc 100644 --- a/src/components/EventModal.tsx +++ b/src/components/EventModal.tsx @@ -27,6 +27,7 @@ const EventModal = ({ event, date, onClose }: EventModalProps) => { initial={{ opacity: 0 }} animate={{ opacity: 1 }} exit={{ opacity: 0 }} + transition={{ duration: 1.2 }} > { initial={{ scale: 0.95 }} animate={{ scale: 1 }} exit={{ scale: 0.95 }} + transition={{ duration: 1.2 }} > {event.imageUrl && ( - {event.title} )} - {event.title} + + {event.title} + Date: {formattedDate} - Time: {event.time} + + Time: {event.time} + {event.description && ( Description: {event.description}