You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
2.0 KiB
65 lines
2.0 KiB
import { useContext } from 'react'; |
|
|
|
import { Box } from '@material-ui/core'; |
|
import { makeStyles } from '@material-ui/core/styles'; |
|
import { BodyText, HeaderText } from './Text'; |
|
import Panel from './Panel'; |
|
import SharedStorageNode from './SharedStorageNode'; |
|
import InnerPanel from './InnerPanel'; |
|
import PanelHeader from './PanelHeader'; |
|
import PeriodicFetch from '../lib/fetchers/periodicFetch'; |
|
import { AnvilContext } from './AnvilContext'; |
|
|
|
const useStyles = makeStyles(() => ({ |
|
header: { |
|
paddingTop: '3px', |
|
paddingRight: '10px', |
|
}, |
|
})); |
|
|
|
const SharedStorage = ({ anvil }: { anvil: AnvilListItem[] }): JSX.Element => { |
|
const classes = useStyles(); |
|
const { uuid } = useContext(AnvilContext); |
|
const { data } = PeriodicFetch<AnvilSharedStorage>( |
|
`${process.env.NEXT_PUBLIC_API_URL}/anvils/get_shared_storage?anvil_uuid=`, |
|
uuid, |
|
); |
|
return ( |
|
<Panel> |
|
<HeaderText text="Shared Storage" /> |
|
{data?.file_systems && |
|
data.file_systems.map( |
|
(fs: AnvilSharedStorageFileSystem): JSX.Element => ( |
|
<InnerPanel key={fs.mount_point}> |
|
<PanelHeader> |
|
<Box display="flex" width="100%" className={classes.header}> |
|
<Box> |
|
<BodyText text={fs.mount_point} /> |
|
</Box> |
|
</Box> |
|
</PanelHeader> |
|
{fs?.nodes && |
|
fs.nodes.map( |
|
( |
|
node: AnvilSharedStorageNode, |
|
index: number, |
|
): JSX.Element => ( |
|
<SharedStorageNode |
|
node={{ |
|
...node, |
|
nodeInfo: |
|
anvil[anvil.findIndex((a) => a.anvil_uuid === uuid)] |
|
.nodes[index], |
|
}} |
|
key={fs.nodes[index].free} |
|
/> |
|
), |
|
)} |
|
</InnerPanel> |
|
), |
|
)} |
|
</Panel> |
|
); |
|
}; |
|
|
|
export default SharedStorage;
|
|
|