Local modifications to ClusterLabs/Anvil by Alteeve
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.2 KiB

import { Grid, Switch } from '@material-ui/core';
import InnerPanel from './InnerPanel';
import AllocationBar from './AllocationBar';
import { BodyText } from './Text';
const AnvilNode = ({
node,
}: {
node: Array<AnvilStatusNode & AnvilListItemNode>;
}): JSX.Element => {
return (
<>
{node &&
node.map(
(n): JSX.Element => {
return (
<InnerPanel key={n.state_message}>
<Grid container alignItems="center" justify="space-around">
<Grid item xs={6}>
<BodyText text={`Node: ${n.node_name}`} />
</Grid>
<Grid item xs={4}>
<Switch checked />
</Grid>
<Grid item xs={6}>
<BodyText text={`State: ${n.state}`} />
</Grid>
<Grid item xs={4}>
<BodyText text={n.state_message} />
</Grid>
<Grid item xs={10}>
<AllocationBar allocated={n.state_percent} />
</Grid>
</Grid>
</InnerPanel>
);
},
)}
</>
);
};
export default AnvilNode;