koperasi/services/frontend/app/routes/dashboard.saldo.penarikan/components/table/columns.tsx
2025-08-08 14:12:40 +07:00

82 lines
2.2 KiB
TypeScript

import type { ColumnDef } from "@tanstack/react-table";
import { Checkbox } from "~/components/ui/checkbox";
import type { TopUpResponse } from "~/types/api/top-up";
import { CellAction } from "./cell-action";
import { toLocaleDateTime } from "~/utils/format-to-locale-time";
import toRupiah from "~/utils/to-rupiah";
export const columns: ColumnDef<TopUpResponse>[] = [
{
id: "select",
header: ({ table }) => (
<Checkbox
aria-label="Select all"
checked={table.getIsAllPageRowsSelected()}
onCheckedChange={(value) => table.toggleAllPageRowsSelected(!!value)}
/>
),
cell: ({ row }) => (
<Checkbox
aria-label="Select row"
checked={row.getIsSelected()}
onCheckedChange={(value) => row.toggleSelected(!!value)}
/>
),
enableSorting: false,
enableHiding: false,
},
{
accessorKey: "topup.created_at",
header: "TANGGAL PERMINTAAN",
cell: ({ row }) => {
return <span>{toLocaleDateTime(row.original.topup.created_at)}</span>;
},
},
{
accessorKey: "topup.nama",
header: "NAMA ANGGOTA",
},
{
accessorKey: "topup.nominal",
header: "NOMINAL",
cell: ({ row }) => {
return (
<div className="flex flex-col">
<span>{toRupiah(row.original.topup.nominal)}</span>
<span className="text-gray-400">{row.original.topup.nama_bank}</span>
</div>
);
},
},
{
accessorKey: "topup.jenis",
header: "JENIS TRANSAKSI",
},
{
accessorKey: "topup.status",
header: "STATUS",
cell: ({ row }) => {
return (
<span
className={`min-w-fit rounded-md p-2 font-semibold text-xs ${
row.original.topup.status === "SUKSES"
? "bg-green-100 text-green-600"
: row.original.topup.status === "GAGAL"
? "bg-red-100 text-red-600"
: row.original.topup.status === "MENUNGGU KONFIRMASI"
? "bg-gray-100 text-gray-600"
: ""
}`}
>
{row.original.topup.status}
</span>
);
},
},
{
id: "actions",
header: "AKSI",
cell: ({ row }) => <CellAction data={row.original} />,
},
];