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