diff options
author | Anton Tananaev <anton@traccar.org> | 2023-08-19 13:58:45 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2023-08-19 13:59:07 -0700 |
commit | d3c7705bedebd65c94f9eea691aaf2fe03b0cafe (patch) | |
tree | 5f98b3d9bbbd4fe8067b5a334e84aff008b8db22 /modern/src/other/GeofencesList.jsx | |
parent | 0161ae449d4a7bd0781c0665d663353663ab0faf (diff) | |
download | trackermap-web-d3c7705bedebd65c94f9eea691aaf2fe03b0cafe.tar.gz trackermap-web-d3c7705bedebd65c94f9eea691aaf2fe03b0cafe.tar.bz2 trackermap-web-d3c7705bedebd65c94f9eea691aaf2fe03b0cafe.zip |
Move to Vite
Diffstat (limited to 'modern/src/other/GeofencesList.jsx')
-rw-r--r-- | modern/src/other/GeofencesList.jsx | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/modern/src/other/GeofencesList.jsx b/modern/src/other/GeofencesList.jsx new file mode 100644 index 00000000..d26eff09 --- /dev/null +++ b/modern/src/other/GeofencesList.jsx @@ -0,0 +1,54 @@ +import React, { Fragment } from 'react'; +import { useDispatch, useSelector } from 'react-redux'; +import makeStyles from '@mui/styles/makeStyles'; +import { + Divider, List, ListItemButton, ListItemText, +} from '@mui/material'; + +import { geofencesActions } from '../store'; +import CollectionActions from '../settings/components/CollectionActions'; +import { useCatchCallback } from '../reactHelper'; + +const useStyles = makeStyles(() => ({ + list: { + maxHeight: '100%', + overflow: 'auto', + }, + icon: { + width: '25px', + height: '25px', + filter: 'brightness(0) invert(1)', + }, +})); + +const GeofencesList = ({ onGeofenceSelected }) => { + const classes = useStyles(); + const dispatch = useDispatch(); + + const items = useSelector((state) => state.geofences.items); + + const refreshGeofences = useCatchCallback(async () => { + const response = await fetch('/api/geofences'); + if (response.ok) { + dispatch(geofencesActions.refresh(await response.json())); + } else { + throw Error(await response.text()); + } + }, [dispatch]); + + return ( + <List className={classes.list}> + {Object.values(items).map((item, index, list) => ( + <Fragment key={item.id}> + <ListItemButton key={item.id} onClick={() => onGeofenceSelected(item.id)}> + <ListItemText primary={item.name} /> + <CollectionActions itemId={item.id} editPath="/settings/geofence" endpoint="geofences" setTimestamp={refreshGeofences} /> + </ListItemButton> + {index < list.length - 1 ? <Divider /> : null} + </Fragment> + ))} + </List> + ); +}; + +export default GeofencesList; |