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.
42 lines
1.1 KiB
42 lines
1.1 KiB
import { useContext, useMemo } from 'react'; |
|
|
|
import { AnvilContext } from './AnvilContext'; |
|
import FlexBox from './FlexBox'; |
|
import { Panel, PanelHeader } from './Panels'; |
|
import periodicFetch from '../lib/fetchers/periodicFetch'; |
|
import Spinner from './Spinner'; |
|
import { HeaderText, BodyText } from './Text'; |
|
|
|
const CPU = (): JSX.Element => { |
|
const { uuid } = useContext(AnvilContext); |
|
|
|
const { data: { allocated = 0, cores = 0, threads = 0 } = {}, isLoading } = |
|
periodicFetch<AnvilCPU>( |
|
`${process.env.NEXT_PUBLIC_API_URL}/get_cpu?anvil_uuid=${uuid}`, |
|
); |
|
|
|
const contentAreaElement = useMemo( |
|
() => |
|
isLoading ? ( |
|
<Spinner /> |
|
) : ( |
|
<FlexBox spacing={0}> |
|
<BodyText text={`Total Cores: ${cores}`} /> |
|
<BodyText text={`Total Threads: ${threads}`} /> |
|
<BodyText text={`Allocated Cores: ${allocated}`} /> |
|
</FlexBox> |
|
), |
|
[allocated, cores, isLoading, threads], |
|
); |
|
|
|
return ( |
|
<Panel> |
|
<PanelHeader> |
|
<HeaderText text="CPU" /> |
|
</PanelHeader> |
|
{contentAreaElement} |
|
</Panel> |
|
); |
|
}; |
|
|
|
export default CPU;
|
|
|