78 lines
3.3 KiB
TypeScript
78 lines
3.3 KiB
TypeScript
import DashboardLayout from "@/components/DashboardLayout"
|
|
import { auth } from "@/lib/auth"
|
|
import { prisma } from "@/lib/prisma"
|
|
import Link from "next/link"
|
|
|
|
export default async function ShiftsPage() {
|
|
const session = await auth()
|
|
const manager = await prisma.shiftManager.findFirst({
|
|
where: { email: session?.user?.email || "" }
|
|
})
|
|
|
|
if (!manager) return <div>Manager not found</div>
|
|
|
|
const shifts = await prisma.shift.findMany({
|
|
where: { shiftManagerId: manager.id },
|
|
orderBy: { shiftDate: "desc" }
|
|
})
|
|
|
|
return (
|
|
<DashboardLayout requiredRole="shift_manager">
|
|
<div>
|
|
<div className="flex justify-between items-center mb-6">
|
|
<h1 className="text-3xl font-bold text-gray-800">Shifts</h1>
|
|
<Link
|
|
href="/shift-manager/create-shift"
|
|
className="bg-blue-600 text-white px-6 py-2 rounded-lg hover:bg-blue-700 transition-colors"
|
|
>
|
|
+ Create Shift
|
|
</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">Date</th>
|
|
<th className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase">Shift Name</th>
|
|
<th className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase">Start Time</th>
|
|
<th className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase">End Time</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">
|
|
{shifts.map((shift) => (
|
|
<tr key={shift.id}>
|
|
<td className="px-6 py-4 text-sm text-gray-900">
|
|
{new Date(shift.shiftDate).toLocaleDateString()}
|
|
</td>
|
|
<td className="px-6 py-4 text-sm text-gray-900">{shift.name}</td>
|
|
<td className="px-6 py-4 text-sm text-gray-600">
|
|
{new Date(shift.startTime).toLocaleTimeString()}
|
|
</td>
|
|
<td className="px-6 py-4 text-sm text-gray-600">
|
|
{new Date(shift.endTime).toLocaleTimeString()}
|
|
</td>
|
|
<td className="px-6 py-4 text-sm">
|
|
<span className={`px-3 py-1 rounded-full text-xs font-medium ${
|
|
shift.status === "active" ? "bg-green-100 text-green-800" : "bg-gray-100 text-gray-800"
|
|
}`}>
|
|
{shift.status}
|
|
</span>
|
|
</td>
|
|
<td className="px-6 py-4 text-sm">
|
|
<Link href={`/shift-manager/shifts/${shift.id}`} className="text-blue-600 hover:underline">
|
|
View
|
|
</Link>
|
|
</td>
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</DashboardLayout>
|
|
)
|
|
}
|