-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
153 lines (137 loc) · 3.53 KB
/
App.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
import "react-native-get-random-values";
import "@ethersproject/shims";
import { StatusBar } from "expo-status-bar";
import { Button, StyleSheet, TextInput, Text, View } from "react-native";
import {
PrivyProvider,
useLoginWithEmail,
useOAuthFlow,
usePrivy,
} from "@privy-io/expo";
import { useState } from "react";
const appId = "<your-app-ID>";
function Content() {
const [email] = useState("");
const [otp, setOtp] = useState("");
const { user, logout } = usePrivy();
const { start } = useOAuthFlow();
const { sendCode, loginWithCode } = useLoginWithEmail();
if (user) {
return (
<View style={{ display: "flex", flexDirection: "column", gap: 10 }}>
<View>
<Text style={{ fontWeight: "bold" }}>User ID:</Text>
<Text style={{ fontWeight: "normal" }}>{user.id}</Text>
</View>
<View>
<Text style={{ fontWeight: "bold" }}>Created at: </Text>
<Text style={{ fontWeight: "normal" }}>
{new Date(user.created_at).toLocaleTimeString()}
</Text>
</View>
<View style={{ marginTop: 20 }}>
<Text style={{ fontWeight: "bold" }}>Linked Accounts </Text>
<Text
style={{ padding: 10, color: "white", backgroundColor: "gray" }}
>
{JSON.stringify(user.linked_accounts, null, 2)}{" "}
</Text>
</View>
<View style={{ width: "100%", backgroundColor: "gray" }}>
<Button title="Logout" color="white" onPress={logout} />
</View>
</View>
);
}
return (
<>
<StatusBar style="auto" />
<View
style={{
width: "50%",
backgroundColor: "gray",
margin: 20,
padding: 5,
}}
>
<Button
title="Login with google"
color="white"
onPress={() => start({ provider: "google" })}
/>
</View>
<View
style={{
width: "50%",
backgroundColor: "gray",
margin: 20,
padding: 5,
}}
>
<Button
title="Send Code"
color="white"
onPress={() => sendCode({ email })}
/>
</View>
<View
style={{
padding: 20,
borderColor: "gray",
borderWidth: 1,
display: "flex",
justifyContent: "center",
alignItems: "center",
}}
>
<TextInput
style={{ padding: 5 }}
placeholder="OTP"
value={otp}
onChangeText={setOtp}
/>
<View
style={{
width: "50%",
backgroundColor: "gray",
margin: 20,
padding: 5,
}}
>
<Button
title="Submit Code"
color="white"
onPress={() => loginWithCode({ code: otp })}
/>
</View>
</View>
</>
);
}
export default function App() {
if (appId === "<your-app-ID>") {
return (
<View style={[styles.container, { gap: 20 }]}>
<Text style={{ fontSize: 15, fontStyle: "italic", color: "blue" }}>
Fill in your appId prop on{" "}
</Text>
<Text style={{ fontSize: 20 }}>{"<PrivyProvider />"}</Text>
</View>
);
}
return (
<PrivyProvider appId={appId}>
<View style={styles.container}>
<Content />
</View>
</PrivyProvider>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff",
alignItems: "center",
justifyContent: "center",
},
});