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(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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy