-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
79 lines (69 loc) · 2.32 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
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 { getUser } from './graphql/queries'
import { createUser } from './graphql/mutations'
import { withAuthenticator } from 'aws-amplify-react-native';
import Amplify, { Auth, API, graphqlOperation } from 'aws-amplify'
import config from './aws-exports'
Amplify.configure(config)
const randomImages = [
'https://notjustdev-dummy.s3.us-east-2.amazonaws.com/avatars/1.jpg',
'https://notjustdev-dummy.s3.us-east-2.amazonaws.com/avatars/2.jpg',
'https://notjustdev-dummy.s3.us-east-2.amazonaws.com/avatars/3.jpg',
'https://notjustdev-dummy.s3.us-east-2.amazonaws.com/avatars/4.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 () => {
// get Authenticated user from Auth
const userInfo = await Auth.currentAuthenticatedUser({ bypassCache: true });
if (userInfo) {
// get the user from Backend with the user ID from Auth
const userData = await API.graphql(
graphqlOperation(
getUser,
{ id: userInfo.attributes.sub }
)
);
if (userData.data.getUser) {
console.log("User is already registered in the DB");
return;
};
const newUser = {
id: userInfo.attributes.sub,
name: userInfo.username,
imageUri: getRandomImage(),
};
// if there is no user in DB with the id, then create one
await API.graphql(
graphqlOperation(
createUser,
{ input: newUser }
)
)
};
};
fetchUser();
}, []);
if (!isLoadingComplete) {
return null;
} else {
return (
<SafeAreaProvider>
<Navigation colorScheme={colorScheme} />
<StatusBar />
</SafeAreaProvider>
);
}
}
export default withAuthenticator(App)