aboutsummaryrefslogtreecommitdiff
path: root/modern/src/other/GeofencesList.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'modern/src/other/GeofencesList.jsx')
-rw-r--r--modern/src/other/GeofencesList.jsx54
1 files changed, 0 insertions, 54 deletions
diff --git a/modern/src/other/GeofencesList.jsx b/modern/src/other/GeofencesList.jsx
deleted file mode 100644
index d26eff09..00000000
--- a/modern/src/other/GeofencesList.jsx
+++ /dev/null
@@ -1,54 +0,0 @@
-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;