useDeleteUserMutation
The useDeleteUserMutation
hook simplifies the process of deleting a user from Firebase Authentication.
It provides built-in state management for handling the mutation lifecycle (e.g., loading, success, error) and supports custom behaviors like onSuccess
or onError
.
Features
- Easy Firebase Auth Integration: Leverages Firebase's
deleteUser
functionality. - Built-in State Management: Automatically manages
idle
,loading
,success
, anderror
states. - Customizable Callbacks: Supports
onSuccess
,onError
, and other TanStack Query mutation options. - Optimized for TanStack Query: Seamlessly integrates with TanStack Query for caching and refetching strategies.
Installation
Ensure you have the necessary Firebase, TanStack Query and TanStack Query Firebase packages installed:
npm install firebase @tanstack/react-query @tanstack-query-firebase/react
Usage
import { useDeleteUserMutation } from "@tanstack-query-firebase/react/auth";
function Component() {
const { mutate, isPending, isSuccess, isError, error } =
useDeleteUserMutation();
const handleDeleteUser = () => {
const user = auth.currentUser;
if (user) {
mutate(user);
}
};
return (
<div>
{isPending && <p>Deleting user...</p>}
{isSuccess && <p>User deleted successfully!</p>}
{isError && <p>Error: {error.message}</p>}
<button onClick={handleDeleteUser} disabled={isPending}>
Delete Account
</button>
</div>
);
}
Parameters
options
(optional):
Object for customizing mutation behavior. Accepts all options supported by TanStack Query'suseMutation
, such as:onSuccess
: Callback fired when the mutation succeeds.onError
: Callback fired when the mutation fails.onSettled
: Callback fired after the mutation finishes, regardless of success or failure.
See useMutation for more information on mutation options and behavior.
Returns
An object containing the following properties, provided by TanStack Query's useMutation:
mutate
: Function to trigger the mutation. In this case, it deletes the user.
mutate(user: User): void;
-
isPending
: Boolean indicating if the mutation is in progress (alias forisLoading
). -
isSuccess
: Boolean indicating if the mutation has successfully completed. -
isError
: Boolean indicating if the mutation has failed. -
error
: The error object, if the mutation failed. -
data
: The result of the mutation (typicallyundefined
for delete operations).
For a complete list of returned properties, see the official TanStack Query useMutation documentation.