-
Notifications
You must be signed in to change notification settings - Fork 686
/
Copy pathuseSignIn.js
270 lines (228 loc) · 7.92 KB
/
useSignIn.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
import { useCallback, useRef, useState, useMemo } from 'react';
import { useApolloClient, useMutation, useQuery } from '@apollo/client';
import { useGoogleReCaptcha } from '../../hooks/useGoogleReCaptcha/useGoogleReCaptcha';
import mergeOperations from '../../util/shallowMerge';
import { useCartContext } from '../../context/cart';
import { useUserContext } from '../../context/user';
import { useAwaitQuery } from '../../hooks/useAwaitQuery';
import { retrieveCartId } from '../../store/actions/cart';
import DEFAULT_OPERATIONS from './signIn.gql';
import { useEventingContext } from '../../context/eventing';
import { useHistory, useLocation } from 'react-router-dom';
/**
* Routes to redirect from if used to create an account.
*/
const REDIRECT_FOR_ROUTES = ['/checkout', '/order-confirmation'];
export const useSignIn = props => {
const {
getCartDetailsQuery,
setDefaultUsername,
showCreateAccount,
showForgotPassword
} = props;
const operations = mergeOperations(DEFAULT_OPERATIONS, props.operations);
const {
createCartMutation,
getCustomerQuery,
mergeCartsMutation,
signInMutation,
getStoreConfigQuery
} = operations;
const apolloClient = useApolloClient();
const [isSigningIn, setIsSigningIn] = useState(false);
const cartContext = useCartContext();
const [
{ cartId },
{ createCart, removeCart, getCartDetails }
] = cartContext;
const userContext = useUserContext();
const [
{ isGettingDetails, getDetailsError, userOnOrderSuccess },
{ getUserDetails, setToken }
] = userContext;
const eventingContext = useEventingContext();
const [, { dispatch }] = eventingContext;
const signInMutationResult = useMutation(signInMutation, {
fetchPolicy: 'no-cache'
});
const [signIn, { error: signInError }] = signInMutationResult;
const googleReCaptcha = useGoogleReCaptcha({
currentForm: 'CUSTOMER_LOGIN',
formAction: 'signIn'
});
const {
generateReCaptchaData,
recaptchaLoading,
recaptchaWidgetProps
} = googleReCaptcha;
const { data: storeConfigData } = useQuery(getStoreConfigQuery, {
fetchPolicy: 'cache-and-network',
nextFetchPolicy: 'cache-first'
});
const { customerAccessTokenLifetime } = useMemo(() => {
const storeConfig = storeConfigData?.storeConfig || {};
return {
customerAccessTokenLifetime:
storeConfig.customer_access_token_lifetime
};
}, [storeConfigData]);
const [fetchCartId] = useMutation(createCartMutation);
const [mergeCarts] = useMutation(mergeCartsMutation);
const fetchUserDetails = useAwaitQuery(getCustomerQuery);
const fetchCartDetails = useAwaitQuery(getCartDetailsQuery);
const formApiRef = useRef(null);
const setFormApi = useCallback(api => (formApiRef.current = api), []);
const history = useHistory();
const location = useLocation();
const handleSubmit = useCallback(
async ({ email, password }) => {
setIsSigningIn(true);
try {
// Get source cart id (guest cart id).
const sourceCartId = cartId;
// Get recaptchaV3 data for login
const recaptchaData = await generateReCaptchaData();
// Sign in and set the token.
const signInResponse = await signIn({
variables: {
email,
password
},
...recaptchaData
});
const token = signInResponse.data.generateCustomerToken.token;
await (customerAccessTokenLifetime
? setToken(token, customerAccessTokenLifetime)
: setToken(token));
// Clear all cart/customer data from cache and redux.
await apolloClient.clearCacheData(apolloClient, 'cart');
await apolloClient.clearCacheData(apolloClient, 'customer');
await removeCart();
// Create and get the customer's cart id.
await createCart({
fetchCartId
});
const destinationCartId = await retrieveCartId();
// Merge the guest cart into the customer cart.
await mergeCarts({
variables: {
destinationCartId,
sourceCartId
}
});
// Ensure old stores are updated with any new data.
await getUserDetails({ fetchUserDetails });
const { data } = await fetchUserDetails({
fetchPolicy: 'cache-only'
});
dispatch({
type: 'USER_SIGN_IN',
payload: {
...data.customer
}
});
getCartDetails({ fetchCartId, fetchCartDetails });
if (
userOnOrderSuccess &&
REDIRECT_FOR_ROUTES.includes(location.pathname)
) {
history.push('/order-history');
}
} catch (error) {
if (process.env.NODE_ENV !== 'production') {
console.error(error);
}
setIsSigningIn(false);
}
},
[
customerAccessTokenLifetime,
cartId,
generateReCaptchaData,
signIn,
setToken,
apolloClient,
removeCart,
createCart,
fetchCartId,
mergeCarts,
getUserDetails,
fetchUserDetails,
getCartDetails,
fetchCartDetails,
dispatch,
history,
location.pathname,
userOnOrderSuccess
]
);
const handleForgotPassword = useCallback(() => {
const { current: formApi } = formApiRef;
if (formApi) {
setDefaultUsername(formApi.getValue('email'));
}
showForgotPassword();
}, [setDefaultUsername, showForgotPassword]);
const forgotPasswordHandleEnterKeyPress = useCallback(
event => {
if (event.key === 'Enter') {
handleForgotPassword();
}
},
[handleForgotPassword]
);
const handleCreateAccount = useCallback(() => {
const { current: formApi } = formApiRef;
if (formApi) {
setDefaultUsername(formApi.getValue('email'));
}
showCreateAccount();
}, [setDefaultUsername, showCreateAccount]);
const handleEnterKeyPress = useCallback(
event => {
if (event.key === 'Enter') {
handleCreateAccount();
}
},
[handleCreateAccount]
);
const signinHandleEnterKeyPress = useCallback(
event => {
if (event.key === 'Enter') {
handleSubmit();
}
},
[handleSubmit]
);
const errors = useMemo(
() =>
new Map([
['getUserDetailsQuery', getDetailsError],
['signInMutation', signInError]
]),
[getDetailsError, signInError]
);
return {
errors,
handleCreateAccount,
handleEnterKeyPress,
signinHandleEnterKeyPress,
handleForgotPassword,
forgotPasswordHandleEnterKeyPress,
handleSubmit,
isBusy: isGettingDetails || isSigningIn || recaptchaLoading,
setFormApi,
recaptchaWidgetProps,
userContext,
cartContext,
eventingContext,
signInMutationResult,
googleReCaptcha,
isSigningIn,
setIsSigningIn,
fetchCartId,
mergeCarts,
fetchUserDetails,
fetchCartDetails
};
};