![]() Server : Apache/2 System : Linux server-15-235-50-60 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64 User : gositeme ( 1004) PHP Version : 8.2.29 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/gositeme/domains/lavocat.ca/private_html/src/components/ |
import React from 'react';
import { useRouter } from 'next/router';
import { useSession } from 'next-auth/react';
import LayoutWithSidebar from './LayoutWithSidebar';
import Loading from './Loading';
interface Registration {
id: string;
createdAt: string;
status: string;
// Add other registration fields as needed
}
const RegistrationList: React.FC = () => {
const router = useRouter();
const { data: session, status } = useSession();
const [loading, setLoading] = React.useState(true);
const [registrations, setRegistrations] = React.useState<Registration[]>([]);
const [error, setError] = React.useState<string | null>(null);
React.useEffect(() => {
const fetchRegistrations = async () => {
try {
setLoading(true);
const response = await fetch('/api/admin/registrations');
if (!response.ok) {
throw new Error('Failed to fetch registrations');
}
const data = await response.json();
setRegistrations(data);
} catch (err) {
setError(err instanceof Error ? err.message : 'An error occurred');
} finally {
setLoading(false);
}
};
fetchRegistrations();
}, []);
if (status === 'loading' || loading) {
return (
<LayoutWithSidebar>
<Loading />
</LayoutWithSidebar>
);
}
if (error) {
return (
<LayoutWithSidebar>
<div className="p-8 text-red-600">{error}</div>
</LayoutWithSidebar>
);
}
return (
<LayoutWithSidebar>
<div className="max-w-7xl mx-auto px-4 py-8">
<h1 className="text-3xl font-bold mb-6">Registrations</h1>
<div className="bg-white rounded-lg shadow-lg overflow-hidden">
<table className="min-w-full divide-y divide-gray-200">
<thead className="bg-gray-50">
<tr>
<th className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">ID</th>
<th className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Date</th>
<th className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Status</th>
<th className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Actions</th>
</tr>
</thead>
<tbody className="bg-white divide-y divide-gray-200">
{registrations.map((registration) => (
<tr key={registration.id} className="hover:bg-gray-50">
<td className="px-6 py-4 whitespace-nowrap text-sm text-gray-900">{registration.id}</td>
<td className="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
{new Date(registration.createdAt).toLocaleDateString()}
</td>
<td className="px-6 py-4 whitespace-nowrap text-sm text-gray-500">{registration.status}</td>
<td className="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
<button
onClick={() => router.push(`/admin/registrations/${registration.id}`)}
className="text-primary hover:text-primary-dark"
>
View
</button>
</td>
</tr>
))}
</tbody>
</table>
</div>
</div>
</LayoutWithSidebar>
);
};
export default RegistrationList;