diff options
author | Ashutosh Bishnoi <mail2bishnoi@gmail.com> | 2021-01-05 17:23:32 +0530 |
---|---|---|
committer | Ashutosh Bishnoi <mail2bishnoi@gmail.com> | 2021-01-05 17:23:32 +0530 |
commit | 3fb3b5334e11c1239b5126767c4160da79d1cfe9 (patch) | |
tree | b68db81232ab2e74656fb18af9559ca8c2278b6e /modern/src/settings/ComputedAttributesPage.js | |
parent | be88468a42eb4fd61c1bc5bdbf54be173825196d (diff) | |
download | trackermap-web-3fb3b5334e11c1239b5126767c4160da79d1cfe9.tar.gz trackermap-web-3fb3b5334e11c1239b5126767c4160da79d1cfe9.tar.bz2 trackermap-web-3fb3b5334e11c1239b5126767c4160da79d1cfe9.zip |
Computed Attributes
Diffstat (limited to 'modern/src/settings/ComputedAttributesPage.js')
-rw-r--r-- | modern/src/settings/ComputedAttributesPage.js | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/modern/src/settings/ComputedAttributesPage.js b/modern/src/settings/ComputedAttributesPage.js new file mode 100644 index 00000000..9ca5b69d --- /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; |