All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.utils.buildNestedAttributesPayload.js Maven / Gradle / Ivy

Go to download

A package encapsulating common code across neeto projects including initializers, utility functions, common components and hooks and so on.

There is a newer version: 4.12.3
Show newest version
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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy