1
1
import { useState , useCallback , useMemo } from 'react' ;
2
2
import { useNavigate } from 'react-router-dom' ;
3
3
4
- import { registerWithUsername } from '@/apis/experience' ;
4
+ import { identifyAndSubmitInteraction , registerWithUsername } from '@/apis/experience' ;
5
5
import useApi from '@/hooks/use-api' ;
6
6
import type { ErrorHandlers } from '@/hooks/use-error-handler' ;
7
7
import useErrorHandler from '@/hooks/use-error-handler' ;
8
+ import useGlobalRedirectTo from '@/hooks/use-global-redirect-to' ;
9
+ import usePreSignInErrorHandler from '@/hooks/use-pre-sign-in-error-handler' ;
10
+ import { useSieMethods } from '@/hooks/use-sie' ;
8
11
9
12
const useRegisterWithUsername = ( ) => {
10
13
const navigate = useNavigate ( ) ;
14
+ const redirectTo = useGlobalRedirectTo ( ) ;
15
+
11
16
const [ errorMessage , setErrorMessage ] = useState < string > ( ) ;
12
17
18
+ const { passwordRequiredForSignUp } = useSieMethods ( ) ;
19
+
13
20
const clearErrorMessage = useCallback ( ( ) => {
14
21
setErrorMessage ( '' ) ;
15
22
} , [ ] ) ;
16
23
17
- const errorHandlers : ErrorHandlers = useMemo (
24
+ const usernameErrorHandlers : ErrorHandlers = useMemo (
18
25
( ) => ( {
19
26
'user.username_already_in_use' : ( error ) => {
20
27
setErrorMessage ( error . message ) ;
@@ -23,21 +30,52 @@ const useRegisterWithUsername = () => {
23
30
[ ]
24
31
) ;
25
32
33
+ const preSignInErrorHandler = usePreSignInErrorHandler ( { replace : true } ) ;
34
+
26
35
const handleError = useErrorHandler ( ) ;
27
36
const asyncRegister = useApi ( registerWithUsername ) ;
28
37
38
+ const asyncSubmitInteraction = useApi ( identifyAndSubmitInteraction ) ;
39
+
40
+ const onSubmitInteraction = useCallback ( async ( ) => {
41
+ const [ error , result ] = await asyncSubmitInteraction ( ) ;
42
+
43
+ if ( error ) {
44
+ await handleError ( error , preSignInErrorHandler ) ;
45
+ return ;
46
+ }
47
+
48
+ if ( result ) {
49
+ await redirectTo ( result . redirectTo ) ;
50
+ }
51
+ } , [ asyncSubmitInteraction , handleError , preSignInErrorHandler , redirectTo ] ) ;
52
+
29
53
const onSubmit = useCallback (
30
54
async ( username : string ) => {
31
55
const [ error ] = await asyncRegister ( username ) ;
32
56
33
57
if ( error ) {
34
- await handleError ( error , errorHandlers ) ;
58
+ await handleError ( error , usernameErrorHandlers ) ;
59
+ return ;
60
+ }
61
+
62
+ // If password is required for sign up, navigate to the password page
63
+ if ( passwordRequiredForSignUp ) {
64
+ navigate ( 'password' ) ;
35
65
return ;
36
66
}
37
67
38
- navigate ( 'password' ) ;
68
+ // Otherwise, identify and submit interaction
69
+ await onSubmitInteraction ( ) ;
39
70
} ,
40
- [ asyncRegister , errorHandlers , handleError , navigate ]
71
+ [
72
+ asyncRegister ,
73
+ passwordRequiredForSignUp ,
74
+ onSubmitInteraction ,
75
+ handleError ,
76
+ usernameErrorHandlers ,
77
+ navigate ,
78
+ ]
41
79
) ;
42
80
43
81
return { errorMessage, clearErrorMessage, onSubmit } ;
0 commit comments