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

package.cjs.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
"use strict";

var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
  value: true
});
exports.buildNestedAttributesPayload = void 0;
var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
var _neetoCist = require("@bigbinary/neeto-cist");
var _ramda = require("ramda");
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) { (0, _defineProperty2["default"])(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; }
var buildNestedAttributesPayload = exports.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 (0, _neetoCist.isNotPresent)((0, _neetoCist.findBy)({
      value: initialItem[nestedAttributeKeyInPayload]
    }, modifiedValues[nestedKeyToModify]));
  });
  var itemsToDestroyAttrs = itemsToDestroy.map(function (item) {
    return (0, _defineProperty2["default"])((0, _defineProperty2["default"])({
      id: item.id
    }, nestedAttributeKeyInPayload, item[nestedAttributeKeyInPayload]), "_destroy", true);
  });
  var itemsToBeCreated = modifiedValues[nestedKeyToModify].filter(function (modifiedItem) {
    return (0, _neetoCist.isNotPresent)((0, _neetoCist.findBy)((0, _defineProperty2["default"])({}, nestedAttributeKeyInPayload, modifiedItem.value.toLowerCase()), initialValues[nestedKeyToModify]));
  });
  var itemsToCreateAttrs = itemsToBeCreated.map(function (item) {
    return (0, _defineProperty2["default"])({}, nestedAttributeKeyInPayload, item.value);
  });
  var nestedAttributes = [].concat((0, _toConsumableArray2["default"])(itemsToCreateAttrs), (0, _toConsumableArray2["default"])(itemsToDestroyAttrs));
  return _objectSpread(_objectSpread({}, (0, _ramda.omit)([nestedKeyToModify], modifiedValues)), {}, (0, _defineProperty2["default"])({}, nestedAttributesForArrayKey, nestedAttributes));
};
//# sourceMappingURL=buildNestedAttributesPayload.js.map




© 2015 - 2024 Weber Informatics LLC | Privacy Policy