253 lines
8.3 KiB
TypeScript
253 lines
8.3 KiB
TypeScript
import { Head, Link, router } from '@inertiajs/react';
|
|
import { Plus } from 'lucide-react';
|
|
import { useMemo, useState } from 'react';
|
|
import { CardTable } from '@/components/data-display';
|
|
import { DeleteConfirmDialog } from '@/components/dialogs';
|
|
import { FilterPopover } from '@/components/data-display';
|
|
import { useCardTableExpand } from '@/components/hooks/use-card-table-expand';
|
|
import { PageHeader } from '@/components/layout';
|
|
import { Button } from '@/components/ui/button';
|
|
import {
|
|
Combobox,
|
|
ComboboxContent,
|
|
ComboboxEmpty,
|
|
ComboboxInput,
|
|
ComboboxItem,
|
|
ComboboxList,
|
|
} from '@/components/ui/combobox';
|
|
import {
|
|
Select,
|
|
SelectContent,
|
|
SelectItem,
|
|
SelectTrigger,
|
|
SelectValue,
|
|
} from '@/components/ui/select';
|
|
import { useCan } from '@/hooks/use-can';
|
|
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;
|
|
};
|
|
filters: {
|
|
product_name?: string;
|
|
status?: string;
|
|
};
|
|
filterOptions: {
|
|
statusOptions: Array<{ value: string; label: string }>;
|
|
productNames: Array<{ product_name: string }>;
|
|
};
|
|
};
|
|
|
|
export default function CuttingIndex({
|
|
cuttings,
|
|
filters,
|
|
filterOptions,
|
|
}: Props) {
|
|
const { can } = useCan();
|
|
const [deleting, setDeleting] = useState<Cutting | null>(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,
|
|
filterOpen,
|
|
setFilterOpen,
|
|
handlePageChange,
|
|
handlePerPageChange,
|
|
handleSearchChange,
|
|
applyFilter,
|
|
clearFilters,
|
|
} = useServerTable({
|
|
route: () => cuttingIndex.url(),
|
|
pagination,
|
|
filters,
|
|
filterWithParams: false,
|
|
});
|
|
|
|
const hasActiveFilters = Boolean(filters.product_name || filters.status);
|
|
|
|
function handleDelete() {
|
|
if (!deleting) {
|
|
return;
|
|
}
|
|
|
|
router.delete(destroy.url(deleting.id), {
|
|
onSuccess: () => setDeleting(null),
|
|
});
|
|
}
|
|
|
|
const selectedProductName = useMemo(
|
|
() =>
|
|
filterOptions.productNames.find(
|
|
(p) => p.product_name === filters.product_name,
|
|
) ?? null,
|
|
[filterOptions.productNames, filters.product_name],
|
|
);
|
|
|
|
const filterToolbar = (
|
|
<FilterPopover
|
|
open={filterOpen}
|
|
onOpenChange={setFilterOpen}
|
|
filters={filters}
|
|
hasActiveFilters={hasActiveFilters}
|
|
onClear={clearFilters}
|
|
>
|
|
<div className="flex flex-col gap-2">
|
|
<label className="text-xs text-muted-foreground">
|
|
Nama Produk
|
|
</label>
|
|
<Combobox
|
|
items={filterOptions.productNames}
|
|
itemToStringLabel={(product) => product.product_name}
|
|
value={selectedProductName}
|
|
onValueChange={(value) =>
|
|
applyFilter(
|
|
'product_name',
|
|
value ? value.product_name : '',
|
|
)
|
|
}
|
|
>
|
|
<ComboboxInput
|
|
placeholder="Pilih nama produk..."
|
|
className="w-full"
|
|
/>
|
|
<ComboboxContent>
|
|
<ComboboxEmpty>
|
|
Tidak ada produk ditemukan.
|
|
</ComboboxEmpty>
|
|
<ComboboxList>
|
|
{(product) => (
|
|
<ComboboxItem value={product}>
|
|
{product.product_name}
|
|
</ComboboxItem>
|
|
)}
|
|
</ComboboxList>
|
|
</ComboboxContent>
|
|
</Combobox>
|
|
</div>
|
|
<div className="flex flex-col gap-2">
|
|
<label className="text-xs text-muted-foreground">
|
|
Status
|
|
</label>
|
|
<Select
|
|
value={filters.status ?? ''}
|
|
onValueChange={(value) =>
|
|
applyFilter('status', value)
|
|
}
|
|
>
|
|
<SelectTrigger className="w-full">
|
|
<SelectValue placeholder="Semua status" />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
{filterOptions.statusOptions.map((opt) => (
|
|
<SelectItem key={opt.value} value={opt.value}>
|
|
{opt.label}
|
|
</SelectItem>
|
|
))}
|
|
</SelectContent>
|
|
</Select>
|
|
</div>
|
|
</FilterPopover>
|
|
);
|
|
|
|
return (
|
|
<>
|
|
<Head title="Cutting" />
|
|
|
|
<div className="flex h-full flex-1 flex-col gap-6 overflow-x-auto p-4 md:p-6">
|
|
<PageHeader
|
|
title="Cutting"
|
|
actions={
|
|
can('cuttings.create') ? (
|
|
<Button asChild>
|
|
<Link href={cuttingCreate.url()}>
|
|
<Plus className="h-4 w-4" />
|
|
Tambah
|
|
</Link>
|
|
</Button>
|
|
) : undefined
|
|
}
|
|
/>
|
|
|
|
<CardTable
|
|
data={cuttings.data}
|
|
getItemKey={(c) => c.id}
|
|
expandedKeys={expand.expandedKeys}
|
|
onToggleExpand={expand.toggleExpand}
|
|
searchValue={search}
|
|
onSearchChange={handleSearchChange}
|
|
|
|
toolbar={filterToolbar}
|
|
pagination={pagination}
|
|
onPageChange={handlePageChange}
|
|
onPerPageChange={handlePerPageChange}
|
|
rowClassName={(c) =>
|
|
c.status === 'in_progress'
|
|
? 'border-l-4 border-l-yellow-500'
|
|
: ''
|
|
}
|
|
renderCard={({
|
|
item,
|
|
index,
|
|
isExpanded,
|
|
onToggleExpand,
|
|
}) => (
|
|
<CuttingCardRow
|
|
cutting={item}
|
|
index={
|
|
(pagination.current_page - 1) *
|
|
pagination.per_page +
|
|
index +
|
|
1
|
|
}
|
|
isExpanded={isExpanded}
|
|
onToggleExpand={onToggleExpand}
|
|
onEdit={(c) => {
|
|
router.visit(cuttingEdit.url(c.id));
|
|
}}
|
|
onDelete={(c) => setDeleting(c)}
|
|
/>
|
|
)}
|
|
renderSubContent={(cutting) => (
|
|
<CuttingItemSubRow cutting={cutting} />
|
|
)}
|
|
/>
|
|
|
|
<DeleteConfirmDialog
|
|
target={deleting}
|
|
onOpenChange={(open) => {
|
|
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}
|
|
/>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|