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/ComputedAttributesPage.js | 69 +++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 modern/src/settings/ComputedAttributesPage.js (limited to 'modern/src/settings/ComputedAttributesPage.js') 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