133 lines
4.6 KiB
TypeScript
133 lines
4.6 KiB
TypeScript
import { mdiChartTimelineVariant } from '@mdi/js'
|
|
import Head from 'next/head'
|
|
import { uniqueId } from 'lodash';
|
|
import React, { ReactElement, useState } from 'react'
|
|
import CardBox from '../../components/CardBox'
|
|
import LayoutAuthenticated from '../../layouts/Authenticated'
|
|
import SectionMain from '../../components/SectionMain'
|
|
import SectionTitleLineWithButton from '../../components/SectionTitleLineWithButton'
|
|
import { getPageTitle } from '../../config'
|
|
import TableFlights from '../../components/Flights/TableFlights'
|
|
import BaseButton from '../../components/BaseButton'
|
|
import axios from "axios";
|
|
import {useAppDispatch, useAppSelector} from "../../stores/hooks";
|
|
import CardBoxModal from "../../components/CardBoxModal";
|
|
import DragDropFilePicker from "../../components/DragDropFilePicker";
|
|
import {setRefetch, uploadCsv} from '../../stores/flights/flightsSlice';
|
|
|
|
const FlightsTablesPage = () => {
|
|
const [filterItems, setFilterItems] = useState([]);
|
|
const [csvFile, setCsvFile] = useState<File | null>(null);
|
|
const [isModalActive, setIsModalActive] = useState(false);
|
|
|
|
const dispatch = useAppDispatch();
|
|
|
|
const [filters] = useState([{label: 'Origin', title: 'origin'},{label: 'Destination', title: 'destination'},{label: 'Remarks', title: 'remarks'},
|
|
|
|
{label: 'StartTachTime', title: 'start_tach_time', number: 'true'},{label: 'EndTachTime', title: 'end_tach_time', number: 'true'},{label: 'HobbsTime', title: 'hobbs_time', number: 'true'},
|
|
{label: 'StartTime', title: 'start_time', date: 'true'},{label: 'EndTime', title: 'end_time', date: 'true'},
|
|
|
|
{label: 'Time recorded for', title: 'time_recorded_for', type: 'enum', options: ['value']},
|
|
]);
|
|
const addFilter = () => {
|
|
const newItem = {
|
|
id: uniqueId(),
|
|
fields: {
|
|
filterValue: '',
|
|
filterValueFrom: '',
|
|
filterValueTo: '',
|
|
selectedField: '',
|
|
},
|
|
};
|
|
newItem.fields.selectedField = filters[0].title;
|
|
setFilterItems([...filterItems, newItem]);
|
|
};
|
|
|
|
const getFlightsCSV = async () => {
|
|
const response = await axios({url: '/flights?filetype=csv', method: 'GET',responseType: 'blob'});
|
|
const type = response.headers['content-type']
|
|
const blob = new Blob([response.data], { type: type })
|
|
const link = document.createElement('a')
|
|
link.href = window.URL.createObjectURL(blob)
|
|
link.download = 'flightsCSV.csv'
|
|
link.click()
|
|
};
|
|
|
|
const onModalConfirm = async () => {
|
|
if (!csvFile) return;
|
|
await dispatch(uploadCsv(csvFile));
|
|
dispatch(setRefetch(true));
|
|
setCsvFile(null);
|
|
setIsModalActive(false);
|
|
};
|
|
|
|
const onModalCancel = () => {
|
|
setCsvFile(null);
|
|
setIsModalActive(false);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>{getPageTitle('Flights')}</title>
|
|
</Head>
|
|
<SectionMain>
|
|
<SectionTitleLineWithButton icon={mdiChartTimelineVariant} title="Flights" main>
|
|
{''}
|
|
</SectionTitleLineWithButton>
|
|
<CardBox className='mb-6' cardBoxClassName='flex flex-wrap'>
|
|
<BaseButton className={'mr-3'} href={'/flights/flights-new'} color='info' label='New Item' />
|
|
<BaseButton
|
|
className={'mr-3'}
|
|
color='info'
|
|
label='Filter'
|
|
onClick={addFilter}
|
|
/>
|
|
<BaseButton className={'mr-3'} color='info' label='Download CSV' onClick={getFlightsCSV} />
|
|
<BaseButton
|
|
color='info'
|
|
label='Upload CSV'
|
|
onClick={() => setIsModalActive(true)}
|
|
/>
|
|
<div className='md:inline-flex items-center ms-auto'>
|
|
<div id='delete-rows-button'></div>
|
|
</div>
|
|
</CardBox>
|
|
<CardBox className="mb-6" hasTable>
|
|
<TableFlights
|
|
filterItems={filterItems}
|
|
setFilterItems={setFilterItems}
|
|
filters={filters}
|
|
showGrid={false}
|
|
/>
|
|
</CardBox>
|
|
</SectionMain>
|
|
<CardBoxModal
|
|
title='Upload CSV'
|
|
buttonColor='info'
|
|
buttonLabel={'Confirm'}
|
|
// buttonLabel={false ? 'Deleting...' : 'Confirm'}
|
|
isActive={isModalActive}
|
|
onConfirm={onModalConfirm}
|
|
onCancel={onModalCancel}
|
|
>
|
|
<DragDropFilePicker
|
|
file={csvFile}
|
|
setFile={setCsvFile}
|
|
formats={'.csv'}
|
|
/>
|
|
</CardBoxModal>
|
|
</>
|
|
)
|
|
}
|
|
|
|
FlightsTablesPage.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<LayoutAuthenticated>
|
|
{page}
|
|
</LayoutAuthenticated>
|
|
)
|
|
}
|
|
|
|
export default FlightsTablesPage
|