|
|
|
@ -1,12 +1,8 @@
|
|
|
|
|
import { useTranslation } from "next-i18next";
|
|
|
|
|
|
|
|
|
|
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 { t } = useTranslation();
|
|
|
|
|
|
|
|
|
|
const { widget } = service;
|
|
|
|
|
|
|
|
|
|
const { data: containersData, error: containersError } = useWidgetAPI(widget, "docker/containers/json", {
|
|
|
|
@ -27,8 +23,9 @@ export default function Component({ service }) {
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (containersData.error) {
|
|
|
|
|
return <Container service={service} error={t("widget.api_error")} />;
|
|
|
|
|
if (containersData.error || containersData.message) {
|
|
|
|
|
// containersData can be itself an error object e.g. if environment fails
|
|
|
|
|
return <Container service={service} error={ containersData?.error ?? containersData } />;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const running = containersData.filter((c) => c.State === "running").length;
|
|
|
|
|