diff --git a/striker-ui/components/CPU.tsx b/striker-ui/components/CPU.tsx index 2be7fabb..ada734c7 100644 --- a/striker-ui/components/CPU.tsx +++ b/striker-ui/components/CPU.tsx @@ -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 ( @@ -11,19 +20,21 @@ const CPU = (): JSX.Element => { - + - + - + - - + + - +