80 lines
2.5 KiB
TypeScript
80 lines
2.5 KiB
TypeScript
import { redirect } from "next/navigation";
|
|
import { getServerSession } from "next-auth";
|
|
import { authOptions } from "@/lib/auth";
|
|
import { isAdminEmail } from "@/lib/admin";
|
|
import { organizerRepo } from "@/server/repositories/organizer.repo";
|
|
import { ReviewCard } from "@/features/organizer/components/review-card";
|
|
|
|
type Tab = "PENDING" | "APPROVED" | "REJECTED";
|
|
|
|
interface PageProps {
|
|
searchParams: Promise<{ tab?: string }>;
|
|
}
|
|
|
|
export default async function AdminVerificationsPage({ searchParams }: PageProps) {
|
|
const session = await getServerSession(authOptions);
|
|
if (!session?.user) redirect("/login?callbackUrl=/admin/verifications");
|
|
if (!isAdminEmail(session.user.email)) {
|
|
return (
|
|
<div className="mx-auto max-w-2xl px-4 py-12 text-center">
|
|
<p className="text-sm text-neutral-600">
|
|
Halaman ini hanya untuk admin SeTrip.
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const params = await searchParams;
|
|
const tab: Tab =
|
|
params.tab === "APPROVED" || params.tab === "REJECTED" ? params.tab : "PENDING";
|
|
|
|
const items = await organizerRepo.listByStatus(tab);
|
|
|
|
const tabs: { key: Tab; label: string }[] = [
|
|
{ key: "PENDING", label: "Pending" },
|
|
{ key: "APPROVED", label: "Disetujui" },
|
|
{ key: "REJECTED", label: "Ditolak" },
|
|
];
|
|
|
|
return (
|
|
<div className="mx-auto max-w-4xl px-4 py-8 sm:py-12">
|
|
<header className="mb-6">
|
|
<h1 className="text-2xl font-bold text-neutral-900 sm:text-3xl">
|
|
Review Verifikasi Organizer
|
|
</h1>
|
|
<p className="mt-1 text-sm text-neutral-500">
|
|
Periksa data KTP, selfie, dan rekening sebelum menyetujui.
|
|
</p>
|
|
</header>
|
|
|
|
<div className="mb-6 flex gap-2">
|
|
{tabs.map((t) => (
|
|
<a
|
|
key={t.key}
|
|
href={`/admin/verifications?tab=${t.key}`}
|
|
className={`rounded-full px-4 py-1.5 text-sm font-semibold transition-colors ${
|
|
tab === t.key
|
|
? "bg-primary-600 text-white"
|
|
: "bg-neutral-100 text-neutral-600 hover:bg-neutral-200"
|
|
}`}
|
|
>
|
|
{t.label}
|
|
</a>
|
|
))}
|
|
</div>
|
|
|
|
{items.length === 0 ? (
|
|
<div className="rounded-2xl border border-dashed border-neutral-300 bg-white p-10 text-center">
|
|
<p className="text-sm text-neutral-500">Tidak ada data.</p>
|
|
</div>
|
|
) : (
|
|
<div className="space-y-4">
|
|
{items.map((v) => (
|
|
<ReviewCard key={v.id} verification={v} />
|
|
))}
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|