144 lines
5.9 KiB
TypeScript
144 lines
5.9 KiB
TypeScript
import React from 'react';
|
||
import CardBox from '../CardBox';
|
||
import ImageField from '../ImageField';
|
||
import dataFormatter from '../../helpers/dataFormatter';
|
||
import {saveFile} from "../../helpers/fileSaver";
|
||
import ListActionsPopover from "../ListActionsPopover";
|
||
import {useAppSelector} from "../../stores/hooks";
|
||
import {Pagination} from "../Pagination";
|
||
import LoadingSpinner from "../LoadingSpinner";
|
||
import Link from 'next/link';
|
||
|
||
import {hasPermission} from "../../helpers/userPermissions";
|
||
|
||
|
||
type Props = {
|
||
machines: any[];
|
||
loading: boolean;
|
||
onDelete: (id: string) => void;
|
||
currentPage: number;
|
||
numPages: number;
|
||
onPageChange: (page: number) => void;
|
||
};
|
||
|
||
const ListMachines = ({ machines, loading, onDelete, currentPage, numPages, onPageChange }: Props) => {
|
||
|
||
const currentUser = useAppSelector((state) => state.auth.currentUser);
|
||
const hasUpdatePermission = hasPermission(currentUser, 'UPDATE_MACHINES')
|
||
|
||
const corners = useAppSelector((state) => state.style.corners);
|
||
const bgColor = useAppSelector((state) => state.style.cardsColor);
|
||
|
||
|
||
return (
|
||
<>
|
||
<div className='relative overflow-x-auto p-4 space-y-4'>
|
||
{loading && <LoadingSpinner />}
|
||
{!loading && machines.map((item) => (
|
||
<div key={item.id}>
|
||
<CardBox hasTable isList className={'rounded shadow-none'}>
|
||
<div className={`flex rounded dark:bg-dark-900 border border-stone-300 items-center overflow-hidden`}>
|
||
|
||
<Link
|
||
href={`/machines/machines-view/?id=${item.id}`}
|
||
className={
|
||
'flex-1 px-4 py-6 h-24 flex divide-x-2 divide-stone-300 items-center overflow-hidden`}> dark:divide-dark-700 overflow-x-auto'
|
||
}
|
||
>
|
||
|
||
|
||
<div className={'flex-1 px-3'}>
|
||
<p className={'text-xs text-gray-500 '}>Makine Adı</p>
|
||
<p className={'line-clamp-2'}>{ item.name }</p>
|
||
</div>
|
||
|
||
|
||
|
||
|
||
<div className={'flex-1 px-3'}>
|
||
<p className={'text-xs text-gray-500 '}>Kod</p>
|
||
<p className={'line-clamp-2'}>{ item.code }</p>
|
||
</div>
|
||
|
||
|
||
|
||
|
||
<div className={'flex-1 px-3'}>
|
||
<p className={'text-xs text-gray-500 '}>Makine Türü</p>
|
||
<p className={'line-clamp-2'}>{ item.machine_type }</p>
|
||
</div>
|
||
|
||
|
||
|
||
|
||
<div className={'flex-1 px-3'}>
|
||
<p className={'text-xs text-gray-500 '}>Durum</p>
|
||
<p className={'line-clamp-2'}>{ item.status }</p>
|
||
</div>
|
||
|
||
|
||
|
||
|
||
<div className={'flex-1 px-3'}>
|
||
<p className={'text-xs text-gray-500 '}>Son Bakım Tarihi</p>
|
||
<p className={'line-clamp-2'}>{ dataFormatter.dateTimeFormatter(item.last_maintenance_at) }</p>
|
||
</div>
|
||
|
||
|
||
|
||
|
||
<div className={'flex-1 px-3'}>
|
||
<p className={'text-xs text-gray-500 '}>Sonraki Bakım Tarihi</p>
|
||
<p className={'line-clamp-2'}>{ dataFormatter.dateTimeFormatter(item.next_maintenance_at) }</p>
|
||
</div>
|
||
|
||
|
||
|
||
|
||
<div className={'flex-1 px-3'}>
|
||
<p className={'text-xs text-gray-500 '}>Notlar</p>
|
||
<p className={'line-clamp-2'}>{ item.notes }</p>
|
||
</div>
|
||
|
||
|
||
|
||
|
||
<div className={'flex-1 px-3'}>
|
||
<p className={'text-xs text-gray-500 '}>Sorumlu Kişi</p>
|
||
<p className={'line-clamp-2'}>{ dataFormatter.usersOneListFormatter(item.owner) }</p>
|
||
</div>
|
||
|
||
|
||
|
||
</Link>
|
||
<ListActionsPopover
|
||
onDelete={onDelete}
|
||
itemId={item.id}
|
||
pathEdit={`/machines/machines-edit/?id=${item.id}`}
|
||
pathView={`/machines/machines-view/?id=${item.id}`}
|
||
|
||
hasUpdatePermission={hasUpdatePermission}
|
||
|
||
/>
|
||
</div>
|
||
</CardBox>
|
||
</div>
|
||
))}
|
||
{!loading && machines.length === 0 && (
|
||
<div className='col-span-full flex items-center justify-center h-40'>
|
||
<p className=''>Gösterilecek veri yok</p>
|
||
</div>
|
||
)}
|
||
</div>
|
||
<div className={'flex items-center justify-center my-6'}>
|
||
<Pagination
|
||
currentPage={currentPage}
|
||
numPages={numPages}
|
||
setCurrentPage={onPageChange}
|
||
/>
|
||
</div>
|
||
</>
|
||
)
|
||
};
|
||
|
||
export default ListMachines |