forked from Savinvadim1312/WhatsappClone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
86 lines (72 loc) · 2.22 KB
/
App.tsx
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
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';
import {
Auth,
API,
graphqlOperation,
} from 'aws-amplify';
import { getUser } from './src/graphql/queries';
import { createUser } from './src/graphql/mutations';
import { withAuthenticator } from 'aws-amplify-react-native'
import Amplify from 'aws-amplify'
import config from './aws-exports'
Amplify.configure(config)
const randomImages = [
'https://hieumobile.com/wp-content/uploads/avatar-among-us-2.jpg',
'https://hieumobile.com/wp-content/uploads/avatar-among-us-3.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 this snippet only when App is first mounted
useEffect( () => {
const fetchUser = async () => {
const userInfo = await Auth.currentAuthenticatedUser({ bypassCache: true });
if (userInfo) {
const userData = await API.graphql(
graphqlOperation(
getUser,
{ id: userInfo.attributes.sub }
)
)
if (userData.data.getUser) {
console.log("User is already registered in database");
return;
}
const newUser = {
id: userInfo.attributes.sub,
name: userInfo.username,
imageUri: getRandomImage(),
status: 'Hey, I am using WhatsApp',
}
await API.graphql(
graphqlOperation(
createUser,
{ input: newUser }
)
)
}
}
fetchUser();
}, [])
if (!isLoadingComplete) {
return null;
} else {
return (
<SafeAreaProvider>
<Navigation colorScheme={colorScheme} />
<StatusBar />
</SafeAreaProvider>
);
}
}
export default withAuthenticator(App)