import { makeStyles } from '@material-ui/core/styles'; import { ClassNameMap } from '@material-ui/styles'; import { List, Box, Divider, ListItem } from '@material-ui/core'; import { BLUE, PURPLE_OFF, RED_ON, TEXT, HOVER, } from '../../lib/consts/DEFAULT_THEME'; import Anvil from './Anvil'; const useStyles = makeStyles(() => ({ root: { width: '100%', }, divider: { background: TEXT, }, button: { '&:hover': { backgroundColor: HOVER, }, 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.map((anvil) => { return ( <>
); })} ); }; export default AnvilList;