mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
38 lines
1.3 KiB
TypeScript
38 lines
1.3 KiB
TypeScript
import Button from '@/components/Button';
|
|
import { ClosingGeneralInformation } from '@/types/api/closing';
|
|
import { ProjectFlock } from '@/types/api/production/project-flock';
|
|
|
|
const ClosingKandangList = ({
|
|
initialValue,
|
|
projectData,
|
|
}: {
|
|
initialValue?: ClosingGeneralInformation;
|
|
projectData?: ProjectFlock;
|
|
}) => {
|
|
return (
|
|
<div className='w-full py-3 @container relative before:absolute before:top-0 before:left-0 before:right-0 before:-mx-4 before:border-t before:border-base-content/10'>
|
|
<div className='flex flex-col @sm:flex-row gap-4'>
|
|
<div className='w-full'>
|
|
<div className='overflow-x-auto'>
|
|
<h1 className='font-bold mb-3'>Kandang</h1>
|
|
<div className='flex flex-wrap gap-2'>
|
|
{projectData?.kandangs?.map((kandang) => (
|
|
<Button
|
|
key={kandang.id}
|
|
variant='outline'
|
|
className='px-3 py-2.5 w-fit text-sm rounded-lg shadow-sm'
|
|
href={`/closing/detail/?closingId=${initialValue?.flock_id}&kandangId=${kandang.project_flock_kandang_id}`}
|
|
>
|
|
{kandang.name}
|
|
</Button>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default ClosingKandangList;
|