|
|
|
@ -1,6 +1,6 @@ |
|
|
|
|
import { useContext } from 'react'; |
|
|
|
|
import { Box, Divider } from '@material-ui/core'; |
|
|
|
|
import { makeStyles } from '@material-ui/core/styles'; |
|
|
|
|
import { Box, Divider } from '@mui/material'; |
|
|
|
|
import { styled } from '@mui/material/styles'; |
|
|
|
|
import { Panel } from '../Panels'; |
|
|
|
|
import { HeaderText, BodyText } from '../Text'; |
|
|
|
|
import PeriodicFetch from '../../lib/fetchers/periodicFetch'; |
|
|
|
@ -13,8 +13,18 @@ import { AnvilContext } from '../AnvilContext'; |
|
|
|
|
import Decorator, { Colours } from '../Decorator'; |
|
|
|
|
import Spinner from '../Spinner'; |
|
|
|
|
|
|
|
|
|
const useStyles = makeStyles((theme) => ({ |
|
|
|
|
container: { |
|
|
|
|
const PREFIX = 'Network'; |
|
|
|
|
|
|
|
|
|
const classes = { |
|
|
|
|
container: `${PREFIX}-container`, |
|
|
|
|
root: `${PREFIX}-root`, |
|
|
|
|
noPaddingLeft: `${PREFIX}-noPaddingLeft`, |
|
|
|
|
divider: `${PREFIX}-divider`, |
|
|
|
|
verticalDivider: `${PREFIX}-verticalDivider`, |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const StyledDiv = styled('div')(({ theme }) => ({ |
|
|
|
|
[`& .${classes.container}`]: { |
|
|
|
|
width: '100%', |
|
|
|
|
overflow: 'auto', |
|
|
|
|
height: '32vh', |
|
|
|
@ -24,17 +34,21 @@ const useStyles = makeStyles((theme) => ({ |
|
|
|
|
overflow: 'hidden', |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
root: { |
|
|
|
|
|
|
|
|
|
[`& .${classes.root}`]: { |
|
|
|
|
paddingTop: '.7em', |
|
|
|
|
paddingBottom: '.7em', |
|
|
|
|
}, |
|
|
|
|
noPaddingLeft: { |
|
|
|
|
|
|
|
|
|
[`& .${classes.noPaddingLeft}`]: { |
|
|
|
|
paddingLeft: 0, |
|
|
|
|
}, |
|
|
|
|
divider: { |
|
|
|
|
background: DIVIDER, |
|
|
|
|
|
|
|
|
|
[`& .${classes.divider}`]: { |
|
|
|
|
backgroundColor: DIVIDER, |
|
|
|
|
}, |
|
|
|
|
verticalDivider: { |
|
|
|
|
|
|
|
|
|
[`& .${classes.verticalDivider}`]: { |
|
|
|
|
height: '3.5em', |
|
|
|
|
}, |
|
|
|
|
})); |
|
|
|
@ -54,7 +68,6 @@ const selectDecorator = (state: string): Colours => { |
|
|
|
|
|
|
|
|
|
const Network = (): JSX.Element => { |
|
|
|
|
const { uuid } = useContext(AnvilContext); |
|
|
|
|
const classes = useStyles(); |
|
|
|
|
|
|
|
|
|
const { data, isLoading } = PeriodicFetch<AnvilNetwork>( |
|
|
|
|
`${process.env.NEXT_PUBLIC_API_URL}/get_networks?anvil_uuid=${uuid}`, |
|
|
|
@ -63,63 +76,65 @@ const Network = (): JSX.Element => { |
|
|
|
|
const processed = processNetworkData(data); |
|
|
|
|
return ( |
|
|
|
|
<Panel> |
|
|
|
|
<HeaderText text="Network" /> |
|
|
|
|
{!isLoading ? ( |
|
|
|
|
<Box className={classes.container}> |
|
|
|
|
{data && |
|
|
|
|
processed.bonds.map((bond: ProcessedBond) => { |
|
|
|
|
return ( |
|
|
|
|
<> |
|
|
|
|
<Box |
|
|
|
|
display="flex" |
|
|
|
|
flexDirection="row" |
|
|
|
|
width="100%" |
|
|
|
|
className={classes.root} |
|
|
|
|
> |
|
|
|
|
<Box p={1} className={classes.noPaddingLeft}> |
|
|
|
|
<Decorator colour={selectDecorator(bond.bond_state)} /> |
|
|
|
|
</Box> |
|
|
|
|
<Box p={1} flexGrow={1} className={classes.noPaddingLeft}> |
|
|
|
|
<BodyText text={bond.bond_name} /> |
|
|
|
|
<BodyText text={`${bond.bond_speed}Mbps`} /> |
|
|
|
|
</Box> |
|
|
|
|
<Box display="flex" style={{ paddingTop: '.5em' }}> |
|
|
|
|
{bond.hosts.map( |
|
|
|
|
(host, index: number): JSX.Element => ( |
|
|
|
|
<> |
|
|
|
|
<Box |
|
|
|
|
p={1} |
|
|
|
|
key={host.host_name} |
|
|
|
|
style={{ paddingTop: 0, paddingBottom: 0 }} |
|
|
|
|
> |
|
|
|
|
<Box> |
|
|
|
|
<BodyText |
|
|
|
|
text={host.host_name} |
|
|
|
|
selected={false} |
|
|
|
|
/> |
|
|
|
|
<BodyText text={host.link.link_name} /> |
|
|
|
|
<StyledDiv> |
|
|
|
|
<HeaderText text="Network" /> |
|
|
|
|
{!isLoading ? ( |
|
|
|
|
<Box className={classes.container}> |
|
|
|
|
{data && |
|
|
|
|
processed.bonds.map((bond: ProcessedBond) => { |
|
|
|
|
return ( |
|
|
|
|
<> |
|
|
|
|
<Box |
|
|
|
|
display="flex" |
|
|
|
|
flexDirection="row" |
|
|
|
|
width="100%" |
|
|
|
|
className={classes.root} |
|
|
|
|
> |
|
|
|
|
<Box p={1} className={classes.noPaddingLeft}> |
|
|
|
|
<Decorator colour={selectDecorator(bond.bond_state)} /> |
|
|
|
|
</Box> |
|
|
|
|
<Box p={1} flexGrow={1} className={classes.noPaddingLeft}> |
|
|
|
|
<BodyText text={bond.bond_name} /> |
|
|
|
|
<BodyText text={`${bond.bond_speed}Mbps`} /> |
|
|
|
|
</Box> |
|
|
|
|
<Box display="flex" style={{ paddingTop: '.5em' }}> |
|
|
|
|
{bond.hosts.map( |
|
|
|
|
(host, index: number): JSX.Element => ( |
|
|
|
|
<> |
|
|
|
|
<Box |
|
|
|
|
p={1} |
|
|
|
|
key={host.host_name} |
|
|
|
|
style={{ paddingTop: 0, paddingBottom: 0 }} |
|
|
|
|
> |
|
|
|
|
<Box> |
|
|
|
|
<BodyText |
|
|
|
|
text={host.host_name} |
|
|
|
|
selected={false} |
|
|
|
|
/> |
|
|
|
|
<BodyText text={host.link.link_name} /> |
|
|
|
|
</Box> |
|
|
|
|
</Box> |
|
|
|
|
</Box> |
|
|
|
|
{index !== bond.hosts.length - 1 && ( |
|
|
|
|
<Divider |
|
|
|
|
className={`${classes.divider} ${classes.verticalDivider}`} |
|
|
|
|
orientation="vertical" |
|
|
|
|
flexItem |
|
|
|
|
/> |
|
|
|
|
)} |
|
|
|
|
</> |
|
|
|
|
), |
|
|
|
|
)} |
|
|
|
|
{index !== bond.hosts.length - 1 && ( |
|
|
|
|
<Divider |
|
|
|
|
className={`${classes.divider} ${classes.verticalDivider}`} |
|
|
|
|
orientation="vertical" |
|
|
|
|
flexItem |
|
|
|
|
/> |
|
|
|
|
)} |
|
|
|
|
</> |
|
|
|
|
), |
|
|
|
|
)} |
|
|
|
|
</Box> |
|
|
|
|
</Box> |
|
|
|
|
</Box> |
|
|
|
|
<Divider className={classes.divider} /> |
|
|
|
|
</> |
|
|
|
|
); |
|
|
|
|
})} |
|
|
|
|
</Box> |
|
|
|
|
) : ( |
|
|
|
|
<Spinner /> |
|
|
|
|
)} |
|
|
|
|
<Divider className={classes.divider} /> |
|
|
|
|
</> |
|
|
|
|
); |
|
|
|
|
})} |
|
|
|
|
</Box> |
|
|
|
|
) : ( |
|
|
|
|
<Spinner /> |
|
|
|
|
)} |
|
|
|
|
</StyledDiv> |
|
|
|
|
</Panel> |
|
|
|
|
); |
|
|
|
|
}; |
|
|
|
|