Files
football-next/app/(admin)/admin/players/[id]/edit/page.tsx
2026-04-07 10:38:28 +03:30

35 lines
1013 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { db } from "@/lib/db";
import { notFound } from "next/navigation";
import PlayerForm from "../../PlayerForm";
import DeleteButton from "./DeleteButton";
export default async function EditPlayerPage({ params }: { params: Promise<{ id: string }> }) {
const { id } = await params;
const [player, countries] = await Promise.all([
db.player.findUnique({ where: { id } }),
db.country.findMany({ orderBy: { name: "asc" } }),
]);
if (!player) notFound();
return (
<div className="max-w-xl">
<div className="flex justify-between items-center mb-6">
<h1 className="text-2xl font-bold">ویرایش بازیکن</h1>
<DeleteButton playerId={player.id} />
</div>
<PlayerForm
countries={countries}
playerId={player.id}
initial={{
name: player.name,
position: player.position,
countryId: player.countryId,
price: player.price,
image: player.image,
}}
/>
</div>
);
}