|
|
|
@ -2,8 +2,17 @@ import { Grid } from '@material-ui/core'; |
|
|
|
|
import Panel from './Panel'; |
|
|
|
|
import AllocationBar from './AllocationBar'; |
|
|
|
|
import { HeaderText, BodyText } from './Text'; |
|
|
|
|
import PeriodicFetch from '../lib/fetchers/periodicFetch'; |
|
|
|
|
|
|
|
|
|
const CPU = ({ uuid }: { uuid: string }): JSX.Element => { |
|
|
|
|
const { data, isLoading } = PeriodicFetch( |
|
|
|
|
`${process.env.NEXT_PUBLIC_API_URL}/anvils/get_cpu?anvil_uuid=`, |
|
|
|
|
uuid, |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
const cpuData = |
|
|
|
|
isLoading || !data ? { allocated: 0, cores: 0, threads: 0 } : data; |
|
|
|
|
|
|
|
|
|
const CPU = (): JSX.Element => { |
|
|
|
|
return ( |
|
|
|
|
<Panel> |
|
|
|
|
<Grid container alignItems="center" justify="space-around"> |
|
|
|
@ -11,19 +20,21 @@ const CPU = (): JSX.Element => { |
|
|
|
|
<HeaderText text="CPU" /> |
|
|
|
|
</Grid> |
|
|
|
|
<Grid item xs={3}> |
|
|
|
|
<BodyText text="Allocated: 3" /> |
|
|
|
|
<BodyText text={`Allocated: ${cpuData.allocated}`} /> |
|
|
|
|
</Grid> |
|
|
|
|
<Grid item xs={3}> |
|
|
|
|
<BodyText text="Free: 6" /> |
|
|
|
|
<BodyText text={`Free: ${cpuData.cores - cpuData.allocated}`} /> |
|
|
|
|
</Grid> |
|
|
|
|
<Grid item xs={10}> |
|
|
|
|
<AllocationBar allocated={50} /> |
|
|
|
|
<AllocationBar |
|
|
|
|
allocated={(cpuData.allocated / cpuData.cores) * 100} |
|
|
|
|
/> |
|
|
|
|
</Grid> |
|
|
|
|
<Grid item xs={5}> |
|
|
|
|
<BodyText text="Total Cores: 9" /> |
|
|
|
|
<Grid item xs={10}> |
|
|
|
|
<BodyText text={`Total Cores: ${cpuData.cores}`} /> |
|
|
|
|
</Grid> |
|
|
|
|
<Grid item xs={12}> |
|
|
|
|
<BodyText text="Threads: 16" /> |
|
|
|
|
<BodyText text={`Threads: ${cpuData.threads}`} /> |
|
|
|
|
</Grid> |
|
|
|
|
</Grid> |
|
|
|
|
</Panel> |
|
|
|
|