import { useState, useMemo, useCallback, useEffect } from 'react'; import useSWR from 'swr'; import { Icon } from '@iconify/react'; import Card from '@/components/Card'; import StatusBadge from '@/components/helper/StatusBadge'; import { useSelect } from '@/components/input/SelectInput'; import SelectInputCheckbox from '@/components/input/SelectInputCheckbox'; import SelectInputRadio from '@/components/input/SelectInputRadio'; import DateInput from '@/components/input/DateInput'; import { CustomerApi } from '@/services/api/master-data'; import { FinanceApi } from '@/services/api/report/finance-report'; import Table from '@/components/Table'; import { ColumnDef } from '@tanstack/react-table'; import { formatCurrency, formatDate, formatNumber, formatTitleCase, } from '@/lib/helper'; import { CustomerPaymentReport, CustomerPaymentSummary, } from '@/types/api/report/customer-payment'; import { isResponseSuccess } from '@/lib/api-helper'; import Button from '@/components/Button'; import Dropdown from '@/components/Dropdown'; import Modal, { useModal } from '@/components/Modal'; import toast from 'react-hot-toast'; import { useFormik } from 'formik'; import { CustomerPaymentFilterSchema, CustomerPaymentFilterType, } from '@/components/pages/report/finance/filter/CustomerPaymentFilter'; import { generateCustomerPaymentExcel } from '@/components/pages/report/finance/export/CustomerPaymentExportXLSX'; import { generateCustomerPaymentPDF } from '@/components/pages/report/finance/export/CustomerPaymentExportPDF'; import { useTabActionsStore } from '@/stores/tab-actions/tab-actions.store'; import CustomerSupplierSkeleton from '@/components/pages/report/finance/skeleton/CustomerSupplierSkeleton'; import { OptionType } from '@/components/table/TableRowSizeSelector'; import { Color } from '@/types/theme'; import ButtonFilter from '@/components/helper/ButtonFilter'; interface CustomerPaymentTabProps { tabId: string; } interface FilterParams { customer_ids?: string; start_date?: string; end_date?: string; filter_by?: string; } const CustomerPaymentTab = ({ tabId }: CustomerPaymentTabProps) => { // ===== STATE MANAGEMENT ===== const [isPdfExportLoading, setIsPdfExportLoading] = useState(false); const [isExcelExportLoading, setIsExcelExportLoading] = useState(false); const isAnyExportLoading = isPdfExportLoading || isExcelExportLoading; // ===== PAGINATION STATE ===== const [currentPage, setCurrentPage] = useState(1); const [pageSize] = useState(10); // ===== SUBMISSION STATE ===== const [isSubmitted, setIsSubmitted] = useState(false); const [filterParams, setFilterParams] = useState({}); const [dateErrorShown, setDateErrorShown] = useState(false); const [hasDateError, setHasDateError] = useState(false); const filterModal = useModal(); const dataTypeOptions = useMemo( () => [ { value: 'trans_date', label: 'Tanggal Jual/Bayar' }, { value: 'realization_date', label: 'Tanggal Realisasi' }, ], [] ); const { options: customerOptions, setInputValue: setCustomerInputValue, isLoadingOptions: isLoadingCustomers, loadMore: loadMoreCustomers, } = useSelect(CustomerApi.basePath, 'id', 'name', 'search'); const handleFilterModalOpen = () => { filterModal.openModal(); formik.validateForm(); }; // ===== FORMIK SETUP ===== const formik = useFormik({ initialValues: { start_date: null, end_date: null, customer_ids: null, filter_by: null, }, validationSchema: CustomerPaymentFilterSchema, onSubmit: (values, { setSubmitting }) => { setFilterParams({ start_date: values.start_date || undefined, end_date: values.end_date || undefined, customer_ids: values.customer_ids || undefined, filter_by: values.filter_by || undefined, }); filterModal.closeModal(); setIsSubmitted(true); setCurrentPage(1); setSubmitting(false); }, onReset: () => { setFilterParams({}); setIsSubmitted(false); setCurrentPage(1); setHasDateError(false); if (dateErrorShown) { toast.dismiss(); setDateErrorShown(false); } filterModal.closeModal(); }, }); const getPaymentStatusBadgeColor = (notes: string): Color => { const normalizedValue = notes.toLowerCase(); if (normalizedValue === 'lunas') { return 'primary'; } if (normalizedValue.includes('belum')) { return 'warning'; } return 'neutral'; }; // ===== DATE CHANGE HANDLERS ===== const handleStartDateChange = useCallback( (e: React.ChangeEvent) => { const value = e.target.value; formik.setFieldValue('start_date', value || null); if (value && formik.values.end_date) { const startDate = new Date(value); const endDateObj = new Date(formik.values.end_date); if (endDateObj < startDate) { setHasDateError(true); if (!dateErrorShown) { toast.error('Tanggal akhir tidak boleh masa lampau', { duration: Infinity, }); setDateErrorShown(true); } } else { setHasDateError(false); if (dateErrorShown) { toast.dismiss(); setDateErrorShown(false); } } } else { setHasDateError(false); } }, [formik, dateErrorShown] ); const handleEndDateChange = useCallback( (e: React.ChangeEvent) => { const value = e.target.value; formik.setFieldValue('end_date', value || null); if (value && formik.values.start_date) { const startDateObj = new Date(formik.values.start_date); const endDate = new Date(value); if (endDate < startDateObj) { setHasDateError(true); if (!dateErrorShown) { toast.error('Tanggal akhir tidak boleh masa lampau', { duration: Infinity, }); setDateErrorShown(true); } return; } } setHasDateError(false); if (dateErrorShown) { toast.dismiss(); setDateErrorShown(false); } }, [formik, dateErrorShown] ); // ===== FILTER HELPERS ===== const customerIdsValue = useMemo(() => { if (!formik.values.customer_ids) return []; return customerOptions.filter((opt) => formik.values.customer_ids?.split(',').includes(String(opt.value)) ); }, [formik.values.customer_ids, customerOptions]); const filterByValue = useMemo(() => { if (!formik.values.filter_by) return null; return ( dataTypeOptions.find((opt) => opt.value === formik.values.filter_by) || null ); }, [formik.values.filter_by]); // ===== DATA FETCHING ===== const { data: customerPayment, isLoading } = useSWR( isSubmitted ? () => { const params = { customer_ids: filterParams.customer_ids, filter_by: filterParams.filter_by as | 'trans_date' | 'realization_date' | undefined, start_date: filterParams.start_date, end_date: filterParams.end_date, page: currentPage, limit: pageSize, }; return ['customer-payment-report', params]; } : null, ([, params]) => FinanceApi.getCustomerPaymentReport( params.customer_ids, params.filter_by, params.start_date, params.end_date, params.page, params.limit ) ); const data: CustomerPaymentReport[] = useMemo( () => isResponseSuccess(customerPayment) ? (customerPayment?.data as unknown as CustomerPaymentReport[]) || [] : [], [customerPayment] ); // ===== EXPORT DATA FETCHER ===== const customerPaymentExport = useCallback(async (): Promise< CustomerPaymentReport[] | null > => { const params = { customer_ids: filterParams.customer_ids, filter_by: filterParams.filter_by as | 'trans_date' | 'realization_date' | undefined, start_date: filterParams.start_date, end_date: filterParams.end_date, limit: 100, page: 1, }; const response = await FinanceApi.getCustomerPaymentReport( params.customer_ids, params.filter_by, params.start_date, params.end_date, params.page, params.limit ); return isResponseSuccess(response) ? (response.data as unknown as CustomerPaymentReport[]) : null; }, [filterParams]); // ===== EXPORT HANDLERS ===== const handleExportExcel = useCallback(async () => { setIsExcelExportLoading(true); try { const allDataForExport = await customerPaymentExport(); if ( !allDataForExport || !Array.isArray(allDataForExport) || allDataForExport.length === 0 ) { toast.error('Tidak ada data untuk diekspor.'); return; } await generateCustomerPaymentExcel({ data: allDataForExport }); toast.success('Excel berhasil dibuat dan diunduh.'); } catch { toast.error('Gagal membuat Excel. Silakan coba lagi.'); } finally { setIsExcelExportLoading(false); } }, [customerPaymentExport]); const handleExportPdf = useCallback(async () => { setIsPdfExportLoading(true); try { const allDataForExport = await customerPaymentExport(); if ( !allDataForExport || !Array.isArray(allDataForExport) || allDataForExport.length === 0 ) { toast.error('Tidak ada data untuk diekspor.'); return; } const customerName = filterParams.customer_ids ? customerOptions .filter((opt) => filterParams.customer_ids?.split(',').includes(String(opt.value)) ) .map((opt) => opt.label) .join(', ') || 'Semua Customer' : 'Semua Customer'; await generateCustomerPaymentPDF({ data: allDataForExport, params: { customer_name: customerName, start_date: filterParams.start_date, end_date: filterParams.end_date, filter_by: filterParams.filter_by as | 'trans_date' | 'realization_date' | undefined, }, }); toast.success('PDF berhasil dibuat dan diunduh.'); } catch { toast.error('Gagal membuat PDF. Silakan coba lagi.'); } finally { setIsPdfExportLoading(false); } }, [customerPaymentExport, filterParams, customerOptions]); // ===== REGISTER TAB ACTIONS TO STORE ===== const setTabActions = useTabActionsStore((state) => state.setTabActions); const clearTabActions = useTabActionsStore((state) => state.clearTabActions); useEffect(() => { setTabActions( tabId,
Export
} >
); }, [ tabId, formik.values, isAnyExportLoading, handleExportExcel, handleExportPdf, filterModal.open, setTabActions, ]); useEffect(() => { return () => { clearTabActions(tabId); }; }, [tabId, clearTabActions]); const getTableColumns = ( summary: CustomerPaymentSummary ): ColumnDef[] => { const tableColumns: ColumnDef[] = [ { id: 'no', header: 'No', cell: (props) => props.row.index, footer: () =>
Total
, }, { id: 'trans_date', header: 'Tanggal Jual/Bayar', accessorKey: 'trans_date', enableSorting: false, cell: (props) => { const value = props.row.original.trans_date; return value ? formatDate(value, 'DD MMM YYYY') : '-'; }, }, { id: 'realization_date', header: 'Tanggal Realisasi', accessorKey: 'delivery_date', enableSorting: false, cell: (props) => { const value = props.row.original.delivery_date; return value ? formatDate(value, 'DD MMM YYYY') : '-'; }, }, { id: 'aging', header: 'Aging', accessorKey: 'aging_day', enableSorting: false, cell: (props) => { const value = props.row.original.aging_day; return (
{value !== null && value !== undefined ? `${formatNumber(value)} hari` : '-'}
); }, }, { id: 'reference', header: 'Referensi', accessorKey: 'reference', enableSorting: false, cell: (props) => { const value = props.row.original.reference; return value || '-'; }, }, { id: 'vehicle_plate', header: 'Nomor Polisi', accessorKey: 'vehicle_numbers', enableSorting: false, cell: (props) => { const value = props.row.original.vehicle_numbers; return Array.isArray(value) ? value.length > 0 ? value.join(', ') : '-' : '-'; }, }, { id: 'qty', header: 'Qty', accessorKey: 'qty', enableSorting: false, cell: (props) => { const value = props.row.original.qty; return
{formatNumber(value)}
; }, footer: () => (
{formatNumber(summary.total_qty) || '-'}
), }, { id: 'weight', header: 'Berat (Kg)', accessorKey: 'weight', enableSorting: false, cell: (props) => { const value = props.row.original.weight; return
{formatNumber(value)}
; }, footer: () => (
{formatNumber(summary.total_weight) || '-'}
), }, { id: 'average_weight', header: 'AVG', accessorKey: 'average_weight', enableSorting: false, cell: (props) => { const value = props.row.original.average_weight; return
{formatNumber(value)}
; }, footer: () => (
-
), }, { id: 'unit_price', header: 'Harga/Unit', accessorKey: 'unit_price', enableSorting: false, cell: (props) => { const value = props.row.original.unit_price; return
{formatCurrency(value)}
; }, footer: () => (
-
), }, { id: 'final_price', header: 'Harga Akhir', accessorKey: 'final_price', enableSorting: false, cell: (props) => { const value = props.row.original.final_price; return
{formatCurrency(value)}
; }, footer: () => (
{formatCurrency(summary.total_final_amount) || '-'}
), }, { id: 'total', header: 'Total', accessorKey: 'total_price', enableSorting: false, cell: (props) => { const value = props.row.original.total_price; return
{formatCurrency(value)}
; }, footer: () => (
{formatCurrency(summary.total_grand_amount) || '-'}
), }, { id: 'payment', header: 'Pembayaran', accessorKey: 'payment_amount', enableSorting: false, cell: (props) => { const value = props.row.original.payment_amount; return
{formatCurrency(value)}
; }, footer: () => (
{formatCurrency(summary.total_payment) || '-'}
), }, { id: 'accounts_receivable', header: 'Saldo Piutang', accessorKey: 'accounts_receivable', enableSorting: false, cell: (props) => { const value = props.row.original.accounts_receivable; return (
{formatCurrency(value)}
); }, footer: () => (
{formatCurrency(summary.total_accounts_receivable) || '-'}
), }, { id: 'notes', header: 'Keterangan', accessorKey: 'status', enableSorting: false, cell: (props) => { const value = props.row.original.status; if (!value) { return '-'; } return ( ); }, }, { id: 'pickup_info', header: 'Pengambilan', accessorKey: 'pickup_info', enableSorting: false, cell: (props) => { const value = props.row.original.pickup_info; return Array.isArray(value) ? value.length > 0 ? value.join(', ') : '-' : '-'; }, }, { id: 'sales_marketing', header: 'Sales/Marketing', accessorKey: 'sales_person', enableSorting: false, cell: (props) => { const value = props.row.original.sales_person; return value || '-'; }, }, ]; return tableColumns; }; return ( <>
{!isSubmitted ? ( } title='No Filters Selected' subtitle='Please choose filters to narrow down your results and make your search easier.' /> ) : isLoading ? (
) : data.length === 0 ? ( } title='Data Not Yet Available' subtitle='Please change your filters to get the data.' /> ) : ( data.map((customerReport) => { const summary = customerReport.summary || { total_qty: 0, total_weight: 0, total_final_amount: 0, total_grand_amount: 0, total_payment: 0, total_accounts_receivable: 0, }; const tableColumns = getTableColumns(summary); return ( 0} className={{ containerClassName: 'w-full mb-0!', tableWrapperClassName: 'overflow-x-auto rounded-tr-none rounded-tl-none', tableClassName: 'w-full table-auto text-sm', headerRowClassName: 'border-b border-b-gray-200 bg-gray-50', headerColumnClassName: 'px-4 py-3 text-xs font-semibold text-gray-700 text-left border border-gray-200', bodyRowClassName: 'hover:bg-gray-50 transition-colors border-b border-l border-r border-b-gray-200 border-l-gray-200 border-r-gray-200', bodyColumnClassName: 'px-4 py-3 text-xs text-gray-900 whitespace-nowrap', tableFooterClassName: 'bg-gray-100 font-semibold border border-gray-200', footerRowClassName: 'border-t-2 border-gray-300', footerColumnClassName: 'px-4 py-3 text-xs text-gray-900 whitespace-nowrap', paginationClassName: 'hidden', }} renderCustomRow={(row) => { if (row.index === 0) { return ( ); } }} /> ); }) )} {/* Filter Modal */} {/* Modal Header */}

Filter Data


{ formik.setFieldValue( 'customer_ids', Array.isArray(val) && val.length > 0 ? val.map((v: OptionType) => String(v.value)).join(',') : null ); }} onInputChange={setCustomerInputValue} isLoading={isLoadingCustomers} isClearable onMenuScrollToBottom={loadMoreCustomers} className={{ wrapper: 'w-full' }} /> { if (!Array.isArray(val)) { formik.setFieldValue('filter_by', val?.value || null); } }} className={{ wrapper: 'w-full' }} isClearable={true} />
{/* Modal Footer */}
); }; export default CustomerPaymentTab;
{formatCurrency(row.original.accounts_receivable)}