mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
c1087b37fb
tables
532 lines
17 KiB
TypeScript
532 lines
17 KiB
TypeScript
'use client';
|
|
|
|
import {
|
|
ChangeEventHandler,
|
|
useCallback,
|
|
useEffect,
|
|
useMemo,
|
|
useState,
|
|
} from 'react';
|
|
import { usePathname } from 'next/navigation';
|
|
import useSWR, { mutate } from 'swr';
|
|
import { SortingState, CellContext, ColumnDef } from '@tanstack/react-table';
|
|
import { useFormik } from 'formik';
|
|
|
|
import Table from '@/components/Table';
|
|
import { Icon } from '@iconify/react';
|
|
import { Movement } from '@/types/api/inventory/movement';
|
|
import { MovementApi } from '@/services/api/inventory';
|
|
import { WarehouseApi, ProductApi } from '@/services/api/master-data';
|
|
import { cn } from '@/lib/helper';
|
|
import { isResponseSuccess } from '@/lib/api-helper';
|
|
import { useTableFilter } from '@/services/hooks/useTableFilter';
|
|
import { useUiStore } from '@/stores/ui/ui.store';
|
|
import ConfirmationModal from '@/components/modal/ConfirmationModal';
|
|
import toast from 'react-hot-toast';
|
|
import Button from '@/components/Button';
|
|
import DebouncedTextInput from '@/components/input/DebouncedTextInput';
|
|
import SelectInput, { useSelect } from '@/components/input/SelectInput';
|
|
import { OptionType } from '@/components/input/SelectInput';
|
|
import ButtonFilter from '@/components/helper/ButtonFilter';
|
|
import Modal, { useModal } from '@/components/Modal';
|
|
import RequirePermission from '@/components/helper/RequirePermission';
|
|
import PopoverButton from '@/components/popover/PopoverButton';
|
|
import PopoverContent from '@/components/popover/PopoverContent';
|
|
import MovementTableSkeleton from '@/components/pages/inventory/movement/skeleton/MovementTableSkeleton';
|
|
import { Warehouse } from '@/types/api/master-data/warehouse';
|
|
import { Product } from '@/types/api/master-data/product';
|
|
import {
|
|
MovementFilterSchema,
|
|
MovementFilterType,
|
|
} from '@/components/pages/inventory/movement/filter/MovementFilter';
|
|
|
|
const RowOptionsMenu = ({
|
|
popoverPosition = 'bottom',
|
|
props,
|
|
deleteClickHandler,
|
|
}: {
|
|
popoverPosition: 'bottom' | 'top';
|
|
props: CellContext<Movement, unknown>;
|
|
deleteClickHandler: () => void;
|
|
}) => {
|
|
const popoverId = `movement#${props.row.original.id}`;
|
|
const popoverAnchorName = `--anchor-movement#${props.row.original.id}`;
|
|
|
|
const closePopover = () => {
|
|
document.getElementById(popoverId)?.hidePopover();
|
|
};
|
|
|
|
return (
|
|
<div className='relative'>
|
|
<PopoverButton
|
|
tabIndex={0}
|
|
variant='ghost'
|
|
color='none'
|
|
popoverTarget={popoverId}
|
|
anchorName={popoverAnchorName}
|
|
>
|
|
<Icon icon='material-symbols:more-vert' width={16} height={16} />
|
|
</PopoverButton>
|
|
|
|
<PopoverContent
|
|
id={popoverId}
|
|
anchorName={popoverAnchorName}
|
|
position={popoverPosition === 'bottom' ? 'bottom-start' : 'left'}
|
|
className='w-full max-w-40 rounded-xl border border-base-content/5 shadow-sm'
|
|
>
|
|
<div className='flex flex-col bg-base-100 rounded-xl'>
|
|
<RequirePermission permissions='lti.inventory.transfer.detail'>
|
|
<Button
|
|
href={`/inventory/movement/detail/?movementId=${props.row.original.id}`}
|
|
variant='ghost'
|
|
color='none'
|
|
className='p-3 justify-start text-sm font-semibold w-full'
|
|
onClick={closePopover}
|
|
>
|
|
<Icon icon='heroicons:eye' width={20} height={20} />
|
|
Detail
|
|
</Button>
|
|
</RequirePermission>
|
|
<RequirePermission permissions='lti.inventory.transfer.delete'>
|
|
<Button
|
|
onClick={() => {
|
|
deleteClickHandler();
|
|
closePopover();
|
|
}}
|
|
variant='ghost'
|
|
color='error'
|
|
className='p-3 justify-start text-sm font-semibold w-full focus-visible:text-error-content hover:text-error-content'
|
|
>
|
|
<Icon icon='mdi:delete-outline' width={20} height={20} />
|
|
Delete
|
|
</Button>
|
|
</RequirePermission>
|
|
</div>
|
|
</PopoverContent>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const MovementTable = () => {
|
|
const { searchValue, setSearchValue, setTableState } = useUiStore();
|
|
const pathname = usePathname();
|
|
|
|
const {
|
|
state: tableFilterState,
|
|
updateFilter,
|
|
setPage,
|
|
setPageSize,
|
|
toQueryString: getTableFilterQueryString,
|
|
} = useTableFilter({
|
|
initial: {
|
|
search: '',
|
|
productFilter: '',
|
|
warehouseFilter: '',
|
|
},
|
|
paramMap: {
|
|
page: 'page',
|
|
pageSize: 'limit',
|
|
productFilter: 'product_id',
|
|
warehouseFilter: 'warehouse_id',
|
|
},
|
|
});
|
|
|
|
// ===== FILTER MODAL STATE =====
|
|
const filterModal = useModal();
|
|
|
|
// ===== FORMIK SETUP =====
|
|
const formik = useFormik<MovementFilterType>({
|
|
initialValues: {
|
|
product_id: null,
|
|
warehouse_id: null,
|
|
},
|
|
validationSchema: MovementFilterSchema,
|
|
onSubmit: (values, { setSubmitting }) => {
|
|
updateFilter('productFilter', values.product_id || '');
|
|
updateFilter('warehouseFilter', values.warehouse_id || '');
|
|
filterModal.closeModal();
|
|
setSubmitting(false);
|
|
},
|
|
onReset: () => {
|
|
updateFilter('productFilter', '');
|
|
updateFilter('warehouseFilter', '');
|
|
},
|
|
});
|
|
|
|
// ===== PRODUCT OPTIONS =====
|
|
const {
|
|
setInputValue: setProductInputValue,
|
|
options: productOptions,
|
|
isLoadingOptions: isLoadingProductOptions,
|
|
loadMore: loadMoreProducts,
|
|
} = useSelect<Product>(
|
|
filterModal.open ? ProductApi.basePath : null,
|
|
'id',
|
|
'name',
|
|
'search'
|
|
);
|
|
|
|
// ===== WAREHOUSE OPTIONS =====
|
|
const {
|
|
setInputValue: setWarehouseInputValue,
|
|
options: warehouseOptions,
|
|
isLoadingOptions: isLoadingWarehouseOptions,
|
|
loadMore: loadMoreWarehouses,
|
|
} = useSelect<Warehouse>(
|
|
filterModal.open ? WarehouseApi.basePath : null,
|
|
'id',
|
|
'name',
|
|
'search'
|
|
);
|
|
|
|
// ===== FILTER HANDLERS =====
|
|
const handleFilterProductChange = useCallback(
|
|
(val: OptionType | OptionType[] | null) => {
|
|
const product = val as OptionType | null;
|
|
const productId = product?.value ? String(product.value) : null;
|
|
formik.setFieldValue('product_id', productId);
|
|
},
|
|
[formik]
|
|
);
|
|
|
|
const handleFilterWarehouseChange = useCallback(
|
|
(val: OptionType | OptionType[] | null) => {
|
|
const warehouse = val as OptionType | null;
|
|
const warehouseId = warehouse?.value ? String(warehouse.value) : null;
|
|
formik.setFieldValue('warehouse_id', warehouseId);
|
|
},
|
|
[formik]
|
|
);
|
|
|
|
// ===== FILTER HELPERS =====
|
|
const productIdValue = useMemo(() => {
|
|
if (!formik.values.product_id) return null;
|
|
return (
|
|
productOptions.find(
|
|
(opt) => String(opt.value) === formik.values.product_id
|
|
) || null
|
|
);
|
|
}, [formik.values.product_id, productOptions]);
|
|
|
|
const warehouseIdValue = useMemo(() => {
|
|
if (!formik.values.warehouse_id) return null;
|
|
return (
|
|
warehouseOptions.find(
|
|
(opt) => String(opt.value) === formik.values.warehouse_id
|
|
) || null
|
|
);
|
|
}, [formik.values.warehouse_id, warehouseOptions]);
|
|
|
|
// ===== HANDLE FILTER MODAL OPEN =====
|
|
const handleFilterModalOpen = () => {
|
|
filterModal.openModal();
|
|
formik.validateForm();
|
|
};
|
|
|
|
const [sorting, setSorting] = useState<SortingState>([]);
|
|
const [selectedMovement, setSelectedMovement] = useState<
|
|
Movement | undefined
|
|
>(undefined);
|
|
const [isDeleteLoading, setIsDeleteLoading] = useState(false);
|
|
const singleDeleteModal = useModal();
|
|
|
|
const {
|
|
data: movements,
|
|
isLoading,
|
|
mutate: refreshMovements,
|
|
} = useSWR(
|
|
`${MovementApi.basePath}${getTableFilterQueryString()}`,
|
|
MovementApi.getAllFetcher
|
|
);
|
|
|
|
const singleDeleteHandler = async () => {
|
|
setIsDeleteLoading(true);
|
|
|
|
const response = await MovementApi.delete(selectedMovement?.id as number);
|
|
|
|
singleDeleteModal.closeModal();
|
|
setIsDeleteLoading(false);
|
|
|
|
if (isResponseSuccess(response)) {
|
|
toast.success(response?.message || 'Successfully delete Movement!');
|
|
refreshMovements();
|
|
} else {
|
|
toast.error(response?.message || 'Failed to delete Movement');
|
|
}
|
|
};
|
|
|
|
useEffect(() => {
|
|
updateFilter('search', searchValue);
|
|
}, [searchValue, updateFilter]);
|
|
|
|
useEffect(() => {
|
|
setTableState('movement-table', pathname);
|
|
}, [pathname, setTableState]);
|
|
|
|
const searchChangeHandler: ChangeEventHandler<HTMLInputElement> = (e) => {
|
|
setSearchValue(e.target.value);
|
|
updateFilter('search', e.target.value);
|
|
};
|
|
|
|
const movementColumns: ColumnDef<Movement>[] = useMemo(
|
|
() => [
|
|
{
|
|
header: 'No',
|
|
cell: (props) =>
|
|
tableFilterState.pageSize * (tableFilterState.page - 1) +
|
|
props.row.index +
|
|
1,
|
|
},
|
|
{
|
|
accessorFn: (row) => row.source_warehouse?.name,
|
|
header: 'Gudang Asal',
|
|
},
|
|
{
|
|
accessorFn: (row) => row.destination_warehouse?.name,
|
|
header: 'Gudang Tujuan',
|
|
},
|
|
{
|
|
accessorKey: 'transfer_reason',
|
|
header: 'Catatan',
|
|
},
|
|
{
|
|
accessorKey: 'transfer_date',
|
|
header: 'Tanggal',
|
|
cell: (props) =>
|
|
new Date(props.row.original.transfer_date).toLocaleDateString(
|
|
'id-ID'
|
|
),
|
|
},
|
|
{
|
|
accessorFn: (row) => {
|
|
const totalCost = row.deliveries?.reduce(
|
|
(sum, d) => sum + (d.shipping_cost_total || 0),
|
|
0
|
|
);
|
|
return totalCost?.toLocaleString('id-ID');
|
|
},
|
|
header: 'Biaya Pengiriman',
|
|
},
|
|
{
|
|
header: 'Aksi',
|
|
cell: (props: CellContext<Movement, unknown>) => {
|
|
const currentPageSize =
|
|
props.table.getPaginationRowModel().rows.length;
|
|
const currentPageRows = props.table.getPaginationRowModel().flatRows;
|
|
const currentRowRelativeIndex =
|
|
currentPageRows.findIndex((r) => r.id === props.row.id) + 1;
|
|
|
|
const isLast2Rows = currentRowRelativeIndex > currentPageSize - 2;
|
|
|
|
const deleteClickHandler = () => {
|
|
setSelectedMovement(props.row.original);
|
|
singleDeleteModal.openModal();
|
|
};
|
|
|
|
return (
|
|
<RowOptionsMenu
|
|
props={props}
|
|
deleteClickHandler={deleteClickHandler}
|
|
popoverPosition={isLast2Rows ? 'top' : 'bottom'}
|
|
/>
|
|
);
|
|
},
|
|
},
|
|
],
|
|
[
|
|
tableFilterState.pageSize,
|
|
tableFilterState.page,
|
|
singleDeleteModal,
|
|
setSelectedMovement,
|
|
]
|
|
);
|
|
|
|
return (
|
|
<>
|
|
<div className='w-full'>
|
|
{/* Header Section */}
|
|
<div className='w-full p-3 flex flex-row justify-between gap-3 flex-wrap border-b border-base-content/10'>
|
|
{/* Action Buttons */}
|
|
<div className='w-fit flex flex-row gap-3 flex-wrap'>
|
|
<RequirePermission permissions='lti.inventory.transfer.create'>
|
|
<Button
|
|
href='/inventory/movement/add'
|
|
color='primary'
|
|
className='px-3 py-2.5 w-fit text-sm text-base-100 rounded-lg shadow-sm'
|
|
>
|
|
<Icon icon='heroicons:plus' width={20} height={20} />
|
|
Add Movement
|
|
</Button>
|
|
</RequirePermission>
|
|
</div>
|
|
|
|
{/* Search and Filter */}
|
|
<div className='flex flex-1 flex-row justify-start sm:justify-end items-center gap-3 flex-wrap'>
|
|
<DebouncedTextInput
|
|
name='search'
|
|
placeholder='Search'
|
|
value={tableFilterState.search ?? ''}
|
|
onChange={searchChangeHandler}
|
|
startAdornment={
|
|
<Icon
|
|
icon='heroicons:magnifying-glass'
|
|
width={20}
|
|
height={20}
|
|
/>
|
|
}
|
|
className={{
|
|
wrapper: 'w-full min-w-24 max-w-3xs',
|
|
inputWrapper: 'rounded-xl! shadow-button-soft',
|
|
input:
|
|
'placeholder:font-semibold placeholder:text-base-content/50',
|
|
}}
|
|
/>
|
|
|
|
<ButtonFilter
|
|
values={tableFilterState}
|
|
excludeFields={['page', 'pageSize', 'search']}
|
|
onClick={handleFilterModalOpen}
|
|
className='px-3 py-2.5'
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Table Section */}
|
|
<div className='flex flex-col mb-4'>
|
|
{isLoading ? (
|
|
<div className='w-full flex flex-row justify-center items-center p-4'>
|
|
<span className='loading loading-spinner loading-xl' />
|
|
</div>
|
|
) : !isResponseSuccess(movements) || movements.data?.length === 0 ? (
|
|
<div className='p-3'>
|
|
<MovementTableSkeleton
|
|
columns={movementColumns}
|
|
icon={
|
|
<Icon
|
|
icon='heroicons:document-text'
|
|
className='text-white'
|
|
width={20}
|
|
height={20}
|
|
/>
|
|
}
|
|
/>
|
|
</div>
|
|
) : (
|
|
<Table<Movement>
|
|
data={isResponseSuccess(movements) ? movements?.data : []}
|
|
columns={movementColumns}
|
|
pageSize={tableFilterState.pageSize}
|
|
page={isResponseSuccess(movements) ? movements?.meta?.page : 0}
|
|
totalItems={
|
|
isResponseSuccess(movements)
|
|
? movements?.meta?.total_results
|
|
: 0
|
|
}
|
|
onPageChange={setPage}
|
|
onPageSizeChange={setPageSize}
|
|
isLoading={isLoading}
|
|
sorting={sorting}
|
|
setSorting={setSorting}
|
|
className={{
|
|
containerClassName: cn('p-3 mb-0'),
|
|
headerColumnClassName: 'text-nowrap',
|
|
}}
|
|
/>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
{/* Filter Modal */}
|
|
<Modal
|
|
ref={filterModal.ref}
|
|
className={{
|
|
modal: 'p-0',
|
|
modalBox: 'p-0 rounded-[0.875rem] xl:max-w-4/12 max-w-sm',
|
|
}}
|
|
>
|
|
{/* Modal Header */}
|
|
<div className='flex items-center justify-between gap-2 border-b border-base-content/10 p-4'>
|
|
<div className='flex items-center gap-2 text-primary'>
|
|
<Icon icon='heroicons:funnel' width={20} height={20} />
|
|
<h3 className='font-medium text-sm'>Filter Data</h3>
|
|
</div>
|
|
<Button
|
|
variant='link'
|
|
onClick={filterModal.closeModal}
|
|
className='text-base-content/50 hover:text-base-content transition-colors cursor-pointer'
|
|
>
|
|
<Icon icon='heroicons:x-mark' width={20} height={20} />
|
|
</Button>
|
|
</div>
|
|
<form onSubmit={formik.handleSubmit} onReset={formik.handleReset}>
|
|
<div className='p-4 flex flex-col gap-1.5'>
|
|
<SelectInput
|
|
label='Produk'
|
|
placeholder='Pilih Produk'
|
|
options={productOptions}
|
|
value={productIdValue}
|
|
onChange={handleFilterProductChange}
|
|
onInputChange={setProductInputValue}
|
|
isLoading={isLoadingProductOptions}
|
|
isClearable
|
|
onMenuScrollToBottom={loadMoreProducts}
|
|
className={{ wrapper: 'w-full' }}
|
|
/>
|
|
<SelectInput
|
|
label='Gudang'
|
|
placeholder='Pilih Gudang'
|
|
options={warehouseOptions}
|
|
value={warehouseIdValue}
|
|
onChange={handleFilterWarehouseChange}
|
|
onInputChange={setWarehouseInputValue}
|
|
isLoading={isLoadingWarehouseOptions}
|
|
isClearable
|
|
onMenuScrollToBottom={loadMoreWarehouses}
|
|
className={{ wrapper: 'w-full' }}
|
|
/>
|
|
</div>
|
|
|
|
{/* Modal Footer */}
|
|
<div className='flex justify-between items-center gap-4 p-4 border-t border-base-content/10 bg-gray-50'>
|
|
<Button
|
|
type='button'
|
|
variant='soft'
|
|
className='rounded-lg text-base-content/65 bg-transparent border-none hover:bg-base-content/10 hover:text-base-content/65 transition-colors px-3 py-2'
|
|
onClick={() => {
|
|
formik.resetForm();
|
|
filterModal.closeModal();
|
|
}}
|
|
>
|
|
Reset Filter
|
|
</Button>
|
|
<Button
|
|
type='submit'
|
|
className='min-w-40 text-sm rounded-lg py-3 text-white font-semibold'
|
|
disabled={!formik.isValid || formik.isSubmitting}
|
|
>
|
|
Apply Filter
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
</Modal>
|
|
|
|
<ConfirmationModal
|
|
ref={singleDeleteModal.ref}
|
|
type='error'
|
|
text={`Apakah anda yakin ingin menghapus data Movement ini?`}
|
|
secondaryButton={{
|
|
text: 'Tidak',
|
|
}}
|
|
primaryButton={{
|
|
text: 'Ya',
|
|
color: 'error',
|
|
isLoading: isDeleteLoading,
|
|
onClick: singleDeleteHandler,
|
|
}}
|
|
/>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default MovementTable;
|