mirror of
https://github.com/traccar/traccar-web.git
synced 2025-04-04 22:43:31 +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 MapGeofence from '../map/MapGeofence';
|
||||||
import scheduleReport from './common/scheduleReport';
|
import scheduleReport from './common/scheduleReport';
|
||||||
import MapScale from '../map/MapScale';
|
import MapScale from '../map/MapScale';
|
||||||
|
import { useRestriction } from '../common/util/permissions';
|
||||||
|
import CollectionActions from '../settings/components/CollectionActions';
|
||||||
|
|
||||||
const RouteReportPage = () => {
|
const RouteReportPage = () => {
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
@ -33,6 +35,7 @@ const RouteReportPage = () => {
|
|||||||
const positionAttributes = usePositionAttributes(t);
|
const positionAttributes = usePositionAttributes(t);
|
||||||
|
|
||||||
const devices = useSelector((state) => state.devices.items);
|
const devices = useSelector((state) => state.devices.items);
|
||||||
|
const readonly = useRestriction('readonly');
|
||||||
|
|
||||||
const [available, setAvailable] = useState([]);
|
const [available, setAvailable] = useState([]);
|
||||||
const [columns, setColumns] = useState(['fixTime', 'latitude', 'longitude', 'speed', 'address']);
|
const [columns, setColumns] = useState(['fixTime', 'latitude', 'longitude', 'speed', 'address']);
|
||||||
@ -136,6 +139,7 @@ const RouteReportPage = () => {
|
|||||||
<TableCell className={classes.columnAction} />
|
<TableCell className={classes.columnAction} />
|
||||||
<TableCell>{t('sharedDevice')}</TableCell>
|
<TableCell>{t('sharedDevice')}</TableCell>
|
||||||
{columns.map((key) => (<TableCell key={key}>{positionAttributes[key]?.name || key}</TableCell>))}
|
{columns.map((key) => (<TableCell key={key}>{positionAttributes[key]?.name || key}</TableCell>))}
|
||||||
|
<TableCell className={classes.columnAction} />
|
||||||
</TableRow>
|
</TableRow>
|
||||||
</TableHead>
|
</TableHead>
|
||||||
<TableBody>
|
<TableBody>
|
||||||
@ -162,6 +166,17 @@ const RouteReportPage = () => {
|
|||||||
/>
|
/>
|
||||||
</TableCell>
|
</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>
|
</TableRow>
|
||||||
)) : (<TableShimmer columns={columns.length + 2} startAction />)}
|
)) : (<TableShimmer columns={columns.length + 2} startAction />)}
|
||||||
</TableBody>
|
</TableBody>
|
||||||
|
@ -46,4 +46,10 @@ export default makeStyles((theme) => ({
|
|||||||
flexGrow: 1,
|
flexGrow: 1,
|
||||||
overflow: 'hidden',
|
overflow: 'hidden',
|
||||||
},
|
},
|
||||||
|
actionCellPadding: {
|
||||||
|
'&.MuiTableCell-body': {
|
||||||
|
paddingTop: 0,
|
||||||
|
paddingBottom: 0,
|
||||||
|
},
|
||||||
|
},
|
||||||
}));
|
}));
|
||||||
|
@ -65,7 +65,7 @@ const CollectionActions = ({
|
|||||||
))}
|
))}
|
||||||
{!readonly && (
|
{!readonly && (
|
||||||
<>
|
<>
|
||||||
<MenuItem onClick={handleEdit}>{t('sharedEdit')}</MenuItem>
|
{editPath && <MenuItem onClick={handleEdit}>{t('sharedEdit')}</MenuItem>}
|
||||||
<MenuItem onClick={handleRemove}>{t('sharedRemove')}</MenuItem>
|
<MenuItem onClick={handleRemove}>{t('sharedRemove')}</MenuItem>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
@ -82,11 +82,13 @@ const CollectionActions = ({
|
|||||||
))}
|
))}
|
||||||
{!readonly && (
|
{!readonly && (
|
||||||
<>
|
<>
|
||||||
<Tooltip title={t('sharedEdit')}>
|
{editPath && (
|
||||||
<IconButton size="small" onClick={handleEdit}>
|
<Tooltip title={t('sharedEdit')}>
|
||||||
<EditIcon fontSize="small" />
|
<IconButton size="small" onClick={handleEdit}>
|
||||||
</IconButton>
|
<EditIcon fontSize="small" />
|
||||||
</Tooltip>
|
</IconButton>
|
||||||
|
</Tooltip>
|
||||||
|
)}
|
||||||
<Tooltip title={t('sharedRemove')}>
|
<Tooltip title={t('sharedRemove')}>
|
||||||
<IconButton size="small" onClick={handleRemove}>
|
<IconButton size="small" onClick={handleRemove}>
|
||||||
<DeleteIcon fontSize="small" />
|
<DeleteIcon fontSize="small" />
|
||||||
|
Loading…
x
Reference in New Issue
Block a user