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