Skip to content

Commit 5dffccc

Browse files
committed
Use bindRecalculateFields to pass a closure
This gets around the issue that eslint was complaining about as the react hook is now at the top level, and we pass a closure into it.
1 parent 7c47761 commit 5dffccc

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

app/javascript/components/record-form/form/record-form.jsx

+15-4
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ function RecordForm({
5555
const formikValues = useRef();
5656
const bindedSetValues = useRef(null);
5757
const bindedResetForm = useRef(null);
58+
const bindedRecalculateFields = useRef(null);
5859

5960
const bindSetValues = setValues => {
6061
bindedSetValues.current = setValues;
@@ -64,6 +65,10 @@ function RecordForm({
6465
bindedResetForm.current = resetForm;
6566
};
6667

68+
const bindRecalculateFields = recalculateFields => {
69+
bindedRecalculateFields.current = recalculateFields;
70+
}
71+
6772
const buildValidationSchema = formSections => {
6873
const schema = formSections.reduce((obj, item) => {
6974
return Object.assign(
@@ -175,6 +180,14 @@ function RecordForm({
175180
}
176181
}, [mode.isNew, dataProtectionInitialValues]);
177182

183+
const calculatedFields = forms.flatMap(fs => fs.fields.filter(field => field.calculation?.expression));
184+
185+
useEffect(() => {
186+
if (typeof bindedRecalculateFields.current === "function") {
187+
bindedRecalculateFields.current();
188+
}
189+
})
190+
178191
const handleConfirm = onConfirm => {
179192
onConfirm();
180193
if (incidentFromCase?.size) {
@@ -189,7 +202,6 @@ function RecordForm({
189202
formikValues.current = values;
190203
};
191204

192-
const calculatedFields = forms.flatMap(fs => fs.fields.filter(field => field.calculation?.expression));
193205

194206
if (!isEmpty(initialValues) && !isEmpty(forms)) {
195207
const validationSchema = buildValidationSchema(forms);
@@ -215,17 +227,16 @@ function RecordForm({
215227
bindSubmitForm(submitForm);
216228
setFormikValuesForNav(values);
217229

218-
useEffect(() => {
230+
bindRecalculateFields(() => {
219231
if (values) {
220232
calculatedFields.forEach(field => {
221233
const result = parseExpression(field.calculation.expression).evaluate(values);
222-
223234
if (values[field.name] !== result) {
224235
setFieldValue(field.name, result, false);
225236
}
226237
});
227238
}
228-
}, [values]);
239+
});
229240

230241
return (
231242
<FormikForm

0 commit comments

Comments
 (0)