diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2021-01-08 09:21:04 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-08 09:21:04 -0800 |
commit | 2201f5417f41204453e3cd53da003296925282aa (patch) | |
tree | 5f9a8ffedc10160ce3aecc7f4f1cb50074a4497f /modern/src/settings/ComputedAttributePage.js | |
parent | be88468a42eb4fd61c1bc5bdbf54be173825196d (diff) | |
parent | f48e7801d86ca3d8b831358013823dd62d33c7ee (diff) | |
download | trackermap-web-2201f5417f41204453e3cd53da003296925282aa.tar.gz trackermap-web-2201f5417f41204453e3cd53da003296925282aa.tar.bz2 trackermap-web-2201f5417f41204453e3cd53da003296925282aa.zip |
Merge pull request #806 from mail2bishnoi/computed_attributes
Computed Attributes
Diffstat (limited to 'modern/src/settings/ComputedAttributePage.js')
-rw-r--r-- | modern/src/settings/ComputedAttributePage.js | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/modern/src/settings/ComputedAttributePage.js b/modern/src/settings/ComputedAttributePage.js new file mode 100644 index 00000000..73759fab --- /dev/null +++ b/modern/src/settings/ComputedAttributePage.js @@ -0,0 +1,93 @@ +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, + })); + + const handleChange = event => { + const newValue = event.target.value; + setKey(newValue); + const positionAttribute = positionAttributes[newValue]; + if(positionAttribute && positionAttribute.type) { + setItem({...item, attribute: newValue, type: positionAttribute.type}); + } else { + setItem({...item, attribute: newValue}); + } + } + + 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={handleChange}> + {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; |