Browse Source

Add error boundary to Auth modal. For #2811

pull/2815/head
Gabe Kangas 2 years ago
parent
commit
85d54926ee
No known key found for this signature in database
GPG Key ID: 4345B2060657F330
  1. 13
      web/components/modals/AuthModal/AuthModal.tsx

13
web/components/modals/AuthModal/AuthModal.tsx

@ -1,6 +1,7 @@
import { Tabs } from 'antd'; import { Tabs } from 'antd';
import { useRecoilValue } from 'recoil'; import { useRecoilValue } from 'recoil';
import { FC } from 'react'; import { FC } from 'react';
import { ErrorBoundary } from 'react-error-boundary';
import { IndieAuthModal } from '../IndieAuthModal/IndieAuthModal'; import { IndieAuthModal } from '../IndieAuthModal/IndieAuthModal';
import { FediAuthModal } from '../FediAuthModal/FediAuthModal'; import { FediAuthModal } from '../FediAuthModal/FediAuthModal';
@ -12,6 +13,7 @@ import {
clientConfigStateAtom, clientConfigStateAtom,
} from '../../stores/ClientConfigStore'; } from '../../stores/ClientConfigStore';
import { ClientConfig } from '../../../interfaces/client-config.model'; import { ClientConfig } from '../../../interfaces/client-config.model';
import { ComponentError } from '../../ui/ComponentError/ComponentError';
export type AuthModalProps = { export type AuthModalProps = {
forceTabs?: boolean; forceTabs?: boolean;
@ -66,6 +68,16 @@ export const AuthModal: FC<AuthModalProps> = ({ forceTabs }) => {
]; ];
return ( return (
<ErrorBoundary
// eslint-disable-next-line react/no-unstable-nested-components
fallbackRender={({ error, resetErrorBoundary }) => (
<ComponentError
componentName="ChatContainer"
message={error.message}
retryFunction={resetErrorBoundary}
/>
)}
>
<div> <div>
<Tabs <Tabs
defaultActiveKey="1" defaultActiveKey="1"
@ -75,5 +87,6 @@ export const AuthModal: FC<AuthModalProps> = ({ forceTabs }) => {
renderTabBar={fediverseEnabled || forceTabs ? null : () => null} renderTabBar={fediverseEnabled || forceTabs ? null : () => null}
/> />
</div> </div>
</ErrorBoundary>
); );
}; };

Loading…
Cancel
Save