2023-04-27 19:21:57 +01:00
|
|
|
import Container from "components/services/widget/container";
|
|
|
|
import Block from "components/services/widget/block";
|
|
|
|
import useWidgetAPI from "utils/proxy/use-widget-api";
|
|
|
|
|
|
|
|
export default function Component({ service }) {
|
|
|
|
const { widget } = service;
|
|
|
|
|
|
|
|
const { data: containersData, error: containersError } = useWidgetAPI(widget, "containers");
|
2023-10-17 23:26:55 -07:00
|
|
|
|
2023-04-27 19:21:57 +01:00
|
|
|
if (containersError) {
|
2023-04-30 19:09:37 -04:00
|
|
|
return <Container service={service} error={containersError} />;
|
2023-04-27 19:21:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!containersData) {
|
|
|
|
return (
|
|
|
|
<Container service={service}>
|
|
|
|
<Block label="whatsupdocker.monitoring" />
|
|
|
|
<Block label="whatsupdocker.updates" />
|
|
|
|
</Container>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
const totalCount = containersData.length;
|
2023-10-17 23:26:55 -07:00
|
|
|
const updatesAvailable = containersData.filter((container) => container.updateAvailable).length;
|
2023-04-27 19:21:57 +01:00
|
|
|
|
|
|
|
return (
|
|
|
|
<Container service={service}>
|
|
|
|
<Block label="whatsupdocker.monitoring" value={totalCount} />
|
|
|
|
<Block label="whatsupdocker.updates" value={updatesAvailable} />
|
|
|
|
</Container>
|
|
|
|
);
|
|
|
|
}
|