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 API_BASE_URL from '../lib/consts/API_BASE_URL'; |
|
|
|
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>(`${API_BASE_URL}/anvil/${uuid}/cpu`); |
|
|
|
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;
|
|
|