siakad-itm/resources/js/pages/admin/users/administrators/columns.tsx

134 lines
4.5 KiB
TypeScript

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<Administrator>[] {
const {
handleEdit,
handleDeleteClick,
handleResetPassword,
handleUserStatusChange,
canUpdate,
canResetPassword,
canDelete,
canUpdateStatus,
} = params;
const columns: ColumnDef<Administrator>[] = [
{
accessorKey: 'profile.full_name',
header: () => <span>Nama Lengkap</span>,
cell: ({ row }) => row.original.profile?.full_name ?? '-',
},
{
id: 'account',
header: () => <span>Akun</span>,
cell: ({ row }) => (
<div className="flex flex-col">
<span>{row.original.username}</span>
<span className="text-sm text-muted-foreground">
{row.original.email}
</span>
</div>
),
},
{
id: 'role',
header: () => <span>Role</span>,
cell: ({ row }) => row.original.roles?.[0]?.name ?? '-',
},
{
accessorKey: 'profile.phone_number',
header: () => <span>Nomor Telepon</span>,
cell: ({ row }) => row.original.profile?.phone_number ?? '-',
},
{
accessorKey: 'profile.gender',
header: () => <span>Jenis Kelamin</span>,
cell: ({ row }) => (
<GenderBadge gender={row.original.profile?.gender} />
),
},
{
accessorKey: 'is_active',
header: () => <span>Status Akun</span>,
cell: ({ row }) => (
<ActiveStatusSwitch
isActive={row.original.is_active}
onChange={(isActive) =>
handleUserStatusChange(row.original, isActive)
}
disabled={!canUpdateStatus}
/>
),
},
];
if (canUpdate || canResetPassword || canDelete) {
columns.push({
id: 'actions',
header: () => <span className="block text-center">Aksi</span>,
meta: {
className: 'w-[100px] text-center',
headerClassName: 'w-[100px] text-center',
},
cell: ({ row }) => {
const admin = row.original;
return (
<RowActions
actions={[
{
label: 'Edit',
icon: <Pencil className="h-4 w-4" />,
show: canUpdate,
onClick: () => handleEdit(admin),
},
{
label: 'Reset Kata Sandi',
icon: <Key className="h-4 w-4" />,
show: canResetPassword,
onClick: () => handleResetPassword(admin),
},
{
label: 'Hapus',
icon: (
<Trash2 className="h-4 w-4 text-destructive" />
),
show: canDelete,
onClick: () => handleDeleteClick(admin),
},
]}
/>
);
},
});
}
return columns;
}