Skip to content

Commit 53a7ab1

Browse files
committed
Refactor error handling to not be global
1 parent 5380129 commit 53a7ab1

File tree

2 files changed

+17
-4
lines changed

2 files changed

+17
-4
lines changed

frontend/pages/admin/IntegrationsPage/cards/Calendars/Calendars.tsx

+16-2
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,16 @@ interface ICalendarsFormData {
5858
apiKeyJson?: string;
5959
}
6060

61+
// Used to surface error.message in UI of unknown error type
62+
type ErrorWithMessage = {
63+
message: string;
64+
[key: string]: unknown;
65+
};
66+
67+
const isErrorWithMessage = (error: unknown): error is ErrorWithMessage => {
68+
return (error as ErrorWithMessage).message !== undefined;
69+
};
70+
6171
const baseClass = "calendars-integration";
6272

6373
const Calendars = (): JSX.Element => {
@@ -108,8 +118,12 @@ const Calendars = (): JSX.Element => {
108118
if (curFormData.apiKeyJson) {
109119
try {
110120
JSON.parse(curFormData.apiKeyJson);
111-
} catch (e) {
112-
errors.apiKeyJson = e.message.toString();
121+
} catch (e: unknown) {
122+
if (isErrorWithMessage(e)) {
123+
errors.apiKeyJson = e.message.toString();
124+
} else {
125+
throw e;
126+
}
113127
}
114128
}
115129
return errors;

tsconfig.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
"jsx": "react",
88
"allowSyntheticDefaultImports": true,
99
"resolveJsonModule": true,
10-
"lib": ["ES2021.String"],
11-
"useUnknownInCatchVariables": false
10+
"lib": ["ES2021.String"]
1211
},
1312
"include": ["./frontend/**/*"],
1413
"exclude": ["node_modules"],

0 commit comments

Comments
 (0)