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(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 ( <> {getPageTitle('Flights')} {''} setIsModalActive(true)} />
) } FlightsTablesPage.getLayout = function getLayout(page: ReactElement) { return ( {page} ) } export default FlightsTablesPage