mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-06 20:28:48 +00:00
36 lines
1.1 KiB
JavaScript
36 lines
1.1 KiB
JavaScript
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: komgaData, error: komgaError } = useWidgetAPI(widget);
|
|
|
|
if (komgaError) {
|
|
return <Container service={service} error={komgaError} />;
|
|
}
|
|
|
|
if (!komgaData) {
|
|
return (
|
|
<Container service={service}>
|
|
<Block label="komga.libraries" />
|
|
<Block label="komga.series" />
|
|
<Block label="komga.books" />
|
|
</Container>
|
|
);
|
|
}
|
|
|
|
const { libraries: libraryData, series: seriesData, books: bookData } = komgaData;
|
|
|
|
return (
|
|
<Container service={service}>
|
|
<Block label="komga.libraries" value={t("common.number", { value: libraryData.length })} />
|
|
<Block label="komga.series" value={t("common.number", { value: seriesData.totalElements })} />
|
|
<Block label="komga.books" value={t("common.number", { value: bookData.totalElements })} />
|
|
</Container>
|
|
);
|
|
}
|