Skip to content

Commit 913ee81

Browse files
author
Jacob Shandling
committed
refactor onInputChange into 2 functions
1 parent 2870384 commit 913ee81

File tree

1 file changed

+25
-25
lines changed

1 file changed

+25
-25
lines changed

frontend/pages/policies/ManagePoliciesPage/components/CalendarEventsModal/CalendarEventsModal.tsx

+25-25
Original file line numberDiff line numberDiff line change
@@ -83,29 +83,26 @@ const CalendarEventsModal = ({
8383
return errors;
8484
};
8585

86-
// TODO? - separate change handlers for checkboxes:
87-
// const onPolicyUpdate = ...
88-
// const onTextFieldUpdate = ...
89-
90-
const onInputChange = useCallback(
91-
(newVal: { name: FormNames; value: string | number | boolean }) => {
86+
// two onChange handlers to handle different levels of nesting in the form data
87+
const onFeatureEnabledOrUrlChange = useCallback(
88+
(newVal: { name: "enabled" | "url"; value: string | boolean }) => {
9289
const { name, value } = newVal;
93-
let newFormData: ICalendarEventsFormData;
94-
// for the first two fields, set the new value directly
95-
if (["enabled", "url"].includes(name)) {
96-
newFormData = { ...formData, [name]: value };
97-
} else if (typeof value === "boolean") {
98-
// otherwise, set the value for a nested policy
99-
const newFormPolicies = formData.policies.map((formPolicy) => {
100-
if (formPolicy.name === name) {
101-
return { ...formPolicy, isChecked: value };
102-
}
103-
return formPolicy;
104-
});
105-
newFormData = { ...formData, policies: newFormPolicies };
106-
} else {
107-
throw TypeError("Unexpected value type for policy checkbox");
108-
}
90+
const newFormData = { ...formData, [name]: value };
91+
setFormData(newFormData);
92+
setFormErrors(validateCalendarEventsFormData(newFormData));
93+
},
94+
[formData]
95+
);
96+
const onPolicyEnabledChange = useCallback(
97+
(newVal: { name: FormNames; value: boolean }) => {
98+
const { name, value } = newVal;
99+
const newFormPolicies = formData.policies.map((formPolicy) => {
100+
if (formPolicy.name === name) {
101+
return { ...formPolicy, isChecked: value };
102+
}
103+
return formPolicy;
104+
});
105+
const newFormData = { ...formData, policies: newFormPolicies };
109106
setFormData(newFormData);
110107
setFormErrors(validateCalendarEventsFormData(newFormData));
111108
},
@@ -153,7 +150,7 @@ const CalendarEventsModal = ({
153150
name={name}
154151
// can't use parseTarget as value needs to be set to !currentValue
155152
onChange={() => {
156-
onInputChange({ name, value: !isChecked });
153+
onPolicyEnabledChange({ name, value: !isChecked });
157154
}}
158155
>
159156
{name}
@@ -228,7 +225,10 @@ const CalendarEventsModal = ({
228225
<Slider
229226
value={formData.enabled}
230227
onChange={() => {
231-
onInputChange({ name: "enabled", value: !formData.enabled });
228+
onFeatureEnabledOrUrlChange({
229+
name: "enabled",
230+
value: !formData.enabled,
231+
});
232232
}}
233233
inactiveText="Disabled"
234234
activeText="Enabled"
@@ -247,7 +247,7 @@ const CalendarEventsModal = ({
247247
<InputField
248248
placeholder="https://server.com/example"
249249
label="Resolution webhook URL"
250-
onChange={onInputChange}
250+
onChange={onFeatureEnabledOrUrlChange}
251251
name="url"
252252
value={formData.url}
253253
parseTarget

0 commit comments

Comments
 (0)