45 lines
948 B
TypeScript
45 lines
948 B
TypeScript
import { prisma } from "@repo/db";
|
|
import { getServerSession } from "../../api/auth/[...nextauth]/auth";
|
|
import { EventCard } from "./_components/EventCard";
|
|
import { RocketIcon } from "@radix-ui/react-icons";
|
|
|
|
const page = async () => {
|
|
const session = await getServerSession();
|
|
if (!session) return null;
|
|
const user = session.user;
|
|
if (!user) return null;
|
|
|
|
const events = await prisma.event.findMany({
|
|
where: {
|
|
hidden: false,
|
|
},
|
|
include: {
|
|
Participants: {
|
|
where: {
|
|
userId: user.id,
|
|
},
|
|
},
|
|
},
|
|
|
|
orderBy: {
|
|
id: "desc",
|
|
},
|
|
});
|
|
|
|
return (
|
|
<div className="grid grid-cols-6 gap-4">
|
|
<div className="col-span-full">
|
|
<p className="flex items-center gap-2 text-left text-2xl font-semibold">
|
|
<RocketIcon className="h-5 w-5" /> Events & Kurse
|
|
</p>
|
|
</div>
|
|
|
|
{events.map((event) => {
|
|
return <EventCard user={user} event={event} key={event.id} />;
|
|
})}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default page;
|