import type { ColumnDef } from '@tanstack/react-table'; import { Key, Pencil, Trash2 } from 'lucide-react'; import { ActiveStatusSwitch } from '@/components/active-status-switch'; import { GenderBadge } from '@/components/gender-badge'; import { RowActions } from '@/components/row-actions'; export type Administrator = { id: number; username: string; email: string; is_active: boolean; profile: { full_name: string; phone_number: string; gender: string } | null; roles: { id: number; name: string }[]; }; type CreateColumnsParams = { handleEdit: (admin: Administrator) => void; handleDeleteClick: (admin: Administrator) => void; handleResetPassword: (admin: Administrator) => void; handleUserStatusChange: (admin: Administrator, isActive: boolean) => void; canUpdate: boolean; canResetPassword: boolean; canDelete: boolean; canUpdateStatus: boolean; }; export function createAdministratorColumns( params: CreateColumnsParams, ): ColumnDef[] { const { handleEdit, handleDeleteClick, handleResetPassword, handleUserStatusChange, canUpdate, canResetPassword, canDelete, canUpdateStatus, } = params; const columns: ColumnDef[] = [ { accessorKey: 'profile.full_name', header: () => Nama Lengkap, cell: ({ row }) => row.original.profile?.full_name ?? '-', }, { id: 'account', header: () => Akun, cell: ({ row }) => (
{row.original.username} {row.original.email}
), }, { id: 'role', header: () => Role, cell: ({ row }) => row.original.roles?.[0]?.name ?? '-', }, { accessorKey: 'profile.phone_number', header: () => Nomor Telepon, cell: ({ row }) => row.original.profile?.phone_number ?? '-', }, { accessorKey: 'profile.gender', header: () => Jenis Kelamin, cell: ({ row }) => ( ), }, { accessorKey: 'is_active', header: () => Status Akun, cell: ({ row }) => ( handleUserStatusChange(row.original, isActive) } disabled={!canUpdateStatus} /> ), }, ]; if (canUpdate || canResetPassword || canDelete) { columns.push({ id: 'actions', header: () => Aksi, meta: { className: 'w-[100px] text-center', headerClassName: 'w-[100px] text-center', }, cell: ({ row }) => { const admin = row.original; return ( , show: canUpdate, onClick: () => handleEdit(admin), }, { label: 'Reset Kata Sandi', icon: , show: canResetPassword, onClick: () => handleResetPassword(admin), }, { label: 'Hapus', icon: ( ), show: canDelete, onClick: () => handleDeleteClick(admin), }, ]} /> ); }, }); } return columns; }