refactor: remove Grid in favour of Box component

main
Josue 4 years ago committed by Tsu-ba-me
parent 9f59f54315
commit b496e8b847
  1. 34
      striker-ui/components/SharedStorage.tsx
  2. 63
      striker-ui/components/SharedStorageNode.tsx

@ -1,36 +1,26 @@
import { Grid } from '@material-ui/core';
import Panel from './Panel'; import Panel from './Panel';
import SharedStorageNode from './SharedStorageNode'; import SharedStorageNode from './SharedStorageNode';
import { HeaderText, BodyText } from './Text'; import { HeaderText } from './Text';
import PeriodicFetch from '../lib/fetchers/periodicFetch'; import PeriodicFetch from '../lib/fetchers/periodicFetch';
const SharedStorage = ({ anvil }: { anvil: AnvilListItem }): JSX.Element => { const SharedStorage = ({ anvil }: { anvil: AnvilListItem }): JSX.Element => {
const { data } = PeriodicFetch<AnvilSharedStorage>( const { data } = PeriodicFetch<AnvilSharedStorage>(
`${process.env.NEXT_PUBLIC_API_URL}/anvils/get_shared_storage?anvil_uuid=`, `${process.env.NEXT_PUBLIC_API_URL}/anvils/get_shared_storage?anvil_uuid=`,
anvil.anvil_uuid, anvil?.anvil_uuid,
); );
return ( return (
<Panel> <Panel>
<Grid container alignItems="center" justify="space-around"> <HeaderText text="Shared Storage" />
<Grid item xs={12}> {data &&
<HeaderText text="Shared Storage" /> data.file_systems[0]?.nodes.map(
</Grid> (node: AnvilSharedStorageNode, index: number): JSX.Element => (
<Grid item xs={12}> <SharedStorageNode
<BodyText text="Mount /mnt/shared" /> node={{ ...node, nodeInfo: anvil.nodes[index] }}
</Grid> key={anvil.nodes[index].node_uuid}
<Grid item xs={12}> />
{data && ),
data.file_systems[0]?.nodes.map( )}
(node: AnvilSharedStorageNode, index: number): JSX.Element => (
<SharedStorageNode
node={{ ...node, nodeInfo: anvil.nodes[index] }}
key={anvil.nodes[index].node_uuid}
/>
),
)}
</Grid>
</Grid>
</Panel> </Panel>
); );
}; };

@ -1,4 +1,6 @@
import { Grid, Switch } from '@material-ui/core'; import { Box } from '@material-ui/core';
import { makeStyles } from '@material-ui/core/styles';
import * as prettyBytes from 'pretty-bytes'; import * as prettyBytes from 'pretty-bytes';
import InnerPanel from './InnerPanel'; import InnerPanel from './InnerPanel';
@ -6,51 +8,64 @@ import { AllocationBar } from './Bars';
import { BodyText } from './Text'; import { BodyText } from './Text';
import PanelHeader from './PanelHeader'; import PanelHeader from './PanelHeader';
const useStyles = makeStyles(() => ({
fs: {
paddingLeft: '10px',
paddingRight: '10px',
paddingTop: '20px',
},
bar: {
paddingLeft: '10px',
paddingRight: '10px',
},
}));
const SharedStorageNode = ({ const SharedStorageNode = ({
node, node,
}: { }: {
node: AnvilSharedStorageNode; node: AnvilSharedStorageNode;
}): JSX.Element => { }): JSX.Element => {
const classes = useStyles();
return ( return (
<InnerPanel> <InnerPanel>
<PanelHeader> <PanelHeader>
<Grid container alignItems="center" justify="space-around"> <Box display="flex" width="100%">
<Grid item xs={6}> <Box>
<BodyText text={`Node: ${node.nodeInfo?.node_name}`} /> <BodyText text={node.nodeInfo?.node_name} />
</Grid> </Box>
<Grid item xs={3}> </Box>
<Switch checked={node.is_mounted} />
</Grid>
</Grid>
</PanelHeader> </PanelHeader>
<Grid container alignItems="center" justify="space-around"> <Box display="flex" width="100%" className={classes.fs}>
<Grid item xs={4}> <Box flexGrow={1}>
<BodyText <BodyText
text={`Used: ${prettyBytes.default(node.total - node.free, { text={`Used: ${prettyBytes.default(node.total - node.free, {
binary: true, binary: true,
})}`} })}`}
/> />
</Grid> </Box>
<Grid item xs={4}> <Box>
<BodyText <BodyText
text={`Free: ${prettyBytes.default(node.free, { text={`Free: ${prettyBytes.default(node.free, {
binary: true, binary: true,
})}`} })}`}
/> />
</Grid> </Box>
<Grid item xs={10}> </Box>
<Box display="flex" width="100%" className={classes.bar}>
<Box flexGrow={1}>
<AllocationBar <AllocationBar
allocated={((node.total - node.free) / node.total) * 100} allocated={((node.total - node.free) / node.total) * 100}
/> />
</Grid> </Box>
<Grid item xs={6}> </Box>
<BodyText <Box display="flex" justifyContent="center" width="100%">
text={`Total Storage: ${prettyBytes.default(node.total, { <BodyText
binary: true, text={`Total Storage: ${prettyBytes.default(node.total, {
})}`} binary: true,
/> })}`}
</Grid> />
</Grid> </Box>
</InnerPanel> </InnerPanel>
); );
}; };

Loading…
Cancel
Save