Skip to content

Commit 8f63492

Browse files
committed
Change to async await, code cleanup
1 parent 5d3d23e commit 8f63492

File tree

2 files changed

+32
-37
lines changed

2 files changed

+32
-37
lines changed

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

+26-31
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ const Calendars = (): JSX.Element => {
117117
[formData]
118118
);
119119

120-
const onFormSubmit = (evt: React.MouseEvent<HTMLFormElement>) => {
120+
const onFormSubmit = async (evt: React.MouseEvent<HTMLFormElement>) => {
121121
setIsUpdatingSettings(true);
122122

123123
evt.preventDefault();
@@ -140,21 +140,18 @@ const Calendars = (): JSX.Element => {
140140
google_calendar: formDataToSubmit,
141141
};
142142

143-
configAPI
144-
.update({ integrations: destination })
145-
.then(() => {
146-
renderFlash(
147-
"success",
148-
<>Successfully saved calendar integration settings</>
149-
);
150-
refetchConfig();
151-
})
152-
.catch(() => {
153-
renderFlash("error", <>Could not save calendar integration settings</>);
154-
})
155-
.finally(() => {
156-
setIsUpdatingSettings(false);
157-
});
143+
try {
144+
await configAPI.update({ integrations: destination });
145+
renderFlash(
146+
"success",
147+
"Successfully saved calendar integration settings"
148+
);
149+
refetchConfig();
150+
} catch (e) {
151+
renderFlash("error", "Could not save calendar integration settings");
152+
} finally {
153+
setIsUpdatingSettings(false);
154+
}
158155
};
159156

160157
const renderOauthLabel = () => {
@@ -172,20 +169,18 @@ const Calendars = (): JSX.Element => {
172169
};
173170

174171
return (
175-
<>
176-
<span className={`${baseClass}__oauth-scopes-copy-icon-wrapper`}>
177-
<Button
178-
variant="unstyled"
179-
className={`${baseClass}__oauth-scopes-copy-icon`}
180-
onClick={onCopyOauthScopes}
181-
>
182-
<Icon name="copy" />
183-
</Button>
184-
{copyMessage && (
185-
<span className={`${baseClass}__copy-message`}>{copyMessage}</span>
186-
)}
187-
</span>
188-
</>
172+
<span className={`${baseClass}__oauth-scopes-copy-icon-wrapper`}>
173+
<Button
174+
variant="unstyled"
175+
className={`${baseClass}__oauth-scopes-copy-icon`}
176+
onClick={onCopyOauthScopes}
177+
>
178+
<Icon name="copy" />
179+
</Button>
180+
{copyMessage && (
181+
<span className={`${baseClass}__copy-message`}>{copyMessage}</span>
182+
)}
183+
</span>
189184
);
190185
};
191186

@@ -281,7 +276,7 @@ const Calendars = (): JSX.Element => {
281276
}
282277
placeholder={API_KEY_JSON_PLACEHOLDER}
283278
ignore1password
284-
inputClassName={`${baseClass}__configuration--api-key-json`}
279+
inputClassName={`${baseClass}__api-key-json`}
285280
/>
286281
<InputField
287282
label="Primary domain"

frontend/pages/admin/IntegrationsPage/cards/Calendars/_styles.scss

+6-6
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@
1717
}
1818

1919
&__configuration {
20-
&--api-key-json {
21-
min-width: 100%; // resize vertically only
22-
height: 294px;
23-
font-size: $x-small;
24-
}
25-
2620
button {
2721
align-self: flex-end;
2822
}
2923
}
3024

25+
&__api-key-json {
26+
min-width: 100%; // resize vertically only
27+
height: 294px;
28+
font-size: $x-small;
29+
}
30+
3131
#oauth-scopes {
3232
font-family: "SourceCodePro", $monospace;
3333
min-height: 80px;

0 commit comments

Comments
 (0)