-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.tsx
More file actions
88 lines (73 loc) · 2.45 KB
/
Copy pathApp.tsx
File metadata and controls
88 lines (73 loc) · 2.45 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
import { StatusBar } from 'expo-status-bar';
import React, { useEffect } from 'react';
import { SafeAreaProvider } from 'react-native-safe-area-context';
import useCachedResources from './hooks/useCachedResources';
import useColorScheme from './hooks/useColorScheme';
import Navigation from './navigation';
// AWS
import Amplify, { Auth, API, graphqlOperation } from 'aws-amplify'
import config from './src/aws-exports'
import {withAuthenticator} from 'aws-amplify-react-native'
// graphQL
import {getUser} from './src/graphql/queries';
import {createUser} from './src/graphql/mutations';
Amplify.configure(config)
const randomImages = [
'https://hieumobile.com/wp-content/uploads/avatar-among-us-3.jpg',
'https://hieumobile.com/wp-content/uploads/avatar-among-us-4.jpg',
'https://hieumobile.com/wp-content/uploads/avatar-among-us-6.jpg',
'https://hieumobile.com/wp-content/uploads/avatar-among-us-9.jpg'
]
function App() {
const isLoadingComplete = useCachedResources();
const colorScheme = useColorScheme();
const getRandomImage = () =>{
return randomImages[Math.floor(Math.random() * randomImages.length)];
}
// run snippet when only when App is first mounted
useEffect(() => {
const fetchUser = async() => {
// get authanticated user from Auth
const userInfo = await Auth.currentAuthenticatedUser({ bypassCache: true });
if(userInfo){
// get User from backend using UserID from Auth
const userData = await API.graphql(
graphqlOperation(
getUser,
/*variables*/
{id: userInfo.attributes.sub}
)
)
if(userData.data.getUser){
// console.log("The User is already registered in the dataBase");
return;
}
const newUser = {
id: userInfo.attributes.sub,
name: userInfo.username,
imageUri: getRandomImage(),
status: 'Hey there, I am using .Chat',
}
await API.graphql(
graphqlOperation(
createUser,
{input: newUser} //Variables from newUser method
)
)
// if there is no user in DB with ID, then create one
}
}
fetchUser();
}, /**dependencies */[])
if (!isLoadingComplete) {
return null;
} else {
return (
<SafeAreaProvider>
<Navigation colorScheme={colorScheme} />
<StatusBar />
</SafeAreaProvider>
);
}
}
export default withAuthenticator(App)