From 3fb3b5334e11c1239b5126767c4160da79d1cfe9 Mon Sep 17 00:00:00 2001 From: Ashutosh Bishnoi Date: Tue, 5 Jan 2021 17:23:32 +0530 Subject: Computed Attributes --- modern/src/settings/ComputedAttributePage.js | 92 +++++++++++++++++++++++++++ modern/src/settings/ComputedAttributesPage.js | 69 ++++++++++++++++++++ 2 files changed, 161 insertions(+) create mode 100644 modern/src/settings/ComputedAttributePage.js create mode 100644 modern/src/settings/ComputedAttributesPage.js (limited to 'modern/src/settings') 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 ( + + {item && + + }> + + {t('sharedRequired')} + + + + setItem({...item, description: event.target.value})} + label={t('sharedDescription')} + variant="filled" /> + + {t('sharedAttribute')} + + + setItem({...item, expression: event.target.value})} + label={t('sharedExpression')} + multiline + rows={4} + variant="filled" /> + + {t('sharedType')} + + + + + } + + ) +} + +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 ( + + + + + + {t('sharedDescription')} + {t('sharedAttribute')} + {t('sharedExpression')} + {t('sharedType')} + + + + {items.map((item) => ( + + + onMenuClick(event.currentTarget, item.id)}> + + + + {item.description} + {item.attribute} + {item.expression} + {item.type} + + ))} + +
+
+ ); +} + +const ComputedAttributesPage = () => { + return ( + <> + + + + ); +} + +export default ComputedAttributesPage; -- cgit v1.2.3 From a87f06b4cb10014b431e0a3ea8d6ba1da5a02fc1 Mon Sep 17 00:00:00 2001 From: Ashutosh Bishnoi Date: Wed, 6 Jan 2021 15:53:48 +0530 Subject: computed attribute code improvements --- modern/src/App.js | 4 ++-- modern/src/MainToolbar.js | 2 +- modern/src/settings/ComputedAttributePage.js | 22 ++++++++++++---------- modern/src/settings/ComputedAttributesPage.js | 2 +- 4 files changed, 16 insertions(+), 14 deletions(-) (limited to 'modern/src/settings') diff --git a/modern/src/App.js b/modern/src/App.js index d7a6511..f5ebc14 100644 --- a/modern/src/App.js +++ b/modern/src/App.js @@ -50,8 +50,8 @@ const App = () => { - - + + diff --git a/modern/src/MainToolbar.js b/modern/src/MainToolbar.js index acb10aa..91b3d69 100644 --- a/modern/src/MainToolbar.js +++ b/modern/src/MainToolbar.js @@ -179,7 +179,7 @@ const MainToolbar = () => { - history.push('/settings/attributes/computed')}> + history.push('/settings/attributes')}> diff --git a/modern/src/settings/ComputedAttributePage.js b/modern/src/settings/ComputedAttributePage.js index f985152..7ff9511 100644 --- a/modern/src/settings/ComputedAttributePage.js +++ b/modern/src/settings/ComputedAttributePage.js @@ -25,6 +25,17 @@ const ComputedAttributePage =() => { 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 ( {item && @@ -45,16 +56,7 @@ const ComputedAttributePage =() => { {t('sharedAttribute')}