mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-27 08:50:56 +01:00
* feat: add pi hole summary integration * feat: add pi hole summary widget * fix: type issues with integrations and integrationIds * feat: add middleware for integrations and improve cache redis channel * feat: add error boundary for widgets * fix: broken lock file * fix: format format issues * fix: typecheck issue * fix: deepsource issues * fix: widget sandbox without error boundary * chore: address pull request feedback * chore: remove todo comment and created issue * fix: format issues * fix: deepsource issue
37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
import Link from "next/link";
|
|
import { Anchor, Button, Stack, Text } from "@mantine/core";
|
|
|
|
import type { stringOrTranslation } from "@homarr/translation";
|
|
import { translateIfNecessary } from "@homarr/translation";
|
|
import { useI18n } from "@homarr/translation/client";
|
|
import type { TablerIcon } from "@homarr/ui";
|
|
|
|
interface BaseWidgetErrorProps {
|
|
icon: TablerIcon;
|
|
message: stringOrTranslation;
|
|
showLogsLink?: boolean;
|
|
onRetry: () => void;
|
|
}
|
|
|
|
export const BaseWidgetError = (props: BaseWidgetErrorProps) => {
|
|
const t = useI18n();
|
|
|
|
return (
|
|
<Stack h="100%" align="center" justify="center" gap="md">
|
|
<props.icon size={40} />
|
|
<Stack gap={0}>
|
|
<Text ta="center">{translateIfNecessary(t, props.message)}</Text>
|
|
{props.showLogsLink && (
|
|
<Anchor component={Link} href="/manage/tools/logs" target="_blank" ta="center" size="sm">
|
|
{t("widget.common.error.action.logs")}
|
|
</Anchor>
|
|
)}
|
|
</Stack>
|
|
|
|
<Button onClick={props.onRetry} size="sm" variant="light">
|
|
{t("common.action.tryAgain")}
|
|
</Button>
|
|
</Stack>
|
|
);
|
|
};
|