Delete
<DeleteButton>
uses Chakra UI's <Button>
and <Popover>
components.
When you try to delete something, a pop-up shows up and asks for confirmation. When confirmed it executes the useDelete
method provided by your dataProvider
.
You can swizzle this component to customize it with the refine CLI
Usage
Properties
recordItemId
recordItemId
allows us to manage which record will be deleted.
Clicking the button will trigger the useDelete
method and then the record whose resource is "post" and whose id is "123" gets deleted.
<DeleteButton>
component reads the id information from the route by default.
resource
resource
allows us to manage which resource's record is going to be deleted.
Clicking the button will trigger the useDelete
method and then the record whose resource is "categories" and whose id is "2" gets deleted.
<DeleteButton>
component reads the resource name from the route by default.
If you have multiple resources with the same name, you can pass the identifier
instead of the name
of the resource. It will only be used as the main matching key for the resource, data provider methods will still work with the name
of the resource defined in the <Refine/>
component.
For more information, refer to the
identifier
section of the<Refine/>
component documentation →
onSuccess
onSuccess
can be used if you want to do anything based on the result returned after the delete request.
For example, let's console.log
after deletion:
mutationMode
Determines which mode mutation will have while executing <DeleteButton>
.
For more information, refer to the mutation mode docsumentation →
hideText
hideText
is used to show and not show the text of the button. When true
, only the button icon is visible.
accessControl
The accessControl
prop can be used to skip the access control check with its enabled
property or to hide the button when the user does not have the permission to access the resource with hideIfUnauthorized
property. This is relevant only when an accessControlProvider
is provided to <Refine/>
import { DeleteButton } from "@refinedev/chakra-ui";
export const MyListComponent = () => {
return (
<DeleteButton
accessControl={{ enabled: true, hideIfUnauthorized: true }}
/>
);
};
resourceNameOrRouteName
deprecated
resourceNameOrRouteName
resourceNameOrRouteName
prop is deprecated. Useresource
prop instead.
resourceNameOrRouteName
allows us to manage which resource's record is going to be deleted.
Clicking the button will trigger the useDelete
method and then the record whose resource is "categories" and whose id is "2" gets deleted.
<DeleteButton>
component reads the resource name from the route by default.
How to override confirm texts?
You can change the text that appears when you confirm a transaction with confirmTitle
prop, as well as what 'ok' and 'cancel' buttons text look like with the confirmOkText
and confirmCancelText
props.