Revert "set undefined values to null rjsf form data w/ burnettk (#336)"
This reverts commit cca9b147f6
.
This commit is contained in:
parent
cca9b147f6
commit
37aeda6832
|
@ -3,7 +3,6 @@ import {
|
||||||
isInteger,
|
isInteger,
|
||||||
slugifyString,
|
slugifyString,
|
||||||
underscorizeString,
|
underscorizeString,
|
||||||
recursivelyNullifyUndefinedValuesInPlace,
|
|
||||||
} from './helpers';
|
} from './helpers';
|
||||||
|
|
||||||
test('it can slugify a string', () => {
|
test('it can slugify a string', () => {
|
||||||
|
@ -30,38 +29,3 @@ test('it can validate numeric values', () => {
|
||||||
expect(isInteger('1 2')).toEqual(false);
|
expect(isInteger('1 2')).toEqual(false);
|
||||||
expect(isInteger(2)).toEqual(true);
|
expect(isInteger(2)).toEqual(true);
|
||||||
});
|
});
|
||||||
|
|
||||||
test('it can replace undefined values in object with null', () => {
|
|
||||||
const sampleData = {
|
|
||||||
talentType: 'foo',
|
|
||||||
rating: 'bar',
|
|
||||||
contacts: {
|
|
||||||
gmeets: undefined,
|
|
||||||
zoom: undefined,
|
|
||||||
phone: 'baz',
|
|
||||||
awesome: false,
|
|
||||||
info: '',
|
|
||||||
},
|
|
||||||
items: [
|
|
||||||
undefined,
|
|
||||||
{
|
|
||||||
contacts: {
|
|
||||||
gmeets: undefined,
|
|
||||||
zoom: undefined,
|
|
||||||
phone: 'baz',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
'HEY',
|
|
||||||
],
|
|
||||||
undefined,
|
|
||||||
};
|
|
||||||
|
|
||||||
expect((sampleData.items[1] as any).contacts.zoom).toEqual(undefined);
|
|
||||||
|
|
||||||
const result = recursivelyNullifyUndefinedValuesInPlace(sampleData);
|
|
||||||
expect(result).toEqual(sampleData);
|
|
||||||
expect(result.items[1].contacts.zoom).toEqual(null);
|
|
||||||
expect(result.items[2]).toEqual('HEY');
|
|
||||||
expect(result.contacts.awesome).toEqual(false);
|
|
||||||
expect(result.contacts.info).toEqual('');
|
|
||||||
});
|
|
||||||
|
|
|
@ -26,24 +26,6 @@ export const underscorizeString = (inputString: string) => {
|
||||||
return slugifyString(inputString).replace(/-/g, '_');
|
return slugifyString(inputString).replace(/-/g, '_');
|
||||||
};
|
};
|
||||||
|
|
||||||
export const recursivelyNullifyUndefinedValuesInPlace = (obj: any) => {
|
|
||||||
if (obj === null || obj === undefined) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
if (Array.isArray(obj)) {
|
|
||||||
obj.forEach((value: any, index: number) => {
|
|
||||||
// eslint-disable-next-line no-param-reassign
|
|
||||||
obj[index] = recursivelyNullifyUndefinedValuesInPlace(value);
|
|
||||||
});
|
|
||||||
} else if (typeof obj === 'object') {
|
|
||||||
Object.entries(obj).forEach(([key, value]) => {
|
|
||||||
// eslint-disable-next-line no-param-reassign
|
|
||||||
obj[key] = recursivelyNullifyUndefinedValuesInPlace(value);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
return obj;
|
|
||||||
};
|
|
||||||
|
|
||||||
export const selectKeysFromSearchParams = (obj: any, keys: string[]) => {
|
export const selectKeysFromSearchParams = (obj: any, keys: string[]) => {
|
||||||
const newSearchParams: { [key: string]: string } = {};
|
const newSearchParams: { [key: string]: string } = {};
|
||||||
keys.forEach((key: string) => {
|
keys.forEach((key: string) => {
|
||||||
|
|
|
@ -15,10 +15,7 @@ import {
|
||||||
import { Form } from '../rjsf/carbon_theme';
|
import { Form } from '../rjsf/carbon_theme';
|
||||||
import HttpService from '../services/HttpService';
|
import HttpService from '../services/HttpService';
|
||||||
import useAPIError from '../hooks/UseApiError';
|
import useAPIError from '../hooks/UseApiError';
|
||||||
import {
|
import { modifyProcessIdentifierForPathParam } from '../helpers';
|
||||||
modifyProcessIdentifierForPathParam,
|
|
||||||
recursivelyNullifyUndefinedValuesInPlace,
|
|
||||||
} from '../helpers';
|
|
||||||
import { EventDefinition, Task } from '../interfaces';
|
import { EventDefinition, Task } from '../interfaces';
|
||||||
import ProcessBreadcrumb from '../components/ProcessBreadcrumb';
|
import ProcessBreadcrumb from '../components/ProcessBreadcrumb';
|
||||||
import InstructionsForEndUser from '../components/InstructionsForEndUser';
|
import InstructionsForEndUser from '../components/InstructionsForEndUser';
|
||||||
|
@ -122,9 +119,9 @@ export default function TaskShow() {
|
||||||
delete dataToSubmit.isManualTask;
|
delete dataToSubmit.isManualTask;
|
||||||
|
|
||||||
// NOTE: rjsf sets blanks values to undefined and JSON.stringify removes keys with undefined values
|
// NOTE: rjsf sets blanks values to undefined and JSON.stringify removes keys with undefined values
|
||||||
// so we convert undefined values to null recursively so that we can unset values in form fields
|
// so there is no way to clear out a field that previously had a value.
|
||||||
recursivelyNullifyUndefinedValuesInPlace(dataToSubmit);
|
// To resolve this, we could potentially go through the object that we are posting (either in here or in
|
||||||
|
// HttpService) and translate all undefined values to null.
|
||||||
HttpService.makeCallToBackend({
|
HttpService.makeCallToBackend({
|
||||||
path: `/tasks/${params.process_instance_id}/${params.task_id}${queryParams}`,
|
path: `/tasks/${params.process_instance_id}/${params.task_id}${queryParams}`,
|
||||||
successCallback: processSubmitResult,
|
successCallback: processSubmitResult,
|
||||||
|
|
Loading…
Reference in New Issue