|
|
|
@ -1,7 +1,8 @@ |
|
|
|
|
import { makeStyles } from '@material-ui/core/styles'; |
|
|
|
|
import { List, ListItem, ListItemText, Divider } from '@material-ui/core'; |
|
|
|
|
import { TEXT } from '../../lib/consts/DEFAULT_THEME'; |
|
|
|
|
import { ClassNameMap } from '@material-ui/styles'; |
|
|
|
|
import { List, Box, Divider, ListItem } from '@material-ui/core'; |
|
|
|
|
import { BodyText } from '../Text'; |
|
|
|
|
import { BLUE, PURPLE_OFF, RED_ON, TEXT } from '../../lib/consts/DEFAULT_THEME'; |
|
|
|
|
|
|
|
|
|
const useStyles = makeStyles(() => ({ |
|
|
|
|
root: { |
|
|
|
@ -17,23 +18,67 @@ const useStyles = makeStyles(() => ({ |
|
|
|
|
'&:hover': { |
|
|
|
|
backgroundColor: '#F6F6E8', |
|
|
|
|
}, |
|
|
|
|
paddingLeft: 0, |
|
|
|
|
}, |
|
|
|
|
anvil: { |
|
|
|
|
paddingLeft: 0, |
|
|
|
|
}, |
|
|
|
|
decorator: { |
|
|
|
|
width: '20px', |
|
|
|
|
height: '100%', |
|
|
|
|
borderRadius: 2, |
|
|
|
|
}, |
|
|
|
|
optimal: { |
|
|
|
|
backgroundColor: BLUE, |
|
|
|
|
}, |
|
|
|
|
notReady: { |
|
|
|
|
backgroundColor: PURPLE_OFF, |
|
|
|
|
}, |
|
|
|
|
degraded: { |
|
|
|
|
backgroundColor: RED_ON, |
|
|
|
|
}, |
|
|
|
|
})); |
|
|
|
|
|
|
|
|
|
const selectDecorator = ( |
|
|
|
|
state: string, |
|
|
|
|
): keyof ClassNameMap<'optimal' | 'notReady' | 'degraded'> => { |
|
|
|
|
switch (state) { |
|
|
|
|
case 'Optimal': |
|
|
|
|
return 'optimal'; |
|
|
|
|
case 'Not Ready': |
|
|
|
|
return 'notReady'; |
|
|
|
|
case 'Degraded': |
|
|
|
|
return 'degraded'; |
|
|
|
|
default: |
|
|
|
|
return 'optimal'; |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const AnvilList = ({ list }: { list: AnvilListItem[] }): JSX.Element => { |
|
|
|
|
const classes = useStyles(); |
|
|
|
|
|
|
|
|
|
return ( |
|
|
|
|
<List component="nav" className={classes.root} aria-label="mailbox folders"> |
|
|
|
|
<Divider className={classes.divider} /> |
|
|
|
|
{list.map((anvil) => { |
|
|
|
|
return ( |
|
|
|
|
<ListItem button key={anvil.anvil_uuid} className={classes.button}> |
|
|
|
|
<ListItemText |
|
|
|
|
primary={<BodyText text={anvil.anvil_name} />} |
|
|
|
|
secondary={<BodyText text={anvil.anvil_state} />} |
|
|
|
|
/> |
|
|
|
|
</ListItem> |
|
|
|
|
<> |
|
|
|
|
<Divider className={classes.divider} /> |
|
|
|
|
<ListItem button className={classes.button} key={anvil.anvil_uuid}> |
|
|
|
|
<Box display="flex" flexDirection="row" width="100%"> |
|
|
|
|
<Box p={1}> |
|
|
|
|
<div |
|
|
|
|
className={`${classes.decorator} ${ |
|
|
|
|
classes[selectDecorator(anvil.anvil_state)] |
|
|
|
|
}`}
|
|
|
|
|
/> |
|
|
|
|
</Box> |
|
|
|
|
<Box p={1} flexGrow={1} className={classes.anvil}> |
|
|
|
|
<BodyText text={anvil?.anvil_name} /> |
|
|
|
|
<BodyText text={anvil?.anvil_state || 'State unavailable'} /> |
|
|
|
|
</Box> |
|
|
|
|
</Box> |
|
|
|
|
</ListItem> |
|
|
|
|
</> |
|
|
|
|
); |
|
|
|
|
})} |
|
|
|
|
</List> |
|
|
|
|