diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2020-09-30 22:04:28 -0700 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2020-09-30 22:04:28 -0700 |
commit | 23466068f868b631aca5e1b9c4ecf5c846541fd2 (patch) | |
tree | 2814a7b5542ee14f412196eb14702ffd89966bc8 /modern/src/settings/GroupsPage.js | |
parent | 94e8c40f52b239562aded5e70e334ddbb2eea23b (diff) | |
download | trackermap-web-23466068f868b631aca5e1b9c4ecf5c846541fd2.tar.gz trackermap-web-23466068f868b631aca5e1b9c4ecf5c846541fd2.tar.bz2 trackermap-web-23466068f868b631aca5e1b9c4ecf5c846541fd2.zip |
Implement groups management
Diffstat (limited to 'modern/src/settings/GroupsPage.js')
-rw-r--r-- | modern/src/settings/GroupsPage.js | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/modern/src/settings/GroupsPage.js b/modern/src/settings/GroupsPage.js new file mode 100644 index 00000000..e2740627 --- /dev/null +++ b/modern/src/settings/GroupsPage.js @@ -0,0 +1,63 @@ +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 GroupsView = ({ updateTimestamp, onMenuClick }) => { + const classes = useStyles(); + + const [items, setItems] = useState([]); + + useEffectAsync(async () => { + const response = await fetch('/api/groups'); + if (response.ok) { + setItems(await response.json()); + } + }, [updateTimestamp]); + + return ( + <TableContainer> + <Table> + <TableHead> + <TableRow> + <TableCell className={classes.columnAction} /> + <TableCell>{t('sharedName')}</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.name}</TableCell> + </TableRow> + ))} + </TableBody> + </Table> + </TableContainer> + ); +} + +const GroupsPage = () => { + return ( + <> + <MainToolbar /> + <EditCollectionView content={GroupsView} editPath="/settings/group" endpoint="groups" /> + </> + ); +} + +export default GroupsPage; |