mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-03 22:13:39 +01:00
47 lines
1.7 KiB
React
47 lines
1.7 KiB
React
![]() |
import useSWR from "swr";
|
||
|
import { useTranslation } from "next-i18next";
|
||
|
|
||
|
import Widget from "components/services/widgets/widget";
|
||
|
import Block from "components/services/widgets/block";
|
||
|
import { formatProxyUrl } from "utils/api-helpers";
|
||
|
|
||
|
export default function Component({ service }) {
|
||
|
const { t } = useTranslation();
|
||
|
|
||
|
const config = service.widget;
|
||
|
|
||
|
const { data: usersData, error: usersError } = useSWR(formatProxyUrl(config, "users"));
|
||
|
const { data: loginsData, error: loginsError } = useSWR(formatProxyUrl(config, "login"));
|
||
|
const { data: failedLoginsData, error: failedLoginsError } = useSWR(formatProxyUrl(config, "login_failed"));
|
||
|
|
||
|
if (usersError || loginsError || failedLoginsError) {
|
||
|
return <Widget error={t("widget.api_error")} />;
|
||
|
}
|
||
|
|
||
|
if (!usersData || !loginsData || !failedLoginsData) {
|
||
|
return (
|
||
|
<Widget>
|
||
|
<Block label={t("authentik.users")} />
|
||
|
<Block label={t("authentik.loginsLast24H")} />
|
||
|
<Block label={t("authentik.failedLoginsLast24H")} />
|
||
|
</Widget>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
const yesterday = new Date(Date.now()).setHours(-24);
|
||
|
const loginsLast24H = loginsData.reduce(
|
||
|
(total, current) => current.x_cord >= yesterday ? total + current.y_cord : total
|
||
|
, 0);
|
||
|
const failedLoginsLast24H = failedLoginsData.reduce(
|
||
|
(total, current) => current.x_cord >= yesterday ? total + current.y_cord : total
|
||
|
, 0);
|
||
|
|
||
|
return (
|
||
|
<Widget>
|
||
|
<Block label={t("authentik.users")} value={t("common.number", { value: usersData.pagination.count })} />
|
||
|
<Block label={t("authentik.loginsLast24H")} value={t("common.number", { value: loginsLast24H })} />
|
||
|
<Block label={t("authentik.failedLoginsLast24H")} value={t("common.number", { value: failedLoginsLast24H })} />
|
||
|
</Widget>
|
||
|
);
|
||
|
}
|