import React, { useState } from 'react';
import { DataGrid } from '@material-ui/data-grid';
import t from '../common/localization';
import { formatPosition, formatDistance, formatSpeed, formatBoolean, formatDate, formatNumber } from '../common/formatter';
import ReportFilter from './ReportFilter';
import ReportLayoutPage from './ReportLayoutPage';
import { useAttributePreference } from '../common/preferences';
const Filter = ({ setItems }) => {
const handleSubmit = async (deviceId, from, to, mail, headers) => {
const query = new URLSearchParams({ deviceId, from, to, mail });
const response = await fetch(`/api/reports/route?${query.toString()}`, { headers });
if (response.ok) {
const contentType = response.headers.get('content-type');
if (contentType) {
if (contentType === 'application/json') {
setItems(await response.json());
} else {
window.location.assign(window.URL.createObjectURL(await response.blob()));
}
}
}
}
return ;
};
const RouteReportPage = () => {
const distanceUnit = useAttributePreference('distanceUnit');
const speedUnit = useAttributePreference('speedUnit');
const columns = [{
headerName: t('positionFixTime'),
field: 'fixTime',
type: 'dateTime',
flex: 1,
valueFormatter: ({ value }) => formatDate(value),
}, {
headerName: t('positionLatitude'),
field: 'latitude',
type: 'number',
flex: 1,
valueFormatter: ({ value }) => formatNumber(value, 5),
}, {
headerName: t('positionLongitude'),
field: 'longitude',
type: 'number',
flex: 1,
valueFormatter: ({ value }) => formatNumber(value, 5),
}, {
headerName: t('positionSpeed'),
field: 'speed',
type: 'number',
flex: 1,
valueFormatter: ({ value }) => formatSpeed(value, speedUnit),
}, {
headerName: t('positionAddress'),
field: 'address',
type: 'string',
flex: 1,
}, {
headerName: t('positionIgnition'),
field: 'ignition',
type: 'boolean',
flex: 1,
valueGetter: ({ row }) => row.attributes.ignition,
valueFormatter: ({ value }) => formatBoolean(value),
}, {
headerName: t('deviceTotalDistance'),
field: 'totalDistance',
type: 'number',
hide: true,
flex: 1,
valueGetter: ({ row }) => row.attributes.totalDistance,
valueFormatter: ({ value }) => formatDistance(value, distanceUnit),
}]
const [items, setItems] = useState([]);
return (
}>
);
};
export default RouteReportPage;