import { Box, styled, Switch } from '@mui/material'; import API_BASE_URL from '../../lib/consts/API_BASE_URL'; import { LARGE_MOBILE_BREAKPOINT } from '../../lib/consts/DEFAULT_THEME'; import HOST_STATUS from '../../lib/consts/HOST_STATUS'; import { ProgressBar } from '../Bars'; import Decorator, { Colours } from '../Decorator'; import { InnerPanel, InnerPanelHeader } from '../Panels'; import putFetch from '../../lib/fetchers/putFetch'; import { BodyText } from '../Text'; const PREFIX = 'AnvilHost'; const classes = { state: `${PREFIX}-state`, bar: `${PREFIX}-bar`, label: `${PREFIX}-label`, decoratorBox: `${PREFIX}-decoratorBox`, }; const StyledBox = styled(Box)(({ theme }) => ({ overflow: 'auto', height: '28vh', paddingLeft: '.3em', paddingRight: '.3em', [theme.breakpoints.down(LARGE_MOBILE_BREAKPOINT)]: { height: '100%', overflow: 'hidden', }, [`& .${classes.state}`]: { paddingLeft: '.7em', paddingRight: '.7em', }, [`& .${classes.bar}`]: { paddingLeft: '.7em', paddingRight: '.7em', }, [`& .${classes.label}`]: { paddingTop: '.3em', }, [`& .${classes.decoratorBox}`]: { alignSelf: 'stretch', }, })); const selectStateMessage = (regex: RegExp, message: string): string => { const msg = regex.exec(message); if (msg) { return HOST_STATUS.get(msg[0]) || 'Error code not recognized'; } return 'Error code not found'; }; const selectDecorator = (state: string): Colours => { switch (state) { case 'online': return 'ok'; case 'offline': return 'off'; default: return 'warning'; } }; const AnvilHost = ({ hosts, }: { hosts: Array; }): JSX.Element => { const stateRegex = /^[a-zA-Z]/; const messageRegex = /^(message_[0-9]+)/; return ( {hosts && hosts.map( (host): JSX.Element => // Temporary fix: avoid crash when encounter undefined host entry by returning a blank element. // TODO: figure out why there are undefined host entries. host ? ( c.toUpperCase(), ) || 'Not Available' } /> putFetch( `${API_BASE_URL}/command/${ host.state === 'online' ? 'stop-subnode' : 'start-subnode' }/${host.host_uuid}`, {}, ) } /> putFetch( `${API_BASE_URL}/command/${ host.state === 'online' ? 'leave-an' : 'join-an' }/${host.host_uuid}`, {}, ) } /> {host.state !== 'online' && host.state !== 'offline' && ( <> )} ) : ( <> ), )} ); }; export default AnvilHost;