-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
59 lines (54 loc) · 1.58 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
import "react-native-gesture-handler";
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 Amplify, { Auth, DataStore } from "aws-amplify";
import config from "./src/aws-exports";
import { withAuthenticator } from "aws-amplify-react-native";
Amplify.configure({
...config,
Analytics: {
disabled: true,
},
});
import { User } from "./src/models";
function App() {
const isLoadingComplete = useCachedResources();
const colorScheme = useColorScheme();
useEffect(() => {
const addUser = async () => {
const userInfo = await Auth.currentAuthenticatedUser();
if (!userInfo) return;
const userID = userInfo.attributes.sub;
const user = (await DataStore.query(User)).find(
(user) => user.userID === userID
);
if (!user) {
await DataStore.save(
new User({
userID: userID,
username: userInfo.attributes.email,
subscribers: 0,
})
);
} else {
console.log("User already exists");
}
};
addUser();
}, []);
if (!isLoadingComplete) {
return null;
} else {
return (
<SafeAreaProvider style={{ flex: 1 }}>
<Navigation colorScheme={"dark"} />
<StatusBar style="light" backgroundColor="#141414" />
</SafeAreaProvider>
);
}
}
export default withAuthenticator(App);