import { useContext } from 'react'; import { Box, Divider } from '@material-ui/core'; import { makeStyles } from '@material-ui/core/styles'; import { Panel } from '../Panels'; import { HeaderText, BodyText } from '../Text'; import PeriodicFetch from '../../lib/fetchers/periodicFetch'; import { DIVIDER } from '../../lib/consts/DEFAULT_THEME'; import processNetworkData from './processNetwork'; import { AnvilContext } from '../AnvilContext'; import Decorator, { Colours } from '../Decorator'; import Spinner from '../Spinner'; const useStyles = makeStyles((theme) => ({ container: { width: '100%', overflow: 'auto', height: '32vh', [theme.breakpoints.down('md')]: { height: '100%', overflow: 'hidden', }, }, root: { paddingTop: '.7em', paddingBottom: '.7em', }, noPaddingLeft: { paddingLeft: 0, }, divider: { background: DIVIDER, }, verticalDivider: { height: '3.5em', }, })); const selectDecorator = (state: string): Colours => { switch (state) { case 'optimal': return 'ok'; case 'degraded': return 'warning'; case 'down': return 'error'; default: return 'warning'; } }; const Network = (): JSX.Element => { const { uuid } = useContext(AnvilContext); const classes = useStyles(); const { data, isLoading } = PeriodicFetch( `${process.env.NEXT_PUBLIC_API_URL}/get_networks?anvil_uuid=${uuid}`, ); const processed = processNetworkData(data); return ( {!isLoading ? ( {data && processed.bonds.map((bond: ProcessedBond) => { return ( <> {bond.hosts.map( (host, index: number): JSX.Element => ( <> {index !== bond.hosts.length - 1 && ( )} ), )} ); })} ) : ( )} ); }; export default Network;