removed static props for PageAlert

This commit is contained in:
PxlLoewe
2025-05-27 11:19:18 -07:00
parent f54d3ab040
commit 5d5b2dc91f
12 changed files with 70 additions and 142 deletions

View File

@@ -15,8 +15,8 @@ interface AppointmentModalProps {
ref: RefObject<HTMLDialogElement | null>;
participantModal: RefObject<HTMLDialogElement | null>;
appointmentsTableRef: React.RefObject<PaginatedTableRef | null>;
appointmentForm: UseFormReturn<EventAppointmentOptionalDefaults, any, undefined>;
participantForm: UseFormReturn<Participant, any, undefined>;
appointmentForm: UseFormReturn<EventAppointmentOptionalDefaults>;
participantForm: UseFormReturn<Participant>;
}
export const AppointmentModal = ({

View File

@@ -1,36 +1,34 @@
import { DatabaseBackupIcon, PartyPopperIcon } from 'lucide-react';
import { PaginatedTable } from '../../../_components/PaginatedTable';
import Link from 'next/link';
import { PartyPopperIcon } from "lucide-react";
import { PaginatedTable } from "../../../_components/PaginatedTable";
import Link from "next/link";
export default () => {
return (
<>
<PaginatedTable
showEditButton
prismaModel="event"
columns={[
{
header: 'Name',
accessorKey: 'name',
},
{
header: 'Versteckt',
accessorKey: 'hidden',
},
]}
leftOfSearch={
<span className="flex items-center gap-2">
<PartyPopperIcon className="w-5 h-5" /> Events
</span>
}
rightOfSearch={
<Link href={'/admin/event/new'}>
<button className="btn btn-sm btn-outline btn-primary">
Erstellen
</button>
</Link>
}
/>
</>
);
};
export default function Page() {
return (
<>
<PaginatedTable
showEditButton
prismaModel="event"
columns={[
{
header: "Name",
accessorKey: "name",
},
{
header: "Versteckt",
accessorKey: "hidden",
},
]}
leftOfSearch={
<span className="flex items-center gap-2">
<PartyPopperIcon className="w-5 h-5" /> Events
</span>
}
rightOfSearch={
<Link href={"/admin/event/new"}>
<button className="btn btn-sm btn-outline btn-primary">Erstellen</button>
</Link>
}
/>
</>
);
}