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

package.cjs.react-utils.useMutationWithInvalidation.useMutationWithInvalidation.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["default"] = void 0;
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
var _reactQuery = require("@tanstack/react-query");
var _ramda = require("ramda");
var _excluded = ["keysToInvalidate"],
  _excluded2 = ["onSuccess"];
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) { (0, _defineProperty2["default"])(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; }
var useMutationWithInvalidation = function useMutationWithInvalidation(mutationFn, _ref) {
  var keysToInvalidate = _ref.keysToInvalidate,
    options = (0, _objectWithoutProperties2["default"])(_ref, _excluded);
  var queryClient = (0, _reactQuery.useQueryClient)();
  var _onSuccess = options.onSuccess,
    otherOptions = (0, _objectWithoutProperties2["default"])(options, _excluded2);
  return (0, _reactQuery.useMutation)(_objectSpread({
    mutationFn: mutationFn,
    onSuccess: function onSuccess(data, variables, context) {
      keysToInvalidate.forEach(function (key) {
        var result = (0, _ramda.type)(key) === "Function" ? key(data, variables, context) : key;
        if ((0, _ramda.type)(result) === "Object") {
          queryClient.invalidateQueries(result);
        } else if ((0, _ramda.type)(result) === "String") {
          queryClient.invalidateQueries({
            queryKey: [result]
          });
        } else {
          queryClient.invalidateQueries({
            queryKey: result
          });
        }
      });
      _onSuccess === null || _onSuccess === void 0 ? void 0 : _onSuccess(data, variables, context);
    }
  }, otherOptions));
};
var _default = useMutationWithInvalidation;
exports["default"] = _default;
//# sourceMappingURL=useMutationWithInvalidation.js.map




© 2015 - 2024 Weber Informatics LLC | Privacy Policy