@@ -55,6 +55,7 @@ function RecordForm({
55
55
const formikValues = useRef ( ) ;
56
56
const bindedSetValues = useRef ( null ) ;
57
57
const bindedResetForm = useRef ( null ) ;
58
+ const bindedRecalculateFields = useRef ( null ) ;
58
59
59
60
const bindSetValues = setValues => {
60
61
bindedSetValues . current = setValues ;
@@ -64,6 +65,10 @@ function RecordForm({
64
65
bindedResetForm . current = resetForm ;
65
66
} ;
66
67
68
+ const bindRecalculateFields = recalculateFields => {
69
+ bindedRecalculateFields . current = recalculateFields ;
70
+ }
71
+
67
72
const buildValidationSchema = formSections => {
68
73
const schema = formSections . reduce ( ( obj , item ) => {
69
74
return Object . assign (
@@ -175,6 +180,14 @@ function RecordForm({
175
180
}
176
181
} , [ mode . isNew , dataProtectionInitialValues ] ) ;
177
182
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
+
178
191
const handleConfirm = onConfirm => {
179
192
onConfirm ( ) ;
180
193
if ( incidentFromCase ?. size ) {
@@ -189,7 +202,6 @@ function RecordForm({
189
202
formikValues . current = values ;
190
203
} ;
191
204
192
- const calculatedFields = forms . flatMap ( fs => fs . fields . filter ( field => field . calculation ?. expression ) ) ;
193
205
194
206
if ( ! isEmpty ( initialValues ) && ! isEmpty ( forms ) ) {
195
207
const validationSchema = buildValidationSchema ( forms ) ;
@@ -215,17 +227,16 @@ function RecordForm({
215
227
bindSubmitForm ( submitForm ) ;
216
228
setFormikValuesForNav ( values ) ;
217
229
218
- useEffect ( ( ) => {
230
+ bindRecalculateFields ( ( ) => {
219
231
if ( values ) {
220
232
calculatedFields . forEach ( field => {
221
233
const result = parseExpression ( field . calculation . expression ) . evaluate ( values ) ;
222
-
223
234
if ( values [ field . name ] !== result ) {
224
235
setFieldValue ( field . name , result , false ) ;
225
236
}
226
237
} ) ;
227
238
}
228
- } , [ values ] ) ;
239
+ } ) ;
229
240
230
241
return (
231
242
< FormikForm
0 commit comments