1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
import React, { useState } from 'react';
import {
TableContainer, Table, TableRow, TableCell, TableHead, TableBody,
} from '@material-ui/core';
import { formatDate } from '../common/util/formatter';
import { useTranslation } from '../common/components/LocalizationProvider';
import PageLayout from '../common/components/PageLayout';
import ReportsMenu from './components/ReportsMenu';
import ReportFilter from './components/ReportFilter';
const StatisticsPage = () => {
const t = useTranslation();
const [items, setItems] = useState([]);
const handleSubmit = async (_, from, to) => {
const query = new URLSearchParams({ from, to });
const response = await fetch(`/api/statistics?${query.toString()}`, { Accept: 'application/json' });
if (response.ok) {
setItems(await response.json());
}
};
return (
<PageLayout menu={<ReportsMenu />} breadcrumbs={['reportTitle', 'statisticsTitle']}>
<ReportFilter handleSubmit={handleSubmit} showOnly ignoreDevice />
<TableContainer>
<Table>
<TableHead>
<TableRow>
<TableCell>{t('statisticsCaptureTime')}</TableCell>
<TableCell>{t('statisticsActiveUsers')}</TableCell>
<TableCell>{t('statisticsActiveDevices')}</TableCell>
<TableCell>{t('statisticsRequests')}</TableCell>
<TableCell>{t('statisticsMessagesReceived')}</TableCell>
<TableCell>{t('statisticsMessagesStored')}</TableCell>
<TableCell>{t('notificatorMail')}</TableCell>
<TableCell>{t('notificatorSms')}</TableCell>
<TableCell>{t('statisticsGeocoder')}</TableCell>
<TableCell>{t('statisticsGeolocation')}</TableCell>
</TableRow>
</TableHead>
<TableBody>
{items.map((item) => (
<TableRow key={item.id}>
<TableCell>{formatDate(item.captureTime)}</TableCell>
<TableCell>{item.activeUsers}</TableCell>
<TableCell>{item.activeDevices}</TableCell>
<TableCell>{item.requests}</TableCell>
<TableCell>{item.messagesReceived}</TableCell>
<TableCell>{item.messagesStored}</TableCell>
<TableCell>{item.mailSent}</TableCell>
<TableCell>{item.smsSent}</TableCell>
<TableCell>{item.geocoderRequests}</TableCell>
<TableCell>{item.geolocationRequests}</TableCell>
</TableRow>
))}
</TableBody>
</Table>
</TableContainer>
</PageLayout>
);
};
export default StatisticsPage;
|