aboutsummaryrefslogtreecommitdiff
path: root/modern/src/settings/ComputedAttributesPage.js
blob: 1a6feab511ccba8cce077db5d94fadb6a643f299 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
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 { useSelector } from 'react-redux';
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([]);
  const adminEnabled = useSelector(state => state.session.user && state.session.user.administrator);

  useEffectAsync(async () => {
    const response = await fetch('/api/attributes/computed');
    if (response.ok) {
      setItems(await response.json());
    }
  }, [updateTimestamp]);

  return (
    <TableContainer>
    <Table>
      <TableHead>
        <TableRow>
          {adminEnabled && <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}>
            {adminEnabled &&
              <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" endpoint="attributes/computed" />
    </>
  );
}

export default ComputedAttributesPage;