Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: introduce proper error boundary #2582

Merged
merged 1 commit into from
Mar 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"re-resizable": "^6.9.11",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.12",
"react-hot-toast": "^2.4.1",
"react-hotkeys-hook": "^4.5.0",
"react-redux": "^9.1.0",
Expand Down
1 change: 1 addition & 0 deletions renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
'prettier',
'prop-types',
'proxy-memoize',
'react-error-boundary',
'react-hot-toast',
'react-hotkeys-hook',
'react-virtuoso',
Expand Down
6 changes: 6 additions & 0 deletions src/ElectronBackend/main/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,12 @@ export async function main(): Promise<void> {
},
);

ipcMain.handle(IpcChannel.Quit, () => {
mainWindow.close();
});
ipcMain.handle(IpcChannel.Relaunch, () => {
mainWindow.reload();
});
ipcMain.handle(
IpcChannel.ConvertInputFile,
getConvertInputFileToDotOpossumAndOpenListener(mainWindow),
Expand Down
2 changes: 2 additions & 0 deletions src/ElectronBackend/preload.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ import { IpcChannel } from '../shared/ipc-channels';
import { ElectronAPI } from '../shared/shared-types';

const electronAPI: ElectronAPI = {
quit: () => ipcRenderer.invoke(IpcChannel.Quit),
relaunch: () => ipcRenderer.invoke(IpcChannel.Relaunch),
openLink: (link) => ipcRenderer.invoke(IpcChannel.OpenLink, { link }),
openFile: () => ipcRenderer.invoke(IpcChannel.OpenFile),
deleteFile: () => ipcRenderer.invoke(IpcChannel.DeleteFile),
Expand Down
23 changes: 12 additions & 11 deletions src/Frontend/Components/App/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
// SPDX-License-Identifier: Apache-2.0
import '@fontsource-variable/karla';
import { StyledEngineProvider, ThemeProvider } from '@mui/material/styles';
import { ErrorBoundary } from 'react-error-boundary';

import { View } from '../../enums/enums';
import { useAppSelector } from '../../state/hooks';
Expand All @@ -12,7 +13,7 @@ import { getSelectedView } from '../../state/selectors/view-selector';
import { usePanelSizes } from '../../state/variables/use-panel-sizes';
import { useSignalsWorker } from '../../web-workers/use-signals-worker';
import { AuditView } from '../AuditView/AuditView';
import { ErrorBoundary } from '../ErrorBoundary/ErrorBoundary';
import { ErrorFallback } from '../ErrorFallback/ErrorFallback';
import { GlobalPopup } from '../GlobalPopup/GlobalPopup';
import { ProcessPopup } from '../ProcessPopup/ProcessPopup';
import { ReportView } from '../ReportView/ReportView';
Expand All @@ -32,18 +33,18 @@ export function App() {
usePanelSizes(); // pre-hydrate size of panels

return (
<ErrorBoundary>
<StyledEngineProvider injectFirst>
<ThemeProvider theme={theme}>
<GlobalPopup />
<ProcessPopup />
<ViewContainer>
<StyledEngineProvider injectFirst>
<ThemeProvider theme={theme}>
<ViewContainer>
<ErrorBoundary FallbackComponent={ErrorFallback}>
<GlobalPopup />
<ProcessPopup />
<TopBar />
{renderView()}
</ViewContainer>
</ThemeProvider>
</StyledEngineProvider>
</ErrorBoundary>
</ErrorBoundary>
</ViewContainer>
</ThemeProvider>
</StyledEngineProvider>
);

function renderView() {
Expand Down
110 changes: 0 additions & 110 deletions src/Frontend/Components/ErrorBoundary/ErrorBoundary.tsx

This file was deleted.

This file was deleted.

22 changes: 22 additions & 0 deletions src/Frontend/Components/ErrorFallback/ErrorFallback.style.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// SPDX-FileCopyrightText: Meta Platforms, Inc. and its affiliates
// SPDX-FileCopyrightText: TNG Technology Consulting GmbH <https://www.tngtech.com>
//
// SPDX-License-Identifier: Apache-2.0
import { styled } from '@mui/material';

export const Container = styled('div')({
display: 'flex',
flexDirection: 'row',
height: '100%',
width: '100%',
alignItems: 'center',
justifyContent: 'center',
});

export const TextContainer = styled('div')({
display: 'flex',
flexDirection: 'column',
gap: '20px',
width: 'fit-content',
maxWidth: '600px',
});
52 changes: 52 additions & 0 deletions src/Frontend/Components/ErrorFallback/ErrorFallback.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
// SPDX-FileCopyrightText: Meta Platforms, Inc. and its affiliates
// SPDX-FileCopyrightText: TNG Technology Consulting GmbH <https://www.tngtech.com>
//
// SPDX-License-Identifier: Apache-2.0
import MuiButton from '@mui/material/Button';
import MuiButtonGroup from '@mui/material/ButtonGroup';
import MuiTypography from '@mui/material/Typography';
import { FallbackProps } from 'react-error-boundary';

import { text } from '../../../shared/text';
import { OpossumColors } from '../../shared-styles';
import { Container, TextContainer } from './ErrorFallback.style';

export const ErrorFallback: React.FC<FallbackProps> = ({
error,
resetErrorBoundary,
}) => {
return (
<Container>
<TextContainer role="alert">
<MuiTypography textAlign={'center'} variant={'h6'}>
{text.errorBoundary.unexpectedError}
</MuiTypography>
<MuiTypography
sx={{ fontFamily: 'monospace' }}
color={OpossumColors.red}
>
{error.message}
</MuiTypography>
<MuiButtonGroup fullWidth variant={'contained'}>
<MuiButton
color={'primary'}
onClick={() => {
resetErrorBoundary();
window.electronAPI.relaunch();
}}
>
{text.errorBoundary.relaunch}
</MuiButton>
<MuiButton
color={'secondary'}
onClick={() => {
window.electronAPI.quit();
}}
>
{text.errorBoundary.quit}
</MuiButton>
</MuiButtonGroup>
</TextContainer>
</Container>
);
};
2 changes: 2 additions & 0 deletions src/shared/ipc-channels.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ export enum IpcChannel {
OpenDotOpossumFile = 'open-dot-opossum-file',
GetUserSettings = 'get-user-settings',
SetUserSettings = 'set-user-settings',
Quit = 'quit',
Relaunch = 'relaunch',
}

export enum AllowedFrontendChannels {
Expand Down
2 changes: 2 additions & 0 deletions src/shared/shared-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,8 @@ export interface FileSupportPopupArgs {
export type Listener = (event: IpcRendererEvent, ...args: Array<any>) => void;

export interface ElectronAPI {
quit: () => void;
relaunch: () => void;
openLink: (link: string) => Promise<unknown>;
openFile: () => Promise<unknown>;
deleteFile: () => Promise<unknown>;
Expand Down
5 changes: 5 additions & 0 deletions src/shared/text.ts
Original file line number Diff line number Diff line change
Expand Up @@ -229,4 +229,9 @@ export const text = {
applyChanges: 'Apply changes',
revertAll: 'Revert all',
},
errorBoundary: {
unexpectedError: "We're sorry, an unexpected error occurred!",
relaunch: 'Relaunch App',
quit: 'Quit App',
},
} as const;
2 changes: 2 additions & 0 deletions src/testing/setup-tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ class ResizeObserver {
}

global.window.electronAPI = {
quit: jest.fn(),
relaunch: jest.fn(),
openLink: jest.fn().mockReturnValue(Promise.resolve()),
openFile: jest.fn(),
deleteFile: jest.fn(),
Expand Down
12 changes: 12 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9910,6 +9910,7 @@ __metadata:
re-resizable: "npm:^6.9.11"
react: "npm:^18.2.0"
react-dom: "npm:^18.2.0"
react-error-boundary: "npm:^4.0.12"
react-hot-toast: "npm:^2.4.1"
react-hotkeys-hook: "npm:^4.5.0"
react-redux: "npm:^9.1.0"
Expand Down Expand Up @@ -10456,6 +10457,17 @@ __metadata:
languageName: node
linkType: hard

"react-error-boundary@npm:^4.0.12":
version: 4.0.12
resolution: "react-error-boundary@npm:4.0.12"
dependencies:
"@babel/runtime": "npm:^7.12.5"
peerDependencies:
react: ">=16.13.1"
checksum: 10/ba59f885eae3c3786548086c6c2088a9f511080c4052e778017959e9e0b6461892efdcf58fcfc2b3a6bc3e79e17cf842fc8ccdc6d82698c51c2ccab12c8c0b85
languageName: node
linkType: hard

"react-hot-toast@npm:^2.4.1":
version: 2.4.1
resolution: "react-hot-toast@npm:2.4.1"
Expand Down
Loading