Skip to content

Commit c1a629f

Browse files
committed
Add error handling for invalid JSON, escape characters from placeholder text
1 parent 268dd18 commit c1a629f

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

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

+11-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const API_KEY_JSON_PLACEHOLDER = `{
3333
"type": "service_account",
3434
"project_id": "fleet-in-your-calendar",
3535
"private_key_id": "<private key id>",
36-
"private_key": "-----BEGIN PRIVATE KEY-----\n<private key>\n-----END PRIVATE KEY-----\n",
36+
"private_key": "-----BEGIN PRIVATE KEY----\\n<private key>\\n-----END PRIVATE KEY-----\\n",
3737
"client_email": "fleet-calendar-events@fleet-in-your-calendar.iam.gserviceaccount.com",
3838
"client_id": "<client id>",
3939
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
@@ -103,7 +103,14 @@ const Calendars = (): JSX.Element => {
103103
errors.apiKeyJson = "API key JSON must be present";
104104
}
105105
if (!curFormData.domain && !!curFormData.apiKeyJson) {
106-
errors.apiKeyJson = "Domain must be present";
106+
errors.domain = "Domain must be present";
107+
}
108+
if (curFormData.apiKeyJson) {
109+
try {
110+
JSON.parse(curFormData.apiKeyJson);
111+
} catch (e) {
112+
errors.apiKeyJson = e.message.toString();
113+
}
107114
}
108115
return errors;
109116
};
@@ -277,6 +284,7 @@ const Calendars = (): JSX.Element => {
277284
placeholder={API_KEY_JSON_PLACEHOLDER}
278285
ignore1password
279286
inputClassName={`${baseClass}__api-key-json`}
287+
error={formErrors.apiKeyJson}
280288
/>
281289
<InputField
282290
label="Primary domain"
@@ -301,6 +309,7 @@ const Calendars = (): JSX.Element => {
301309
/>
302310
</>
303311
}
312+
error={formErrors.domain}
304313
/>
305314
<Button
306315
type="submit"

tsconfig.json

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

0 commit comments

Comments
 (0)