118 lines
5.3 KiB
TypeScript
118 lines
5.3 KiB
TypeScript
import React from 'react';
|
|
import CardBox from '../CardBox';
|
|
import dataFormatter from '../../helpers/dataFormatter';
|
|
import ListActionsPopover from "../ListActionsPopover";
|
|
import {useAppSelector} from "../../stores/hooks";
|
|
import {Pagination} from "../Pagination";
|
|
import LoadingSpinner from "../LoadingSpinner";
|
|
import Link from 'next/link';
|
|
|
|
type Props = {
|
|
flights: any[];
|
|
loading: boolean;
|
|
onDelete: (id: string) => void;
|
|
currentPage: number;
|
|
numPages: number;
|
|
onPageChange: (page: number) => void;
|
|
};
|
|
|
|
const ListFlights = ({ flights, loading, onDelete, currentPage, numPages, onPageChange }: Props) => {
|
|
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 && flights.map((item) => (
|
|
<div key={item.id}>
|
|
<CardBox hasTable isList className={'rounded shadow-none'}>
|
|
<div className={`flex rounded dark:bg-dark-900 border items-center overflow-hidden`}>
|
|
<Link
|
|
href={`/flights/flights-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'}>Aircraft</p>
|
|
<p className={'line-clamp-2'}>{ dataFormatter.aircraftsOneListFormatter(item.aircraft) }</p>
|
|
</div>
|
|
|
|
<div className={'flex-1 px-3'}>
|
|
<p className={'text-xs text-gray-500'}>StartTime</p>
|
|
<p className={'line-clamp-2'}>{ dataFormatter.dateTimeFormatter(item.start_time) }</p>
|
|
</div>
|
|
|
|
<div className={'flex-1 px-3'}>
|
|
<p className={'text-xs text-gray-500'}>EndTime</p>
|
|
<p className={'line-clamp-2'}>{ dataFormatter.dateTimeFormatter(item.end_time) }</p>
|
|
</div>
|
|
|
|
<div className={'flex-1 px-3'}>
|
|
<p className={'text-xs text-gray-500'}>StartTachTime</p>
|
|
<p className={'line-clamp-2'}>{ item.start_tach_time }</p>
|
|
</div>
|
|
|
|
<div className={'flex-1 px-3'}>
|
|
<p className={'text-xs text-gray-500'}>EndTachTime</p>
|
|
<p className={'line-clamp-2'}>{ item.end_tach_time }</p>
|
|
</div>
|
|
|
|
<div className={'flex-1 px-3'}>
|
|
<p className={'text-xs text-gray-500'}>HobbsTime</p>
|
|
<p className={'line-clamp-2'}>{ item.hobbs_time }</p>
|
|
</div>
|
|
|
|
<div className={'flex-1 px-3'}>
|
|
<p className={'text-xs text-gray-500'}>Origin</p>
|
|
<p className={'line-clamp-2'}>{ item.origin }</p>
|
|
</div>
|
|
|
|
<div className={'flex-1 px-3'}>
|
|
<p className={'text-xs text-gray-500'}>Destination</p>
|
|
<p className={'line-clamp-2'}>{ item.destination }</p>
|
|
</div>
|
|
|
|
<div className={'flex-1 px-3'}>
|
|
<p className={'text-xs text-gray-500'}>Remarks</p>
|
|
<p className={'line-clamp-2'}>{ item.remarks }</p>
|
|
</div>
|
|
|
|
<div className={'flex-1 px-3'}>
|
|
<p className={'text-xs text-gray-500'}>Time recorded for</p>
|
|
<p className={'line-clamp-2'}>{ item.time_recorded_for }</p>
|
|
</div>
|
|
|
|
</Link>
|
|
<ListActionsPopover
|
|
onDelete={onDelete}
|
|
itemId={item.id}
|
|
pathEdit={`/flights/flights-edit/?id=${item.id}`}
|
|
pathView={`/flights/flights-view/?id=${item.id}`}
|
|
hasUpdatePermission={true}
|
|
/>
|
|
</div>
|
|
</CardBox>
|
|
</div>
|
|
))}
|
|
{!loading && flights.length === 0 && (
|
|
<div className='col-span-full flex items-center justify-center h-40'>
|
|
<p className=''>No data to display</p>
|
|
</div>
|
|
)}
|
|
</div>
|
|
<div className={'flex items-center justify-center my-6'}>
|
|
<Pagination
|
|
currentPage={currentPage}
|
|
numPages={numPages}
|
|
setCurrentPage={onPageChange}
|
|
/>
|
|
</div>
|
|
</>
|
|
)
|
|
};
|
|
|
|
export default ListFlights
|