diff options
author | Anton Tananaev <anton@traccar.org> | 2023-01-28 07:36:48 -0800 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2023-01-28 07:36:48 -0800 |
commit | a8b6bf4f917ed1a453585eb51445e28bdc107d11 (patch) | |
tree | bd077ccb696f4652f60263561817ae891c5704a0 | |
parent | 2a1bc9710eb1005a8937dc7ec63c25975bb28f41 (diff) | |
download | trackermap-web-a8b6bf4f917ed1a453585eb51445e28bdc107d11.tar.gz trackermap-web-a8b6bf4f917ed1a453585eb51445e28bdc107d11.tar.bz2 trackermap-web-a8b6bf4f917ed1a453585eb51445e28bdc107d11.zip |
Delete report button
-rw-r--r-- | modern/src/reports/ScheduledPage.js | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/modern/src/reports/ScheduledPage.js b/modern/src/reports/ScheduledPage.js index 831588b0..7dd225ba 100644 --- a/modern/src/reports/ScheduledPage.js +++ b/modern/src/reports/ScheduledPage.js @@ -10,6 +10,7 @@ import { useTranslation } from '../common/components/LocalizationProvider'; import PageLayout from '../common/components/PageLayout'; import ReportsMenu from './components/ReportsMenu'; import TableShimmer from '../common/components/TableShimmer'; +import RemoveDialog from '../common/components/RemoveDialog'; const useStyles = makeStyles((theme) => ({ columnAction: { @@ -24,8 +25,10 @@ const ScheduledPage = () => { const calendars = useSelector((state) => state.calendars.items); + const [timestamp, setTimestamp] = useState(Date.now()); const [items, setItems] = useState([]); const [loading, setLoading] = useState(false); + const [removingId, setRemovingId] = useState(); useEffectAsync(async () => { setLoading(true); @@ -39,7 +42,7 @@ const ScheduledPage = () => { } finally { setLoading(false); } - }, []); + }, [timestamp]); const formatType = (type) => { switch (type) { @@ -76,7 +79,7 @@ const ScheduledPage = () => { <TableCell>{item.description}</TableCell> <TableCell>{calendars[item.calendarId].name}</TableCell> <TableCell className={classes.columnAction} padding="none"> - <IconButton size="small" onClick={() => {}}> + <IconButton size="small" onClick={() => setRemovingId(item.id)}> <DeleteIcon fontSize="small" /> </IconButton> </TableCell> @@ -84,6 +87,18 @@ const ScheduledPage = () => { )) : (<TableShimmer columns={4} endAction />)} </TableBody> </Table> + <RemoveDialog + style={{ transform: 'none' }} + open={!!removingId} + endpoint="reports" + itemId={removingId} + onResult={(removed) => { + setRemovingId(null); + if (removed) { + setTimestamp(Date.now()); + } + }} + /> </PageLayout> ); }; |