mirror of
https://github.com/karl0ss/homepage.git
synced 2025-04-29 12:03:41 +01:00
36 lines
1013 B
JavaScript
36 lines
1013 B
JavaScript
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: infoData, error: infoError } = useWidgetAPI(widget, "nginx/proxy-hosts");
|
|
|
|
if (infoError) {
|
|
return <Container error={infoError} />;
|
|
}
|
|
|
|
if (!infoData) {
|
|
return (
|
|
<Container service={service}>
|
|
<Block label="npm.enabled" />
|
|
<Block label="npm.disabled" />
|
|
<Block label="npm.total" />
|
|
</Container>
|
|
);
|
|
}
|
|
|
|
const enabled = infoData.filter((c) => c.enabled === 1).length;
|
|
const disabled = infoData.filter((c) => c.enabled === 0).length;
|
|
const total = infoData.length;
|
|
|
|
return (
|
|
<Container service={service}>
|
|
<Block label="npm.enabled" value={enabled} />
|
|
<Block label="npm.disabled" value={disabled} />
|
|
<Block label="npm.total" value={total} />
|
|
</Container>
|
|
);
|
|
}
|