aboutsummaryrefslogtreecommitdiff
path: root/modern/src/settings
diff options
context:
space:
mode:
authorAshutosh Bishnoi <mail2bishnoi@gmail.com>2021-01-05 17:23:32 +0530
committerAshutosh Bishnoi <mail2bishnoi@gmail.com>2021-01-05 17:23:32 +0530
commit3fb3b5334e11c1239b5126767c4160da79d1cfe9 (patch)
treeb68db81232ab2e74656fb18af9559ca8c2278b6e /modern/src/settings
parentbe88468a42eb4fd61c1bc5bdbf54be173825196d (diff)
downloadetbsa-traccar-web-3fb3b5334e11c1239b5126767c4160da79d1cfe9.tar.gz
etbsa-traccar-web-3fb3b5334e11c1239b5126767c4160da79d1cfe9.tar.bz2
etbsa-traccar-web-3fb3b5334e11c1239b5126767c4160da79d1cfe9.zip
Computed Attributes
Diffstat (limited to 'modern/src/settings')
-rw-r--r--modern/src/settings/ComputedAttributePage.js92
-rw-r--r--modern/src/settings/ComputedAttributesPage.js69
2 files changed, 161 insertions, 0 deletions
diff --git a/modern/src/settings/ComputedAttributePage.js b/modern/src/settings/ComputedAttributePage.js
new file mode 100644
index 0000000..f985152
--- /dev/null
+++ b/modern/src/settings/ComputedAttributePage.js
@@ -0,0 +1,92 @@
+import React, { useState } from 'react';
+import { Accordion, AccordionSummary, AccordionDetails, makeStyles, Typography, FormControl, InputLabel, MenuItem, Select, TextField } from "@material-ui/core";
+import t from '../common/localization';
+import EditItemView from '../EditItemView';
+
+import ExpandMoreIcon from '@material-ui/icons/ExpandMore';
+import positionAttributes from '../attributes/positionAttributes';
+
+
+const useStyles = makeStyles(() => ({
+ details: {
+ flexDirection: 'column',
+ },
+}));
+
+const ComputedAttributePage =() => {
+
+ const classes = useStyles();
+ const [item, setItem] = useState();
+ const [key, setKey] = useState();
+
+ const options = Object.entries(positionAttributes).map(([key, value]) => ({
+ key,
+ name: value.name,
+ type: value.type,
+ }));
+
+ return (
+ <EditItemView endpoint="/attributes/computed" 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.description || ''}
+ onChange={event => setItem({...item, description: event.target.value})}
+ label={t('sharedDescription')}
+ variant="filled" />
+ <FormControl variant="filled" margin="normal" fullWidth>
+ <InputLabel>{t('sharedAttribute')}</InputLabel>
+ <Select
+ value={item.attribute || ''}
+ onChange={(e) => {
+ const newValue = e.target.value;
+ const positionAttribute = positionAttributes[newValue];
+ setKey(newValue);
+ if(positionAttribute && positionAttribute.type) {
+ setItem({...item, attribute: newValue, type: positionAttribute.type});
+ }else {
+ setItem({...item, attribute: newValue});
+ }
+ }}>
+ {options.map((option) => (
+ <MenuItem key={option.key} value={option.key}>{option.name}</MenuItem>
+ ))}
+ </Select>
+ </FormControl>
+ <TextField
+ margin="normal"
+ value={item.expression || ''}
+ onChange={event => setItem({...item, expression: event.target.value})}
+ label={t('sharedExpression')}
+ multiline
+ rows={4}
+ variant="filled" />
+ <FormControl
+ variant="filled"
+ margin="normal"
+ fullWidth
+ disabled={key in positionAttributes}>
+ <InputLabel>{t('sharedType')}</InputLabel>
+ <Select
+ value={item.type || ''}
+ onChange={event => setItem({...item, type: event.target.value})}>
+ <MenuItem value={'string'}>{t('sharedTypeString')}</MenuItem>
+ <MenuItem value={'number'}>{t('sharedTypeNumber')}</MenuItem>
+ <MenuItem value={'boolean'}>{t('sharedTypeBoolean')}</MenuItem>
+ </Select>
+ </FormControl>
+ </AccordionDetails>
+ </Accordion>
+ }
+ </EditItemView>
+ )
+}
+
+export default ComputedAttributePage;
diff --git a/modern/src/settings/ComputedAttributesPage.js b/modern/src/settings/ComputedAttributesPage.js
new file mode 100644
index 0000000..9ca5b69
--- /dev/null
+++ b/modern/src/settings/ComputedAttributesPage.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 ComputedAttributeView = ({ updateTimestamp, onMenuClick }) => {
+ const classes = useStyles();
+
+ const [items, setItems] = useState([]);
+
+ useEffectAsync(async () => {
+ const response = await fetch('/api/attributes/computed');
+ if (response.ok) {
+ setItems(await response.json());
+ }
+ }, [updateTimestamp]);
+
+ return (
+ <TableContainer>
+ <Table>
+ <TableHead>
+ <TableRow>
+ <TableCell className={classes.columnAction} />
+ <TableCell>{t('sharedDescription')}</TableCell>
+ <TableCell>{t('sharedAttribute')}</TableCell>
+ <TableCell>{t('sharedExpression')}</TableCell>
+ <TableCell>{t('sharedType')}</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.description}</TableCell>
+ <TableCell>{item.attribute}</TableCell>
+ <TableCell>{item.expression}</TableCell>
+ <TableCell>{item.type}</TableCell>
+ </TableRow>
+ ))}
+ </TableBody>
+ </Table>
+ </TableContainer>
+ );
+}
+
+const ComputedAttributesPage = () => {
+ return (
+ <>
+ <MainToolbar />
+ <EditCollectionView content={ComputedAttributeView} editPath="/settings/attribute/computed" endpoint="attributes/computed" />
+ </>
+ );
+}
+
+export default ComputedAttributesPage;