-
Notifications
You must be signed in to change notification settings - Fork 239
Expand file tree
/
Copy pathHome.tsx
More file actions
455 lines (415 loc) · 12.7 KB
/
Copy pathHome.tsx
File metadata and controls
455 lines (415 loc) · 12.7 KB
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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
import React, { useState } from 'react';
import {
SafeAreaView,
ScrollView,
View,
Text,
StyleSheet,
Alert,
Platform,
} from 'react-native';
import {
useAuth0,
WebAuthError,
WebAuthErrorCodes,
PasskeyError,
PasskeyErrorCodes,
} from 'react-native-auth0';
import Button from '../../components/Button';
import Header from '../../components/Header';
import LabeledInput from '../../components/LabeledInput';
import Result from '../../components/Result';
import config from '../../auth0-configuration';
import {
createPasskey,
getPasskey,
PasskeyModuleErrorCodes,
} from '../../passkey/PasskeyModule';
const HomeScreen = () => {
const {
authorize,
resumeSession,
loginWithPasswordRealm,
sendEmailCode,
authorizeWithEmail,
passkeySignupChallenge,
passkeyLoginChallenge,
getTokenByPasskey,
error,
} = useAuth0();
const [email, setEmail] = useState('');
const [password, setPassword] = useState('');
const [otp, setOtp] = useState('');
const [showOtpInput, setShowOtpInput] = useState(false);
const [apiError, setApiError] = useState<Error | null>(null);
const [passkeyEmail, setPasskeyEmail] = useState('');
const [loading, setLoading] = useState(false);
const [lastResult, setLastResult] = useState<object | null>(null);
const onLogin = async () => {
try {
await authorize({
scope: 'openid profile email offline_access',
audience: `https://${config.domain}/api/v2/`,
});
} catch (e: any) {
if (e instanceof WebAuthError) {
switch (e.type) {
case WebAuthErrorCodes.USER_CANCELLED:
Alert.alert('Login Cancelled', 'You cancelled the login process.');
break;
case WebAuthErrorCodes.TIMEOUT_ERROR:
Alert.alert('Login Timeout', 'The login process timed out.');
break;
default:
Alert.alert('Authentication Error', e.message);
}
} else {
Alert.alert('Error', 'An unexpected error occurred during login.');
}
}
};
const onResumeSession = async () => {
try {
const credentials = await resumeSession();
if (credentials) {
Alert.alert('Recovered', 'Login was recovered after process death.');
} else {
Alert.alert('Nothing to recover', 'No pending login was found.');
}
} catch (e) {
setApiError(e as Error);
}
};
const onLoginWithPassword = async () => {
try {
await loginWithPasswordRealm({
username: email,
password: password,
realm: 'Username-Password-Authentication',
});
} catch (e) {
setApiError(e as Error);
}
};
const onSendEmailCode = async () => {
try {
await sendEmailCode({ email });
setShowOtpInput(true);
Alert.alert('Success', 'Check your email for the one-time code.');
} catch (e) {
setApiError(e as Error);
}
};
const onLoginWithEmailCode = async () => {
try {
await authorizeWithEmail({ email, code: otp });
} catch (e) {
setApiError(e as Error);
}
};
// --- Passkey Handlers ---
const handlePasskeyError = (e: any) => {
if (e?.code === PasskeyModuleErrorCodes.USER_CANCELLED) {
Alert.alert('Cancelled', 'You dismissed the passkey prompt.');
setApiError(e as Error);
return;
}
if (e instanceof PasskeyError) {
switch (e.type) {
case PasskeyErrorCodes.NOT_AVAILABLE:
Alert.alert(
'Not Available',
'Passkeys are not supported on this device.'
);
break;
case PasskeyErrorCodes.CHALLENGE_FAILED:
Alert.alert('Challenge Failed', e.message);
break;
case PasskeyErrorCodes.EXCHANGE_FAILED:
Alert.alert('Exchange Failed', e.message);
break;
default:
Alert.alert('Passkey Error', `[${e.type}] ${e.message}`);
}
}
setApiError(e as Error);
};
// --- Full-flow passkey handlers ---
const onPasskeySignup = async () => {
setApiError(null);
setLastResult(null);
setLoading(true);
try {
const challenge = await passkeySignupChallenge({
email: passkeyEmail || undefined,
realm: 'Username-Password-Authentication',
});
const credentialJson = await createPasskey(challenge.authParamsPublicKey);
const credentials = await getTokenByPasskey({
authSession: challenge.authSession,
authResponse: credentialJson,
realm: 'Username-Password-Authentication',
});
setLastResult({
step: 'signup-complete',
accessToken: `${credentials.accessToken.substring(0, 30)}...`,
tokenType: credentials.tokenType,
});
Alert.alert('Success', 'Passkey signup complete!');
} catch (e) {
handlePasskeyError(e);
} finally {
setLoading(false);
}
};
const onPasskeyLogin = async () => {
setApiError(null);
setLastResult(null);
setLoading(true);
try {
const challenge = await passkeyLoginChallenge({
realm: 'Username-Password-Authentication',
});
const credentialJson = await getPasskey(challenge.authParamsPublicKey);
const credentials = await getTokenByPasskey({
authSession: challenge.authSession,
authResponse: credentialJson,
realm: 'Username-Password-Authentication',
});
setLastResult({
step: 'login-complete',
accessToken: `${credentials.accessToken.substring(0, 30)}...`,
tokenType: credentials.tokenType,
});
Alert.alert('Success', 'Passkey login complete!');
} catch (e) {
handlePasskeyError(e);
} finally {
setLoading(false);
}
};
// --- Step-by-step handlers for testing individual methods ---
const onTestChallenge = async (type: 'signup' | 'login') => {
setApiError(null);
setLastResult(null);
setLoading(true);
try {
const challenge =
type === 'signup'
? await passkeySignupChallenge({
email: passkeyEmail || undefined,
realm: 'Username-Password-Authentication',
})
: await passkeyLoginChallenge({
realm: 'Username-Password-Authentication',
});
setLastResult({
step: `${type}Challenge`,
authSession: challenge.authSession,
authParamsPublicKey: challenge.authParamsPublicKey,
});
console.log(`${type} challenge:`, JSON.stringify(challenge, null, 2));
} catch (e) {
handlePasskeyError(e);
} finally {
setLoading(false);
}
};
const onTestExchange = async () => {
const result = lastResult as any;
if (!result?.authSession || !result?.authParamsPublicKey) {
Alert.alert(
'Error',
'Run a challenge first (Signup Challenge or Login Challenge).'
);
return;
}
setApiError(null);
setLoading(true);
try {
const isSignup = result.step === 'signupChallenge';
const credentialJson = isSignup
? await createPasskey(result.authParamsPublicKey)
: await getPasskey(result.authParamsPublicKey);
const credentials = await getTokenByPasskey({
authSession: result.authSession,
authResponse: credentialJson,
realm: 'Username-Password-Authentication',
});
setLastResult({
step: 'exchange',
accessToken: `${credentials.accessToken.substring(0, 30)}...`,
tokenType: credentials.tokenType,
});
Alert.alert('Success', 'Token exchange complete!');
} catch (e) {
handlePasskeyError(e);
} finally {
setLoading(false);
}
};
return (
<SafeAreaView style={styles.container}>
<Header title="Welcome" />
<ScrollView contentContainerStyle={styles.content}>
<Text style={styles.title}>React Native Auth0 Hooks</Text>
{error && <Result title="Hook Error" error={error} result={null} />}
{apiError && (
<Result title="API Error" error={apiError} result={null} />
)}
<Section title="Web Auth (Recommended)">
<Button onPress={onLogin} title="Log In" />
{Platform.OS === 'android' && (
<>
<Text style={styles.description}>
Recovers a login that completed after the OS killed the app
process. No-op on iOS/web.
</Text>
<Button onPress={onResumeSession} title="Resume Session" />
</>
)}
</Section>
<Section title="Database Login">
<LabeledInput
label="Username or Email"
value={email}
onChangeText={setEmail}
autoCapitalize="none"
/>
<LabeledInput
label="Password"
value={password}
onChangeText={setPassword}
secureTextEntry
/>
<Button onPress={onLoginWithPassword} title="Log In with Password" />
</Section>
<Section title="Passwordless (Email OTP)">
<LabeledInput
label="Email"
value={email}
onChangeText={setEmail}
autoCapitalize="none"
keyboardType="email-address"
/>
<Button onPress={onSendEmailCode} title="Send Email Code" />
{showOtpInput && (
<>
<LabeledInput
label="One-Time Code"
value={otp}
onChangeText={setOtp}
keyboardType="numeric"
/>
<Button onPress={onLoginWithEmailCode} title="Log In with Code" />
</>
)}
</Section>
{Platform.OS !== 'web' && (
<Section title="Passkeys">
<Text style={styles.description}>
Full passkey flow: challenge → credential manager → exchange.
</Text>
<LabeledInput
label="Email (for signup)"
value={passkeyEmail}
onChangeText={setPasskeyEmail}
autoCapitalize="none"
keyboardType="email-address"
/>
<View style={styles.row}>
<Button
onPress={onPasskeySignup}
title="Sign Up with Passkey"
loading={loading}
style={styles.halfButton}
/>
<Button
onPress={onPasskeyLogin}
title="Sign In with Passkey"
loading={loading}
style={styles.halfButton}
/>
</View>
<Text style={[styles.description, { marginTop: 12 }]}>
Or test individual steps:
</Text>
<View style={styles.row}>
<Button
onPress={() => onTestChallenge('signup')}
title="Signup Challenge"
loading={loading}
style={styles.halfButton}
/>
<Button
onPress={() => onTestChallenge('login')}
title="Login Challenge"
loading={loading}
style={styles.halfButton}
/>
</View>
<Button
onPress={onTestExchange}
title="Exchange for Tokens"
loading={loading}
/>
{lastResult && (
<View style={styles.resultBox}>
<Text style={styles.resultLabel}>Last Result:</Text>
<Text style={styles.resultValue} numberOfLines={8}>
{JSON.stringify(
lastResult,
(key, val) => (key.startsWith('_') ? undefined : val),
2
)}
</Text>
</View>
)}
</Section>
)}
</ScrollView>
</SafeAreaView>
);
};
const Section = ({
title,
children,
}: {
title: string;
children: React.ReactNode;
}) => (
<View style={styles.section}>
<Text style={styles.sectionTitle}>{title}</Text>
{children}
</View>
);
const styles = StyleSheet.create({
container: { flex: 1, backgroundColor: '#FFFFFF' },
content: { padding: 16, gap: 20 },
title: {
fontSize: 24,
fontWeight: 'bold',
marginBottom: 20,
textAlign: 'center',
},
section: {
borderWidth: 1,
borderColor: '#E0E0E0',
borderRadius: 8,
padding: 16,
gap: 10,
},
sectionTitle: { fontSize: 18, fontWeight: 'bold', marginBottom: 8 },
description: { fontSize: 13, color: '#666', marginBottom: 4 },
row: { flexDirection: 'row', gap: 8 },
halfButton: { flex: 1, minWidth: 0 },
resultBox: {
backgroundColor: '#F5F5F5',
borderRadius: 6,
padding: 10,
gap: 4,
},
resultLabel: { fontSize: 12, fontWeight: '600', color: '#333' },
resultValue: { fontSize: 11, color: '#555', fontFamily: 'monospace' },
});
export default HomeScreen;