aboutsummaryrefslogtreecommitdiff
path: root/modern/src/settings
diff options
context:
space:
mode:
authorAshutosh Bishnoi <mail2bishnoi@gmail.com>2021-02-04 16:33:02 +0530
committerAshutosh Bishnoi <mail2bishnoi@gmail.com>2021-02-04 16:33:02 +0530
commit4dbe654290c3d1f6051ea9650549f7c254d321b4 (patch)
treec56014540733b9ee9f1f2400f48dc80834ab9f4a /modern/src/settings
parent65af8bad51851ff7f15319d5ce14ff24697aaded (diff)
downloadetbsa-traccar-web-4dbe654290c3d1f6051ea9650549f7c254d321b4.tar.gz
etbsa-traccar-web-4dbe654290c3d1f6051ea9650549f7c254d321b4.tar.bz2
etbsa-traccar-web-4dbe654290c3d1f6051ea9650549f7c254d321b4.zip
Initial Maintenance Screen
Diffstat (limited to 'modern/src/settings')
-rw-r--r--modern/src/settings/MaintenancePage.js97
-rw-r--r--modern/src/settings/MaintenancesPage.js69
2 files changed, 166 insertions, 0 deletions
diff --git a/modern/src/settings/MaintenancePage.js b/modern/src/settings/MaintenancePage.js
new file mode 100644
index 0000000..8c4cdf4
--- /dev/null
+++ b/modern/src/settings/MaintenancePage.js
@@ -0,0 +1,97 @@
+import React, { useState } from 'react';
+
+import t from '../common/localization';
+import EditItemView from '../EditItemView';
+import { Accordion, AccordionSummary, AccordionDetails, makeStyles, Typography, TextField, FormControl, InputLabel, MenuItem, Select, } from '@material-ui/core';
+import ExpandMoreIcon from '@material-ui/icons/ExpandMore';
+import EditAttributesView from '../attributes/EditAttributesView';
+import positionAttributes from '../attributes/positionAttributes';
+
+const useStyles = makeStyles(() => ({
+ details: {
+ flexDirection: 'column',
+ },
+}));
+
+const MaintenancePage = () => {
+ const classes = useStyles();
+
+ const [item, setItem] = useState();
+
+ const options = [];
+
+ Object.entries(positionAttributes).map(([key, value]) => {
+ if (value.type === 'number') {
+ options.push({ key, name: value.name, type: value.type })
+ }
+ });
+
+ const handleChange = event => {
+ const newValue = event.target.value;
+ setItem({...item, type: newValue});
+ }
+
+ return (
+ <EditItemView endpoint="maintenance" item={item} setItem={setItem}>
+ {item &&
+ <>
+ <Accordion defaultExpanded>
+ <AccordionSummary expandIcon={<ExpandMoreIcon />}>
+ <Typography variant="subtitle1">
+ {t('sharedRequired')}
+ </Typography>
+ </AccordionSummary>
+ <AccordionDetails className={classes.details}>
+ <TextField
+ margin="normal"
+ value={item.name || ''}
+ onChange={event => setItem({...item, name: event.target.value})}
+ label={t('sharedName')}
+ variant="filled" />
+ <FormControl variant="filled" margin="normal" fullWidth>
+ <InputLabel>{t('sharedType')}</InputLabel>
+ <Select
+ value={item.type || ''}
+ onChange={handleChange}>
+ {options.map((option) => (
+ <MenuItem key={option.key} value={option.key}>{option.name}</MenuItem>
+ ))}
+ </Select>
+ </FormControl>
+ <TextField
+ margin="normal"
+ type="number"
+ value={item.start || ''}
+ onChange={event => setItem({...item, start: event.target.value})}
+ label={t('maintenanceStart')}
+ variant="filled" />
+ <TextField
+ margin="normal"
+ type="number"
+ value={item.period || ''}
+ onChange={event => setItem({...item, period: event.target.value})}
+ label={t('maintenancePeriod')}
+ variant="filled" />
+ </AccordionDetails>
+ </Accordion>
+ <Accordion>
+ <AccordionSummary expandIcon={<ExpandMoreIcon />}>
+ <Typography variant="subtitle1">
+ {t('sharedAttributes')}
+ </Typography>
+ </AccordionSummary>
+ <AccordionDetails className={classes.details}>
+ <EditAttributesView
+ attributes={item.attributes}
+ setAttributes={attributes => setItem({...item, attributes})}
+ definitions={{}}
+ />
+ </AccordionDetails>
+ </Accordion>
+ </>
+ }
+ </EditItemView>
+ );
+}
+
+export default MaintenancePage;
diff --git a/modern/src/settings/MaintenancesPage.js b/modern/src/settings/MaintenancesPage.js
new file mode 100644
index 0000000..9cbf51a
--- /dev/null
+++ b/modern/src/settings/MaintenancesPage.js
@@ -0,0 +1,69 @@
+import React, { useState } from 'react';
+import MainToolbar from '../MainToolbar';
+import { TableContainer, Table, TableRow, TableCell, TableHead, TableBody, makeStyles, IconButton } from '@material-ui/core';
+import MoreVertIcon from '@material-ui/icons/MoreVert';
+import t from '../common/localization';
+import { useEffectAsync } from '../reactHelper';
+import EditCollectionView from '../EditCollectionView';
+
+const useStyles = makeStyles(theme => ({
+ columnAction: {
+ width: theme.spacing(1),
+ padding: theme.spacing(0, 1),
+ },
+}));
+
+const MaintenancesView = ({ updateTimestamp, onMenuClick }) => {
+ const classes = useStyles();
+
+ const [items, setItems] = useState([]);
+
+ useEffectAsync(async () => {
+ const response = await fetch('/api/maintenance');
+ if (response.ok) {
+ setItems(await response.json());
+ }
+ }, [updateTimestamp]);
+
+ return (
+ <TableContainer>
+ <Table>
+ <TableHead>
+ <TableRow>
+ <TableCell className={classes.columnAction} />
+ <TableCell>{t('sharedName')}</TableCell>
+ <TableCell>{t('sharedType')}</TableCell>
+ <TableCell>{t('maintenanceStart')}</TableCell>
+ <TableCell>{t('maintenancePeriod')}</TableCell>
+ </TableRow>
+ </TableHead>
+ <TableBody>
+ {items.map(item => (
+ <TableRow key={item.id}>
+ <TableCell className={classes.columnAction} padding="none">
+ <IconButton onClick={(event) => onMenuClick(event.currentTarget, item.id)}>
+ <MoreVertIcon />
+ </IconButton>
+ </TableCell>
+ <TableCell>{item.name}</TableCell>
+ <TableCell>{item.type}</TableCell>
+ <TableCell>{item.start}</TableCell>
+ <TableCell>{item.period}</TableCell>
+ </TableRow>
+ ))}
+ </TableBody>
+ </Table>
+ </TableContainer>
+ );
+}
+
+const MaintenacesPage = () => {
+ return (
+ <>
+ <MainToolbar />
+ <EditCollectionView content={MaintenancesView} editPath="/settings/maintenance" endpoint="maintenance" />
+ </>
+ );
+}
+
+export default MaintenacesPage;