Spaces:
Running
Running
File size: 5,532 Bytes
bfd3ad3 38de65f f5b9300 a2085ce 73d7323 f46336a 38de65f 4c0dc25 f46336a 38de65f f5b9300 a2085ce 38de65f a2085ce 73d7323 f5b9300 bfd3ad3 73d7323 bfd3ad3 a2085ce 1685b02 a2085ce 1685b02 f46336a a2085ce 6eb5e90 1685b02 6eb5e90 4c0dc25 6eb5e90 a2085ce 6eb5e90 a2085ce f46336a a2085ce f5b9300 a2085ce f5b9300 38de65f a2085ce 38de65f a2085ce 1685b02 a2085ce 1685b02 a2085ce 1685b02 a2085ce f5b9300 4c0dc25 f5b9300 a2085ce f46336a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 |
import { CalendarDays, Globe, Tag, Clock, AlarmClock } from "lucide-react";
import { Conference } from "@/types/conference";
import { formatDistanceToNow, parseISO, isValid, isPast } from "date-fns";
import ConferenceDialog from "./ConferenceDialog";
import { useState } from "react";
import { getDeadlineInLocalTime } from '@/utils/dateUtils';
const ConferenceCard = ({
title,
full_name,
year,
date,
deadline,
timezone,
tags = [],
link,
note,
abstract_deadline,
city,
country,
venue,
...conferenceProps
}: Conference) => {
const [dialogOpen, setDialogOpen] = useState(false);
const deadlineDate = getDeadlineInLocalTime(deadline, timezone);
// Add validation before using formatDistanceToNow
const getTimeRemaining = () => {
if (!deadlineDate || !isValid(deadlineDate)) {
return 'TBD';
}
if (isPast(deadlineDate)) {
return 'Deadline passed';
}
try {
return formatDistanceToNow(deadlineDate, { addSuffix: true });
} catch (error) {
console.error('Error formatting time remaining:', error);
return 'Invalid date';
}
};
const timeRemaining = getTimeRemaining();
// Create location string by concatenating city and country
const location = [city, country].filter(Boolean).join(", ");
// Determine countdown color based on days remaining
const getCountdownColor = () => {
if (!deadlineDate || !isValid(deadlineDate)) return "text-neutral-600";
try {
const daysRemaining = Math.ceil((deadlineDate.getTime() - new Date().getTime()) / (1000 * 60 * 60 * 24));
if (daysRemaining <= 7) return "text-red-600";
if (daysRemaining <= 30) return "text-orange-600";
return "text-green-600";
} catch (error) {
console.error('Error calculating countdown color:', error);
return "text-neutral-600";
}
};
const handleCardClick = (e: React.MouseEvent) => {
if (!(e.target as HTMLElement).closest('a') &&
!(e.target as HTMLElement).closest('.tag-button')) {
setDialogOpen(true);
}
};
const handleTagClick = (e: React.MouseEvent, tag: string) => {
e.stopPropagation();
const searchParams = new URLSearchParams(window.location.search);
const currentTags = searchParams.get('tags')?.split(',') || [];
let newTags;
if (currentTags.includes(tag)) {
newTags = currentTags.filter(t => t !== tag);
} else {
newTags = [...currentTags, tag];
}
if (newTags.length > 0) {
searchParams.set('tags', newTags.join(','));
} else {
searchParams.delete('tags');
}
const newUrl = `${window.location.pathname}${searchParams.toString() ? `?${searchParams.toString()}` : ''}`;
window.history.pushState({}, '', newUrl);
window.dispatchEvent(new CustomEvent('urlchange', { detail: { tag } }));
};
return (
<>
<div
className="bg-white rounded-lg shadow-sm hover:shadow-md transition-shadow p-4 flex flex-col cursor-pointer"
onClick={handleCardClick}
>
<div className="flex justify-between items-start mb-2">
<h3 className="text-lg font-semibold text-primary">
{title} {year}
</h3>
{link && (
<a
href={link}
target="_blank"
rel="noopener noreferrer"
className="hover:underline"
onClick={(e) => e.stopPropagation()}
>
<Globe className="h-4 w-4 mr-2 flex-shrink-0" />
</a>
)}
</div>
<div className="flex flex-col gap-2 mb-3">
<div className="flex items-center text-neutral">
<CalendarDays className="h-4 w-4 mr-2 flex-shrink-0" />
<span className="text-sm truncate">{date}</span>
</div>
{location && (
<div className="flex items-center text-neutral">
<Globe className="h-4 w-4 mr-2 flex-shrink-0" />
<span className="text-sm truncate">{location}</span>
</div>
)}
<div className="flex items-center text-neutral">
<Clock className="h-4 w-4 mr-2 flex-shrink-0" />
<span className="text-sm truncate">
{deadline === 'TBD' ? 'TBD' : deadline}
</span>
</div>
<div className="flex items-center">
<AlarmClock className={`h-4 w-4 mr-2 flex-shrink-0 ${getCountdownColor()}`} />
<span className={`text-sm font-medium truncate ${getCountdownColor()}`}>
{timeRemaining}
</span>
</div>
</div>
{Array.isArray(tags) && tags.length > 0 && (
<div className="flex flex-wrap gap-2">
{tags.map((tag) => (
<button
key={tag}
className="tag tag-button"
onClick={(e) => handleTagClick(e, tag)}
>
<Tag className="h-3 w-3 mr-1" />
{tag}
</button>
))}
</div>
)}
</div>
<ConferenceDialog
conference={{
title,
full_name,
year,
date,
deadline,
timezone,
tags,
link,
note,
abstract_deadline,
city,
country,
venue,
...conferenceProps
}}
open={dialogOpen}
onOpenChange={setDialogOpen}
/>
</>
);
};
export default ConferenceCard;
|