46 lines
1.4 KiB
TypeScript
Executable File
46 lines
1.4 KiB
TypeScript
Executable File
import {useMutation} from '@tanstack/react-query';
|
|
import {UseFormReturn} from 'react-hook-form';
|
|
import {BackendResponse} from '../../http/backend-response/backend-response';
|
|
import {onFormQueryError} from '../../errors/on-form-query-error';
|
|
import {useNavigate} from '../../utils/hooks/use-navigate';
|
|
import {apiClient} from '../../http/query-client';
|
|
import {useAuth} from '../use-auth';
|
|
import {useBootstrapData} from '../../core/bootstrap-data/bootstrap-data-context';
|
|
|
|
interface Response extends BackendResponse {
|
|
bootstrapData?: string;
|
|
message?: string;
|
|
status: 'success' | 'needs_email_verification';
|
|
}
|
|
|
|
export interface RegisterPayload {
|
|
email: string;
|
|
password: string;
|
|
password_confirmation: string;
|
|
}
|
|
|
|
export function useRegister(form: UseFormReturn<RegisterPayload>) {
|
|
const navigate = useNavigate();
|
|
const {getRedirectUri} = useAuth();
|
|
const {setBootstrapData} = useBootstrapData();
|
|
|
|
return useMutation({
|
|
mutationFn: register,
|
|
onSuccess: response => {
|
|
setBootstrapData(response.bootstrapData!);
|
|
if (response.status === 'needs_email_verification') {
|
|
navigate('/');
|
|
} else {
|
|
navigate(getRedirectUri(), {replace: true});
|
|
}
|
|
},
|
|
onError: r => onFormQueryError(r, form),
|
|
});
|
|
}
|
|
|
|
function register(payload: RegisterPayload): Promise<Response> {
|
|
return apiClient
|
|
.post('auth/register', payload)
|
|
.then(response => response.data);
|
|
}
|