import { Head, router } from '@inertiajs/react'; import { Plus } from 'lucide-react'; import { useState } from 'react'; import { CardTable } from '@/components/card-table'; import { DeleteConfirmDialog } from '@/components/delete-confirm-dialog'; import { useCardTableExpand } from '@/components/hooks/use-card-table-expand'; import { PageHeader } from '@/components/page-header'; import { Button } from '@/components/ui/button'; import { useServerTable } from '@/hooks/use-server-table'; import { destroy, create as cuttingCreate, index as cuttingIndex, edit as cuttingEdit, } from '@/routes/admin/manage/cuttings'; import type { Cutting } from './columns'; import { CuttingCardRow } from './cutting-card'; import { CuttingItemSubRow } from './cutting-sub-row'; type Props = { cuttings: { data: Cutting[]; current_page: number; last_page: number; per_page: number; total: number; }; }; export default function CuttingIndex({ cuttings }: Props) { const [deleting, setDeleting] = useState(null); const expand = useCardTableExpand(true); const pagination = { current_page: cuttings.current_page, last_page: cuttings.last_page, per_page: cuttings.per_page, total: cuttings.total, }; const { search, handlePageChange, handlePerPageChange, handleSearchChange, } = useServerTable({ route: () => cuttingIndex.url(), pagination, }); function handleDelete() { if (!deleting) { return; } router.delete(destroy.url(deleting.id), { onSuccess: () => setDeleting(null), }); } return ( <>
Tambah } /> c.id} expandedKeys={expand.expandedKeys} onToggleExpand={expand.toggleExpand} searchValue={search} onSearchChange={handleSearchChange} searchPlaceholder="Cari berdasarkan nama produk..." pagination={pagination} onPageChange={handlePageChange} onPerPageChange={handlePerPageChange} renderCard={({ item, index, isExpanded, onToggleExpand, }) => ( { window.location.href = cuttingEdit.url(c.id); }} onDelete={(c) => setDeleting(c)} /> )} renderSubContent={(cutting) => ( )} /> { if (!open) { setDeleting(null); } }} title="Hapus Cutting" description={(cutting) => `Apakah Anda yakin ingin menghapus cutting "${cutting.cutting_results?.[0]?.product_name ?? '-'}"? Tindakan ini tidak dapat dibatalkan.` } onConfirm={handleDelete} />
); }