mirror of
https://github.com/gethomepage/homepage.git
synced 2025-12-06 21:57:48 +01:00
37 lines
1.1 KiB
JavaScript
37 lines
1.1 KiB
JavaScript
import Block from "components/services/widget/block";
|
|
import Container from "components/services/widget/container";
|
|
|
|
import useWidgetAPI from "utils/proxy/use-widget-api";
|
|
|
|
export default function Component({ service }) {
|
|
const { widget } = service;
|
|
|
|
const { data: spaceData, error: spaceError } = useWidgetAPI(widget, "space");
|
|
const { data: keywordData, error: keywordError } = useWidgetAPI(widget, "keyword");
|
|
|
|
if (spaceError || keywordError) {
|
|
const finalError = spaceError ?? keywordError;
|
|
return <Container service={service} error={finalError} />;
|
|
}
|
|
|
|
if (!spaceData || !keywordData) {
|
|
return (
|
|
<Container service={service}>
|
|
<Block label="tandoor.users" />
|
|
<Block label="tandoor.recipes" />
|
|
<Block label="tandoor.keywords" />
|
|
</Container>
|
|
);
|
|
}
|
|
|
|
const space = spaceData.results ? spaceData.results[0] : spaceData[0];
|
|
|
|
return (
|
|
<Container service={service}>
|
|
<Block label="tandoor.users" value={space?.user_count} />
|
|
<Block label="tandoor.recipes" value={space?.recipe_count} />
|
|
<Block label="tandoor.keywords" value={keywordData.count} />
|
|
</Container>
|
|
);
|
|
}
|