muller-reporting-sys/app/admin/machines/page.tsx
2025-11-12 22:21:35 +03:00

61 lines
2.6 KiB
TypeScript

import DashboardLayout from "@/components/DashboardLayout"
import { prisma } from "@/lib/prisma"
import Link from "next/link"
export default async function MachinesPage() {
const machines = await prisma.machine.findMany({
orderBy: { name: "asc" }
})
return (
<DashboardLayout requiredRole="admin">
<div>
<div className="flex justify-between items-center mb-6">
<h1 className="text-3xl font-bold text-gray-800">Machines</h1>
<Link
href="/admin/machines/create"
className="bg-blue-600 text-white px-6 py-2 rounded-lg hover:bg-blue-700 transition-colors"
>
+ Add Machine
</Link>
</div>
<div className="bg-white rounded-xl shadow-sm border border-gray-200 overflow-hidden">
<table className="w-full">
<thead className="bg-gray-50 border-b border-gray-200">
<tr>
<th className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase">Name</th>
<th className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase">Type</th>
<th className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase">Bottles/Min</th>
<th className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase">Status</th>
<th className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase">Actions</th>
</tr>
</thead>
<tbody className="divide-y divide-gray-200">
{machines.map((machine) => (
<tr key={machine.id}>
<td className="px-6 py-4 text-sm text-gray-900 font-medium">{machine.name}</td>
<td className="px-6 py-4 text-sm text-gray-600">{machine.machineType}</td>
<td className="px-6 py-4 text-sm text-gray-600">{machine.bottlesPerMin}</td>
<td className="px-6 py-4 text-sm">
<span className={`px-3 py-1 rounded-full text-xs font-medium ${
machine.status === "active" ? "bg-green-100 text-green-800" : "bg-gray-100 text-gray-800"
}`}>
{machine.status}
</span>
</td>
<td className="px-6 py-4 text-sm">
<Link href={`/admin/machines/${machine.id}`} className="text-blue-600 hover:underline">
Edit
</Link>
</td>
</tr>
))}
</tbody>
</table>
</div>
</div>
</DashboardLayout>
)
}