chore(FE-141): set dummy data for Transfer to Laying detail page

This commit is contained in:
ValdiANS
2025-10-23 12:53:41 +07:00
parent 5e710a792f
commit d2f24723fc
@@ -13,7 +13,7 @@ import { TransferToLaying } from '@/types/api/production/transfer-to-laying';
// TODO: delete dummy data // TODO: delete dummy data
const DUMMY_TRANSFER_TO_LAYING_DETAIL: TransferToLaying = { const DUMMY_TRANSFER_TO_LAYING_DETAIL: TransferToLaying = {
id: 1, id: 1,
transfer_date: '14-10-2025', transfer_date: '2025-10-14',
flock_source: { flock_source: {
id: 1, id: 1,
name: 'Flock asal test', name: 'Flock asal test',
@@ -114,9 +114,11 @@ const TransferToLayingDetail = () => {
); );
} }
// TODO: remove dummy data and integrate with real API
if ( if (
!isLoadingTransferToLaying && !isLoadingTransferToLaying &&
(!transferToLaying || isResponseError(transferToLaying)) (!transferToLaying ||
(isResponseError(transferToLaying) && !DUMMY_TRANSFER_TO_LAYING_DETAIL))
) { ) {
router.replace('/404'); router.replace('/404');
return; return;
@@ -127,12 +129,18 @@ const TransferToLayingDetail = () => {
{isLoadingTransferToLaying && ( {isLoadingTransferToLaying && (
<span className='loading loading-spinner loading-xl' /> <span className='loading loading-spinner loading-xl' />
)} )}
{!isLoadingTransferToLaying && isResponseSuccess(transferToLaying) && ( {/* {!isLoadingTransferToLaying && isResponseSuccess(transferToLaying) && (
<TransferToLayingForm
type='detail'
initialValues={transferToLaying.data}
/>
)} */}
{/* TODO: remove this dummy data and integrate to real API */}
<TransferToLayingForm <TransferToLayingForm
type='detail' type='detail'
initialValues={DUMMY_TRANSFER_TO_LAYING_DETAIL} initialValues={DUMMY_TRANSFER_TO_LAYING_DETAIL}
/> />
)}
</div> </div>
); );
}; };