package.utils.buildNestedAttributesPayload.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neeto-commons-frontend Show documentation
Show all versions of neeto-commons-frontend Show documentation
A package encapsulating common code across neeto projects including initializers, utility functions, common components and hooks and so on.
import _toConsumableArray from "@babel/runtime/helpers/toConsumableArray";
import _defineProperty from "@babel/runtime/helpers/defineProperty";
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
import { findBy, isNotPresent } from "@bigbinary/neeto-cist";
import { omit } from "ramda";
export var buildNestedAttributesPayload = function buildNestedAttributesPayload(_ref) {
var modifiedValues = _ref.modifiedValues,
initialValues = _ref.initialValues,
nestedKeyToModify = _ref.nestedKeyToModify,
nestedAttributeKeyInPayload = _ref.nestedAttributeKeyInPayload,
nestedAttributesForArrayKey = _ref.nestedAttributesForArrayKey;
var itemsToDestroy = initialValues[nestedKeyToModify].filter(function (initialItem) {
return isNotPresent(findBy({
value: initialItem[nestedAttributeKeyInPayload]
}, modifiedValues[nestedKeyToModify]));
});
var itemsToDestroyAttrs = itemsToDestroy.map(function (item) {
var _ref2;
return _ref2 = {
id: item.id
}, _defineProperty(_ref2, nestedAttributeKeyInPayload, item[nestedAttributeKeyInPayload]), _defineProperty(_ref2, "_destroy", true), _ref2;
});
var itemsToBeCreated = modifiedValues[nestedKeyToModify].filter(function (modifiedItem) {
return isNotPresent(findBy(_defineProperty({}, nestedAttributeKeyInPayload, modifiedItem.value.toLowerCase()), initialValues[nestedKeyToModify]));
});
var itemsToCreateAttrs = itemsToBeCreated.map(function (item) {
return _defineProperty({}, nestedAttributeKeyInPayload, item.value);
});
var nestedAttributes = [].concat(_toConsumableArray(itemsToCreateAttrs), _toConsumableArray(itemsToDestroyAttrs));
return _objectSpread(_objectSpread({}, omit([nestedKeyToModify], modifiedValues)), {}, _defineProperty({}, nestedAttributesForArrayKey, nestedAttributes));
};
//# sourceMappingURL=buildNestedAttributesPayload.js.map