mirror of
https://github.com/traccar/traccar-web.git
synced 2025-04-03 23:41:33 +08:00
Add position deletion button to route report
Use this to delete wrong data
This commit is contained in:
parent
bdc4ba5daa
commit
8d346c0be0
@ -24,6 +24,8 @@ import MapCamera from '../map/MapCamera';
|
||||
import MapGeofence from '../map/MapGeofence';
|
||||
import scheduleReport from './common/scheduleReport';
|
||||
import MapScale from '../map/MapScale';
|
||||
import { useRestriction } from '../common/util/permissions';
|
||||
import CollectionActions from '../settings/components/CollectionActions';
|
||||
|
||||
const RouteReportPage = () => {
|
||||
const navigate = useNavigate();
|
||||
@ -33,6 +35,7 @@ const RouteReportPage = () => {
|
||||
const positionAttributes = usePositionAttributes(t);
|
||||
|
||||
const devices = useSelector((state) => state.devices.items);
|
||||
const readonly = useRestriction('readonly');
|
||||
|
||||
const [available, setAvailable] = useState([]);
|
||||
const [columns, setColumns] = useState(['fixTime', 'latitude', 'longitude', 'speed', 'address']);
|
||||
@ -136,6 +139,7 @@ const RouteReportPage = () => {
|
||||
<TableCell className={classes.columnAction} />
|
||||
<TableCell>{t('sharedDevice')}</TableCell>
|
||||
{columns.map((key) => (<TableCell key={key}>{positionAttributes[key]?.name || key}</TableCell>))}
|
||||
<TableCell className={classes.columnAction} />
|
||||
</TableRow>
|
||||
</TableHead>
|
||||
<TableBody>
|
||||
@ -162,6 +166,17 @@ const RouteReportPage = () => {
|
||||
/>
|
||||
</TableCell>
|
||||
))}
|
||||
<TableCell className={classes.actionCellPadding}>
|
||||
<CollectionActions
|
||||
itemId={item.id}
|
||||
endpoint="positions"
|
||||
readonly={readonly}
|
||||
setTimestamp={() => {
|
||||
// NOTE: Gets called when an item was removed
|
||||
setItems(items.filter((position) => position.id !== item.id));
|
||||
}}
|
||||
/>
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
)) : (<TableShimmer columns={columns.length + 2} startAction />)}
|
||||
</TableBody>
|
||||
|
@ -46,4 +46,10 @@ export default makeStyles((theme) => ({
|
||||
flexGrow: 1,
|
||||
overflow: 'hidden',
|
||||
},
|
||||
actionCellPadding: {
|
||||
'&.MuiTableCell-body': {
|
||||
paddingTop: 0,
|
||||
paddingBottom: 0,
|
||||
},
|
||||
},
|
||||
}));
|
||||
|
@ -65,7 +65,7 @@ const CollectionActions = ({
|
||||
))}
|
||||
{!readonly && (
|
||||
<>
|
||||
<MenuItem onClick={handleEdit}>{t('sharedEdit')}</MenuItem>
|
||||
{editPath && <MenuItem onClick={handleEdit}>{t('sharedEdit')}</MenuItem>}
|
||||
<MenuItem onClick={handleRemove}>{t('sharedRemove')}</MenuItem>
|
||||
</>
|
||||
)}
|
||||
@ -82,11 +82,13 @@ const CollectionActions = ({
|
||||
))}
|
||||
{!readonly && (
|
||||
<>
|
||||
<Tooltip title={t('sharedEdit')}>
|
||||
<IconButton size="small" onClick={handleEdit}>
|
||||
<EditIcon fontSize="small" />
|
||||
</IconButton>
|
||||
</Tooltip>
|
||||
{editPath && (
|
||||
<Tooltip title={t('sharedEdit')}>
|
||||
<IconButton size="small" onClick={handleEdit}>
|
||||
<EditIcon fontSize="small" />
|
||||
</IconButton>
|
||||
</Tooltip>
|
||||
)}
|
||||
<Tooltip title={t('sharedRemove')}>
|
||||
<IconButton size="small" onClick={handleRemove}>
|
||||
<DeleteIcon fontSize="small" />
|
||||
|
Loading…
x
Reference in New Issue
Block a user