useRegister
useRegister
calls register
method from authProvider
under the hood.
It returns the result of react-query
's useMutation which includes many properties, some of which being isSuccess and isError.
Data that is resolved from register
will be returned as the data
in the query result with the following type:
type AuthActionResponse = {
success: boolean;
redirectTo?: string;
error?: Error;
[key: string]: unknown;
};
success
: A boolean indicating whether the operation was successful. Ifsuccess
is false, a notification will be shown.- When an
error
is provided, the notification will contain the error message and name. Otherwise, a generic error message will be shown with the following values{ name: "Register Error", message: "Error while registering" }
.
- When an
redirectTo
: If has a value, the app will be redirected to the given URL.error
: If has a value, a notification will be shown with the error message and name.[key: string]
: Any additional data you wish to include in the response, keyed by a string identifier.
Usageβ
Normally refine provides a default register page. If you prefer to use this default register page, there is no need to handle the register flow manually.
If we want to build a custom register page instead of the default one that comes with refine, useRegister
can be used like this:
import { useRegister } from "@refinedev/core";
type RegisterVariables = {
email: string;
password: string;
};
export const RegisterPage = () => {
const { mutate: register } = useRegister<RegisterVariables>();
const onSubmit = (values: RegisterVariables) => {
register(values);
};
return (
<form onSubmit={onSubmit}>
<label>Email</label>
<input name="email" value="test@refine.com" />
<label>Password</label>
<input name="password" value="refine" />
<button type="submit">Submit</button>
</form>
);
};
mutate
acquired from useRegister
can accept any kind of object for values since register
method from authProvider
doesn't have a restriction on its parameters.
A type parameter for the values can be provided to useRegister
.
const { mutate: register } = useRegister<{ email: string; password: string }>();
Redirection after registerβ
A custom URL can be given to mutate the function from the useRegister
hook if you want to redirect yourself to a certain URL.
import { useRegister } from "@refinedev/core";
const { mutate: register } = useRegister();
register({ redirectPath: "/custom-url" });
Then, you can handle this URL in your register
method of the authProvider
.
import type { AuthBindings } from "@refinedev/core";
const authProvider: AuthBindings = {
// ---
register: async ({ redirectPath }) => {
// ---
return {
success: true,
redirectTo: redirectPath,
};
},
};
Logged In after successful registrationβ
If you want to log in to the user after successful registration, you can use useLogin
hook after useRegister
hook onSuccess
callback.
import { useRegister, useLogin } from "@refinedev/core";
type FormVariables = {
email: string;
password: string;
};
export const RegisterPage = () => {
const { mutate: register } = useRegister<FormVariables>();
const { mutate: login } = useLogin<FormVariables>();
const onSubmit = (values: FormVariables) => {
register(values, {
onSuccess: () => {
login(values);
},
});
};
return (
<form onSubmit={onSubmit}>
<label>Email</label>
<input name="email" value="test@refine.com" />
<label>Password</label>
<input name="password" value="refine" />
<button type="submit">Submit</button>
</form>
);
};
Redirection after registerβ
A custom URL can be given to mutate the function from the useRegister
hook if you want to redirect yourself to a certain URL.
import { useRegister } from "@refinedev/core";
const { mutate: register } = useRegister();
register({ redirectPath: "/custom-url" });
Then, you can handle this URL in your register
method of the authProvider
.
const authProvider: AuthBindings = {
// ---
register: ({ redirectPath }) => {
// ---
return {
success: true,
redirectTo: redirectPath,
};
},
};
This hook can only be used if authProvider
is provided.