- Implemented employee columns for data table with sorting and action buttons. - Created employee creation form with validation and default password information. - Developed employee editing form pre-filled with existing data. - Added employee listing page with delete and reset password functionalities. - Introduced leave request management with columns for status and actions. - Created leave request form for adding and editing requests with date pickers. - Implemented confirmation dialogs for delete, approve, and reject actions.
262 lines
9.4 KiB
TypeScript
262 lines
9.4 KiB
TypeScript
import { Badge } from '@/components/ui/badge';
|
|
import { Button } from '@/components/ui/button';
|
|
import {
|
|
Tooltip,
|
|
TooltipContent,
|
|
TooltipProvider,
|
|
TooltipTrigger,
|
|
} from '@/components/ui/tooltip';
|
|
import type { ColumnDef } from '@tanstack/react-table';
|
|
import { ArrowUpDown, CheckCircle, Pencil, Trash2, XCircle } from 'lucide-react';
|
|
|
|
export type LeaveRequest = {
|
|
id: number;
|
|
start_date: string;
|
|
end_date: string;
|
|
total_days: number;
|
|
status: 'pending' | 'approved' | 'rejected' | 'cancelled';
|
|
created_at: string;
|
|
employee: {
|
|
user: {
|
|
user_profile: {
|
|
full_name: string;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
function formatShortDate(dateString: string): string {
|
|
const date = new Date(dateString);
|
|
|
|
return date.toLocaleDateString('id-ID', {
|
|
day: '2-digit',
|
|
month: 'short',
|
|
year: 'numeric',
|
|
});
|
|
}
|
|
|
|
function getStatusBadge(status: string) {
|
|
const statusConfig: Record<string, { label: string; className: string }> = {
|
|
pending: {
|
|
label: 'Menunggu',
|
|
className: 'bg-yellow-100 text-yellow-800 hover:bg-yellow-100',
|
|
},
|
|
approved: {
|
|
label: 'Disetujui',
|
|
className: 'bg-green-100 text-green-800 hover:bg-green-100',
|
|
},
|
|
rejected: {
|
|
label: 'Ditolak',
|
|
className: 'bg-red-100 text-red-800 hover:bg-red-100',
|
|
},
|
|
cancelled: {
|
|
label: 'Dibatalkan',
|
|
className: 'bg-gray-100 text-gray-800 hover:bg-gray-100',
|
|
},
|
|
};
|
|
|
|
const config = statusConfig[status] ?? statusConfig.pending;
|
|
|
|
return (
|
|
<Badge variant="secondary" className={config.className}>
|
|
{config.label}
|
|
</Badge>
|
|
);
|
|
}
|
|
|
|
type CreateColumnsParams = {
|
|
handleEdit: (leaveRequest: LeaveRequest) => void;
|
|
handleDeleteClick: (leaveRequest: LeaveRequest) => void;
|
|
handleApprove: (leaveRequest: LeaveRequest) => void;
|
|
handleReject: (leaveRequest: LeaveRequest) => void;
|
|
};
|
|
|
|
export function createLeaveRequestColumns(
|
|
params: CreateColumnsParams,
|
|
): ColumnDef<LeaveRequest>[] {
|
|
const { handleEdit, handleDeleteClick, handleApprove, handleReject } = params;
|
|
|
|
return [
|
|
{
|
|
id: 'no',
|
|
header: () => <span className="block text-center">No</span>,
|
|
cell: ({ row }) => (
|
|
<span className="block text-center">
|
|
{row.index + 1}
|
|
</span>
|
|
),
|
|
meta: {
|
|
className: 'w-[50px] text-center',
|
|
headerClassName: 'w-[50px] text-center',
|
|
},
|
|
},
|
|
{
|
|
id: 'employee_name',
|
|
header: () => <span>Oleh</span>,
|
|
cell: ({ row }) => {
|
|
const employee = row.original.employee;
|
|
|
|
return <span>{employee?.user?.user_profile?.full_name ?? '-'}</span>;
|
|
},
|
|
},
|
|
{
|
|
accessorKey: 'start_date',
|
|
header: ({ column }) => (
|
|
<Button
|
|
variant="ghost"
|
|
className="-ml-3 h-8"
|
|
onClick={() =>
|
|
column.toggleSorting(
|
|
column.getIsSorted() === 'asc',
|
|
)
|
|
}
|
|
>
|
|
<span>Tanggal Mulai</span>
|
|
<ArrowUpDown className="ml-2 h-4 w-4" />
|
|
</Button>
|
|
),
|
|
cell: ({ row }) => (
|
|
<span>{formatShortDate(row.getValue('start_date') as string)}</span>
|
|
),
|
|
},
|
|
{
|
|
accessorKey: 'end_date',
|
|
header: ({ column }) => (
|
|
<Button
|
|
variant="ghost"
|
|
className="-ml-3 h-8"
|
|
onClick={() =>
|
|
column.toggleSorting(
|
|
column.getIsSorted() === 'asc',
|
|
)
|
|
}
|
|
>
|
|
<span>Tanggal Selesai</span>
|
|
<ArrowUpDown className="ml-2 h-4 w-4" />
|
|
</Button>
|
|
),
|
|
cell: ({ row }) => (
|
|
<span>{formatShortDate(row.getValue('end_date') as string)}</span>
|
|
),
|
|
},
|
|
{
|
|
accessorKey: 'total_days',
|
|
header: ({ column }) => (
|
|
<Button
|
|
variant="ghost"
|
|
className="-ml-3 h-8"
|
|
onClick={() =>
|
|
column.toggleSorting(
|
|
column.getIsSorted() === 'asc',
|
|
)
|
|
}
|
|
>
|
|
<span>Hari</span>
|
|
<ArrowUpDown className="ml-2 h-4 w-4" />
|
|
</Button>
|
|
),
|
|
cell: ({ row }) => (
|
|
<span className="font-medium">
|
|
{row.getValue('total_days') as number} hari
|
|
</span>
|
|
),
|
|
},
|
|
{
|
|
accessorKey: 'status',
|
|
header: () => <span>Status</span>,
|
|
cell: ({ row }) => (
|
|
<span>{getStatusBadge(row.getValue('status') as string)}</span>
|
|
),
|
|
},
|
|
{
|
|
id: 'actions',
|
|
header: () => <span className="block text-center">Aksi</span>,
|
|
meta: {
|
|
className: 'w-[150px] text-center',
|
|
headerClassName: 'w-[150px] text-center',
|
|
},
|
|
cell: ({ row }) => {
|
|
const leaveRequest = row.original;
|
|
|
|
return (
|
|
<TooltipProvider>
|
|
<div className="flex items-center justify-center gap-1">
|
|
{leaveRequest.status === 'pending' && (
|
|
<>
|
|
<Tooltip>
|
|
<TooltipTrigger asChild>
|
|
<Button
|
|
variant="ghost"
|
|
size="icon"
|
|
onClick={() =>
|
|
handleApprove(leaveRequest)
|
|
}
|
|
>
|
|
<CheckCircle className="h-4 w-4 text-green-600" />
|
|
</Button>
|
|
</TooltipTrigger>
|
|
<TooltipContent side="top">
|
|
Setujui
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
|
|
<Tooltip>
|
|
<TooltipTrigger asChild>
|
|
<Button
|
|
variant="ghost"
|
|
size="icon"
|
|
onClick={() =>
|
|
handleReject(leaveRequest)
|
|
}
|
|
>
|
|
<XCircle className="h-4 w-4 text-red-600" />
|
|
</Button>
|
|
</TooltipTrigger>
|
|
<TooltipContent side="top">
|
|
Tolak
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
</>
|
|
)}
|
|
|
|
<Tooltip>
|
|
<TooltipTrigger asChild>
|
|
<Button
|
|
variant="ghost"
|
|
size="icon"
|
|
onClick={() =>
|
|
handleEdit(leaveRequest)
|
|
}
|
|
>
|
|
<Pencil className="h-4 w-4" />
|
|
</Button>
|
|
</TooltipTrigger>
|
|
<TooltipContent side="top">
|
|
Edit
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
|
|
<Tooltip>
|
|
<TooltipTrigger asChild>
|
|
<Button
|
|
variant="ghost"
|
|
size="icon"
|
|
onClick={() =>
|
|
handleDeleteClick(leaveRequest)
|
|
}
|
|
>
|
|
<Trash2 className="h-4 w-4 text-destructive" />
|
|
</Button>
|
|
</TooltipTrigger>
|
|
<TooltipContent side="top">
|
|
Hapus
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
</div>
|
|
</TooltipProvider>
|
|
);
|
|
},
|
|
},
|
|
];
|
|
}
|