1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import React from "react";
6 import { Table, TableHead, TableCell, TableRow, TableBody, StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core';
8 type CssRules = 'cell';
10 const styles: StyleRulesCallback<CssRules> = theme => ({
12 paddingRight: theme.spacing.unit * 2
16 interface MetadataTable {
25 interface MetadataProps {
26 items: MetadataTable[];
30 export const MetadataTab = withStyles(styles)((props: MetadataProps & WithStyles<CssRules>) =>
34 <TableCell>uuid</TableCell>
35 <TableCell>link_class</TableCell>
36 <TableCell>name</TableCell>
37 <TableCell>tail</TableCell>
38 <TableCell>head</TableCell>
39 <TableCell>properties</TableCell>
43 {props.items.map((it, index) =>
44 <TableRow key={index}>
45 <TableCell className={props.classes.cell}>{it.uuid}</TableCell>
46 <TableCell className={props.classes.cell}>{it.linkClass}</TableCell>
47 <TableCell className={props.classes.cell}>{it.name}</TableCell>
48 <TableCell className={props.classes.cell}>{it.tailUuid}</TableCell>
49 <TableCell className={props.classes.cell}>{it.headUuid === props.uuid ? 'this' : it.headUuid}</TableCell>
50 <TableCell className={props.classes.cell}>{JSON.stringify(it.properties)}</TableCell>