diff options
author | Anton Tananaev <anton@traccar.org> | 2022-05-03 19:32:19 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2022-05-03 19:32:19 -0700 |
commit | eb52cc9ed238be6bbcb33a0f95d336b1ea404253 (patch) | |
tree | a33e47e6fd648b707d253f058ec45b6cb002f77b /modern/src/settings/AccumulatorsPage.js | |
parent | 02539d31ea7522fcfbbbcf4cf3fcd03e1961786f (diff) | |
download | trackermap-web-eb52cc9ed238be6bbcb33a0f95d336b1ea404253.tar.gz trackermap-web-eb52cc9ed238be6bbcb33a0f95d336b1ea404253.tar.bz2 trackermap-web-eb52cc9ed238be6bbcb33a0f95d336b1ea404253.zip |
Support accumulators reset
Diffstat (limited to 'modern/src/settings/AccumulatorsPage.js')
-rw-r--r-- | modern/src/settings/AccumulatorsPage.js | 114 |
1 files changed, 114 insertions, 0 deletions
diff --git a/modern/src/settings/AccumulatorsPage.js b/modern/src/settings/AccumulatorsPage.js new file mode 100644 index 00000000..f592445d --- /dev/null +++ b/modern/src/settings/AccumulatorsPage.js @@ -0,0 +1,114 @@ +import React, { useEffect, useState } from 'react'; +import { useSelector } from 'react-redux'; +import { useHistory, useParams } from 'react-router-dom'; +import { + Accordion, AccordionSummary, AccordionDetails, makeStyles, Typography, Container, TextField, FormControl, Button, +} from '@material-ui/core'; +import ExpandMoreIcon from '@material-ui/icons/ExpandMore'; +import { useTranslation } from '../LocalizationProvider'; +import OptionsLayout from './OptionsLayout'; + +const useStyles = makeStyles((theme) => ({ + container: { + marginTop: theme.spacing(2), + }, + buttons: { + display: 'flex', + justifyContent: 'space-evenly', + '& > *': { + flexBasis: '33%', + }, + }, + details: { + flexDirection: 'column', + }, +})); + +const AccumulatorsPage = () => { + const history = useHistory(); + const classes = useStyles(); + const t = useTranslation(); + + const { id } = useParams(); + const position = useSelector((state) => state.positions.items[id]); + + const [item, setItem] = useState(); + + useEffect(() => { + if (position) { + setItem({ + deviceId: parseInt(id, 10), + hours: position.attributes.hours || 0, + totalDistance: position.attributes.totalDistance || 0, + }); + } + }, [id, position]); + + const handleSave = async () => { + const response = await fetch(`/api/devices/${id}/accumulators`, { + method: 'PUT', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify(item), + }); + + if (response.ok) { + history.goBack(); + } + }; + + return ( + <OptionsLayout> + {item && ( + <Container maxWidth="xs" className={classes.container}> + <Accordion defaultExpanded> + <AccordionSummary expandIcon={<ExpandMoreIcon />}> + <Typography variant="subtitle1"> + {t('sharedRequired')} + </Typography> + </AccordionSummary> + <AccordionDetails className={classes.details}> + <TextField + margin="normal" + type="number" + value={item.hours} + onChange={(event) => setItem({ ...item, hours: Number(event.target.value) })} + label={t('positionHours')} + variant="filled" + /> + <TextField + margin="normal" + type="number" + value={item.totalDistance} + onChange={(event) => setItem({ ...item, totalDistance: Number(event.target.value) })} + label={t('deviceTotalDistance')} + variant="filled" + /> + </AccordionDetails> + </Accordion> + <FormControl fullWidth margin="normal"> + <div className={classes.buttons}> + <Button + type="button" + color="primary" + variant="outlined" + onClick={() => history.goBack()} + > + {t('sharedCancel')} + </Button> + <Button + type="button" + color="primary" + variant="contained" + onClick={handleSave} + > + {t('sharedSave')} + </Button> + </div> + </FormControl> + </Container> + )} + </OptionsLayout> + ); +}; + +export default AccumulatorsPage; |