Files
InvenTree/src/frontend/lib/components/Boundary.tsx
T
OliverandGitHub b52980d2ed [UI] Display error information in boundary (#12403)
* Display error information in boundary

* Fix SecurityContext
2026-07-16 15:36:09 +10:00

67 lines
1.8 KiB
TypeScript

import { t } from '@lingui/core/macro';
import { Alert, Stack, Text } from '@mantine/core';
import { ErrorBoundary, type FallbackRender } from '@sentry/react';
import { IconExclamationCircle, IconInfoCircle } from '@tabler/icons-react';
import { type ReactNode, useCallback, useState } from 'react';
export function DefaultFallback({
title,
error
}: Readonly<{ title: string; error: string | null }>): ReactNode {
return (
<>
<Alert
color='red'
icon={<IconExclamationCircle />}
title={`INVE-E17: ${t`Error rendering component`}: ${title}`}
>
<Stack gap='xs'>
<Text size='sm'>
{t`An error occurred while rendering this component.`}
</Text>
<Text size='sm'>
{t`Try reloading the page, or contact your administrator if the problem persists.`}
</Text>
</Stack>
</Alert>
{error && (
<Alert color='red' icon={<IconInfoCircle />} title={t`Error Details`}>
<Text size='sm'>{error}</Text>
</Alert>
)}
</>
);
}
export function Boundary({
children,
label,
fallback
}: Readonly<{
children: ReactNode;
label: string;
fallback?: React.ReactElement<any> | FallbackRender;
}>): ReactNode {
const [errorMessage, setErrorMessage] = useState<string | null>(null);
const onError = useCallback(
(error: unknown, componentStack: string | undefined, eventId: string) => {
console.error(`ERR: Error rendering component: ${label}`);
console.error(error);
setErrorMessage(error instanceof Error ? error.message : String(error));
},
[]
);
return (
<ErrorBoundary
fallback={
fallback ?? <DefaultFallback title={label} error={errorMessage} />
}
onError={onError}
>
{children}
</ErrorBoundary>
);
}