ra-core
Version:
Core components of react-admin, a frontend Framework for building admin applications on top of REST services, using ES6, React
128 lines • 4.65 kB
JavaScript
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
var __rest = (this && this.__rest) || function (s, e) {
var t = {};
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
t[p] = s[p];
if (s != null && typeof Object.getOwnPropertySymbols === "function")
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
t[p[i]] = s[p[i]];
}
return t;
};
import { useCallback } from 'react';
import { useDelete } from '../../dataProvider';
import { useUnselect } from '../../controller';
import { useRedirect } from '../../routing';
import { useNotify } from '../../notification';
import { useResourceContext } from '../../core';
import { useTranslate } from '../../i18n';
/**
* Prepare callback for a Delete button with undo support
*
* @example
*
* import React from 'react';
* import ActionDelete from '@mui/icons-material/Delete';
* import { Button, useDeleteWithUndoController } from 'react-admin';
*
* const DeleteButton = ({
* resource,
* record,
* redirect,
* onClick,
* ...rest
* }) => {
* const { isPending, handleDelete } = useDeleteWithUndoController({
* resource,
* record,
* redirect,
* onClick,
* });
*
* return (
* <Button
* onClick={handleDelete}
* disabled={isPending}
* label="ra.action.delete"
* {...rest}
* >
* <ActionDelete />
* </Button>
* );
* };
*/
var useDeleteWithUndoController = function (props) {
var record = props.record, _a = props.redirect, redirectTo = _a === void 0 ? 'list' : _a, onClick = props.onClick, _b = props.mutationOptions, mutationOptions = _b === void 0 ? {} : _b, successMessage = props.successMessage;
var mutationMeta = mutationOptions.meta, otherMutationOptions = __rest(mutationOptions, ["meta"]);
var resource = useResourceContext(props);
var notify = useNotify();
var unselect = useUnselect(resource);
var redirect = useRedirect();
var translate = useTranslate();
var _c = useDelete(resource, undefined, {
onSuccess: function () {
notify(successMessage !== null && successMessage !== void 0 ? successMessage : "resources.".concat(resource, ".notifications.deleted"), {
type: 'info',
messageArgs: {
smart_count: 1,
_: translate('ra.notification.deleted', {
smart_count: 1,
}),
},
undoable: true,
});
record && unselect([record.id]);
redirect(redirectTo, resource);
},
onError: function (error) {
notify(typeof error === 'string'
? error
: (error === null || error === void 0 ? void 0 : error.message) ||
'ra.notification.http_error', {
type: 'error',
messageArgs: {
_: typeof error === 'string'
? error
: (error === null || error === void 0 ? void 0 : error.message)
? error.message
: undefined,
},
});
},
}), deleteOne = _c[0], isPending = _c[1].isPending;
var handleDelete = useCallback(function (event) {
event.stopPropagation();
if (!record) {
throw new Error('The record cannot be deleted because no record has been passed');
}
deleteOne(resource, {
id: record.id,
previousData: record,
meta: mutationMeta,
}, __assign({ mutationMode: 'undoable' }, otherMutationOptions));
if (typeof onClick === 'function') {
onClick(event);
}
}, [
deleteOne,
mutationMeta,
otherMutationOptions,
onClick,
record,
resource,
]);
return { isPending: isPending, isLoading: isPending, handleDelete: handleDelete };
};
export default useDeleteWithUndoController;
//# sourceMappingURL=useDeleteWithUndoController.js.map