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
66
67
68
69
|
import React from 'react';
import { useDispatch, useSelector } from 'react-redux';
import {
Drawer, IconButton, List, ListItem, ListItemText, Toolbar, Typography,
} from '@mui/material';
import { makeStyles } from '@mui/styles';
import DeleteIcon from '@mui/icons-material/Delete';
import { formatNotificationTitle, formatTime } from '../common/util/formatter';
import { useTranslation } from '../common/components/LocalizationProvider';
import { eventsActions } from '../store';
const useStyles = makeStyles((theme) => ({
drawer: {
width: theme.dimensions.eventsDrawerWidth,
},
toolbar: {
paddingLeft: theme.spacing(2),
paddingRight: theme.spacing(2),
},
title: {
flexGrow: 1,
},
}));
const EventsDrawer = ({ open, onClose }) => {
const classes = useStyles();
const dispatch = useDispatch();
const t = useTranslation();
const devices = useSelector((state) => state.devices.items);
const events = useSelector((state) => state.events.items);
const formatType = (event) => formatNotificationTitle(t, {
type: event.type,
attributes: {
alarms: event.attributes.alarm,
},
});
return (
<Drawer
anchor="right"
open={open}
onClose={onClose}
>
<Toolbar className={classes.toolbar} disableGutters>
<Typography variant="h6" className={classes.title}>
{t('reportEvents')}
</Typography>
<IconButton size="small" color="inherit" onClick={() => dispatch(eventsActions.deleteAll())}>
<DeleteIcon fontSize="small" />
</IconButton>
</Toolbar>
<List className={classes.drawer} dense>
{events.map((event) => (
<ListItem key={event.id}>
<ListItemText primary={`${devices[event.deviceId]?.name} • ${formatType(event)}`} secondary={formatTime(event.eventTime)} />
<IconButton size="small" onClick={() => dispatch(eventsActions.delete(event))}>
<DeleteIcon fontSize="small" className={classes.negative} />
</IconButton>
</ListItem>
))}
</List>
</Drawer>
);
};
export default EventsDrawer;
|