Skip to content
Snippets Groups Projects
Commit f9c245ad authored by Tom Robinson's avatar Tom Robinson
Browse files

Fix Form's validate/initial/normalize handling of nested fields

parent c73a7feb
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,7 @@ import React from "react";
import PropTypes from "prop-types";
import { reduxForm, getValues } from "redux-form";
import { getIn } from "icepick";
import StandardForm from "metabase/components/form/StandardForm";
......@@ -154,9 +155,12 @@ function makeFormMethod(
const values =
getValue(originalMethod, object) || getValue(defaultValues, object);
for (const field of form.fields(object)) {
const value = getValue(field[methodName], object && object[field.name]);
const value = getValue(
field[methodName],
object && getValueAtPath(object, field.name),
);
if (value !== undefined) {
values[field.name] = value;
setValueAtPath(values, field.name, value);
}
}
return values;
......@@ -183,3 +187,21 @@ function makeForm(formDef: FormDef): Form {
makeFormMethod(form, "normalize", object => object);
return form;
}
function getObjectPath(path) {
return typeof path === "string" ? path.split(".") : path;
}
function getValueAtPath(object, path) {
return getIn(object, getObjectPath(path));
}
function setValueAtPath(object, path, value) {
path = getObjectPath(path);
for (let i = 0; i < path.length; i++) {
if (i === path.length - 1) {
object[path[i]] = value;
} else {
object = object[path[i]] = object[path[i]] || {};
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment