2021-03-08 18:12:59 +05:30
|
|
|
export const serializeFormEntries = (entries) =>
|
2019-10-12 21:52:04 +05:30
|
|
|
entries.reduce((acc, { name, value }) => Object.assign(acc, { [name]: value }), {});
|
|
|
|
|
2021-03-08 18:12:59 +05:30
|
|
|
export const serializeForm = (form) => {
|
2019-10-12 21:52:04 +05:30
|
|
|
const fdata = new FormData(form);
|
2021-03-08 18:12:59 +05:30
|
|
|
const entries = Array.from(fdata.keys()).map((key) => {
|
2019-12-21 20:55:43 +05:30
|
|
|
let val = fdata.getAll(key);
|
|
|
|
// Microsoft Edge has a bug in FormData.getAll() that returns an undefined
|
|
|
|
// value for each form element that does not match the given key:
|
|
|
|
// https://github.com/jimmywarting/FormData/issues/80
|
2021-03-08 18:12:59 +05:30
|
|
|
val = val.filter((n) => n);
|
2019-10-12 21:52:04 +05:30
|
|
|
return { name: key, value: val.length === 1 ? val[0] : val };
|
|
|
|
});
|
|
|
|
|
|
|
|
return serializeFormEntries(entries);
|
|
|
|
};
|
2020-11-24 15:15:51 +05:30
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the value provided is empty or not
|
|
|
|
*
|
|
|
|
* It is being used to check if a form input
|
|
|
|
* value has been set or not
|
|
|
|
*
|
|
|
|
* @param {String, Number, Array} - Any form value
|
|
|
|
* @returns {Boolean} - returns false if a value is set
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* returns true for '', [], null, undefined
|
|
|
|
*/
|
2021-03-08 18:12:59 +05:30
|
|
|
export const isEmptyValue = (value) => value == null || value.length === 0;
|
2020-11-24 15:15:51 +05:30
|
|
|
|
|
|
|
/**
|
|
|
|
* A form object serializer
|
|
|
|
*
|
|
|
|
* @param {Object} - Form Object
|
|
|
|
* @returns {Object} - Serialized Form Object
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* Input
|
|
|
|
* {"project": {"value": "hello", "state": false}, "username": {"value": "john"}}
|
|
|
|
*
|
|
|
|
* Returns
|
|
|
|
* {"project": "hello", "username": "john"}
|
|
|
|
*/
|
2021-03-08 18:12:59 +05:30
|
|
|
export const serializeFormObject = (form) =>
|
2020-11-24 15:15:51 +05:30
|
|
|
Object.fromEntries(
|
|
|
|
Object.entries(form).reduce((acc, [name, { value }]) => {
|
|
|
|
if (!isEmptyValue(value)) {
|
|
|
|
acc.push([name, value]);
|
|
|
|
}
|
|
|
|
return acc;
|
|
|
|
}, []),
|
|
|
|
);
|