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.
28 lines
744 B
28 lines
744 B
import { Panel } from '../Panels'; |
|
import PeriodicFetch from '../../lib/fetchers/periodicFetch'; |
|
import SelectedAnvil from './SelectedAnvil'; |
|
import AnvilList from './AnvilList'; |
|
|
|
import sortAnvils from './sortAnvils'; |
|
|
|
const Anvils = ({ list }: { list: AnvilList | undefined }): JSX.Element => { |
|
const anvils: AnvilListItem[] = []; |
|
|
|
list?.anvils.forEach((anvil: AnvilListItem) => { |
|
const { data } = PeriodicFetch<AnvilStatus>( |
|
`${process.env.NEXT_PUBLIC_API_URL}/get_status?anvil_uuid=${anvil.anvil_uuid}`, |
|
); |
|
anvils.push({ |
|
...anvil, |
|
...data, |
|
}); |
|
}); |
|
return ( |
|
<Panel> |
|
<SelectedAnvil list={anvils} /> |
|
<AnvilList list={sortAnvils(anvils)} /> |
|
</Panel> |
|
); |
|
}; |
|
|
|
export default Anvils;
|
|
|