-
-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathEventCard.jsx
More file actions
244 lines (226 loc) · 7.73 KB
/
EventCard.jsx
File metadata and controls
244 lines (226 loc) · 7.73 KB
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
import { useState } from 'react';
import { Card } from 'reactstrap';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import {
faUsers,
faChevronDown,
faCalendar,
faClock,
faMapMarkerAlt,
faTag,
} from '@fortawesome/free-solid-svg-icons';
import { format } from 'date-fns';
import { getUserTimezone, formatEventTimeWithTimezone } from '../../../../utils/timezoneUtils';
import styles from './EventCard.module.css';
function EventCard(props) {
const { event, darkMode } = props;
const [expanded, setExpanded] = useState(false);
const {
title = '',
description = '',
type = '',
location = '',
startTime = '',
endTime = '',
date = '',
status = 'New',
resources = [],
currentAttendees = 0,
maxAttendees = 0,
} = event;
const attendanceRate = Math.round((currentAttendees / maxAttendees) * 100) || 0;
const getStatusClass = statusValue => {
switch (statusValue?.toLowerCase()) {
case 'full':
return 'status-full';
case 'filling fast':
return 'status-filling';
case 'need attendees':
return 'status-need';
default:
return 'status-new';
}
};
const getLocationTag = locationType => {
return (locationType?.toLowerCase() || '') === 'virtual' ? 'virtual-tag' : 'in-person-tag';
};
const getDisplayLocation = () => {
if (
location == null ||
String(location).trim() === '' ||
String(location).toLowerCase() === 'tbd'
) {
return 'Location TBD';
}
return location;
};
const formatDate = dateString => {
if (!dateString) {
return 'Date not set';
}
try {
const date = new Date(dateString);
if (Number.isNaN(date.getTime())) {
return 'Invalid date';
}
return format(date, 'MMM dd, yyyy');
} catch (error) {
console.error('Error formatting date:', error);
return 'Date not set';
}
};
const formatDateTime = (eventDate, timeString) => {
try {
if (!timeString) {
return 'Time not set';
}
// eventDate is required to correctly anchor a time-only string (e.g. "5:00 PM")
// to a UTC datetime before conversion. Without it, toFullEventDatetime falls back
// to parsing in the local machine timezone, producing inconsistent results.
if (!eventDate) {
return 'Date not set';
}
const userTimezone = getUserTimezone();
return formatEventTimeWithTimezone(eventDate, timeString, userTimezone);
} catch (error) {
console.error('Error formatting date time:', error);
return 'Time not set';
}
};
const handleConfirmation = async () => {
// TODO: Replace with actual registration endpoint once available
// Will use: POST /api/register/create
};
return (
<Card
className={`${styles['event-card']} ${
darkMode ? `${styles['bg-space-cadet']} text-light` : ''
}`}
>
<div className={styles['cover-section']}>
<img src={event.coverImage} alt={event.title} className={styles['event-cover-image']} />
</div>
<div className="p-3">
{/* Title and Status */}
<div className="d-flex justify-content-between align-items-start">
<div className="d-flex flex-column">
<div className={`d-flex align-items-center ${styles['gap-2']}`}>
<h2 className={`h4 mb-0 ${darkMode ? 'text-light' : ''}`}>{title}</h2>
<span className={`badge ${styles['status-badge']} ${styles[getStatusClass(status)]}`}>
{status}
</span>
</div>
</div>
</div>
{/* Event Details */}
<div className={`${styles['event-details']} mt-3`}>
<div className="d-flex align-items-center mb-2">
<FontAwesomeIcon
icon={faTag}
className={`me-2 ${darkMode ? 'text-light' : 'text-muted'}`}
/>
<span className="text-muted">Type:</span>
<span className="ms-2">{type}</span>
</div>
<div className="d-flex align-items-center mb-2">
<FontAwesomeIcon icon={faMapMarkerAlt} className="me-2 text-muted" />
<span className="text-muted">Location:</span>
<span
className={`ms-2 ${styles['attendee-tag']} ${
styles[getLocationTag(getDisplayLocation())]
}`}
>
{getDisplayLocation()}
</span>
</div>
<div className={`${styles['event-description']} mb-2`}>
<span className="text-muted">Description:</span>
<p className="mt-1 mb-0">{description}</p>
</div>
</div>
{/* Date and Time */}
<div className="mb-4">
<div className="d-flex align-items-center mb-2">
<FontAwesomeIcon icon={faCalendar} className="me-2" />
<span>{formatDate(date)}</span>
</div>
<div className="d-flex align-items-center mb-2">
<FontAwesomeIcon icon={faClock} className="me-2" />
<span>
{formatDateTime(date, startTime)} - {formatDateTime(date, endTime)}
</span>
</div>
</div>
{/* Attendance Stats */}
<div className="mb-4">
<h3 className="h5 mb-3">Attendance</h3>
<p className="mb-2">Attendance rate: {attendanceRate}%</p>
<div className={styles['attendance-progress']}>
<div className={styles['attendance-bar']} style={{ width: `${attendanceRate}%` }} />
</div>
</div>
{/* Attendees List */}
<div className={styles['attendees-section']}>
<div className="d-flex align-items-center mb-3">
<FontAwesomeIcon icon={faUsers} className="me-2" />
<span>
Attendees ({currentAttendees}/{maxAttendees})
</span>
</div>
{(resources || []).slice(0, expanded ? undefined : 3).map(resource => (
<div
key={`${resource.name}-${resource.location}-${resource.userID || ''}`}
className="d-flex justify-content-between align-items-center py-2"
>
<div className="d-flex align-items-center">
<div className={`${styles['avatar-placeholder']} me-2`} />
<span>{resource.name}</span>
</div>
<span
className={`${styles['attendee-tag']} ${styles[getLocationTag(resource.location)]}`}
>
{resource.location.toLowerCase()}
</span>
</div>
))}
{resources.length > 3 && (
<button
type="button"
className="btn btn-link d-flex align-items-center mt-2"
onClick={() => setExpanded(!expanded)}
>
<FontAwesomeIcon
icon={faChevronDown}
className={`me-1 ${expanded ? styles['expanded'] : ''}`}
/>
{expanded ? 'Show less' : `Show ${resources.length - 3} more`}
</button>
)}
</div>
{/* Action Buttons */}
<div className="mt-3">
<button
type="button"
className={`${styles['action-button']} ${styles['primary-button']}`}
onClick={handleConfirmation}
>
Confirm attendance
</button>
<button
type="button"
className={`${styles['action-button']} ${styles['secondary-button']}`}
>
Log activity
</button>
<button
type="button"
className={`${styles['action-button']} ${styles['secondary-button']}`}
>
Report
</button>
</div>
</div>
</Card>
);
}
export default EventCard;