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(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
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) {
return _defineProperty(_defineProperty({
id: item.id
}, nestedAttributeKeyInPayload, item[nestedAttributeKeyInPayload]), "_destroy", true);
});
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