-
Notifications
You must be signed in to change notification settings - Fork 1
/
App.js
142 lines (130 loc) · 4.13 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
import { useState, useEffect, useMemo } from "react";
import LoginScreen from "./screens/loginScreen";
// import LoadingScreen from "./screens/loadingScreen";
import {
NavigationContainer,
useNavigationContainerRef,
} from "@react-navigation/native";
import { createNativeStackNavigator } from "@react-navigation/native-stack";
import WelcomeScreen from "./screens/WelcomeScreen";
import EmojiScreen from "./screens/EmojiScreen";
import HomeScreen from "./screens/homeScreen";
import LogsScreen from "./screens/LogsScreen";
import CalendarScreen from "./screens/CalendarScreen";
import JournalScreen from "./screens/JournalScreen";
import NoteScreen from "./screens/NoteScreen";
import SearchResultsScreen from "./screens/SearchResultsScreen";
import ProfileScreen from "./screens/ProfileScreen";
import * as FileSystem from "expo-file-system";
// imports for integration with firebase
import "expo-dev-client";
import { GoogleSignin } from "@react-native-google-signin/google-signin";
import auth from "@react-native-firebase/auth";
// redux imports
import { Provider } from "react-redux";
import { store } from "./store/store";
import { ScrollView } from "react-native-web";
import tw from "tailwind-react-native-classnames";
import { useFonts } from "expo-font";
// import TestRecord from "./screens/TestRecord";
export default function App() {
const [user, setUser] = useState(null);
const [initializing, setInitializing] = useState(true);
const checkStorage = async () => {
const file = FileSystem.readDirectoryAsync();
};
GoogleSignin.configure({
webClientId:
"985628169597-hvqtufhr1or0f71b2udo27ontcv8s130.apps.googleusercontent.com",
});
const onAuthStateChanged = (user) => {
setUser(user);
};
useEffect(() => {
const subscriber = auth().onAuthStateChanged(onAuthStateChanged);
return subscriber;
}, []);
const Stack = createNativeStackNavigator();
const navigationRef = useNavigationContainerRef();
const [isLoaded] = useFonts({
inter: require("./assets/fonts/Inter-VariableFont.ttf"),
titan: require("./assets/fonts/TitanOne-Regular.ttf"),
});
return (
<Provider store={store}>
<>
{!user ? (
<LoginScreen />
) : (
<NavigationContainer ref={navigationRef}>
<Stack.Navigator>
<Stack.Screen
name="welcome"
component={WelcomeScreen}
options={{
headerShown: false,
}}
/>
<Stack.Screen
name="emoji"
component={EmojiScreen}
options={{
headerShown: false,
}}
/>
<Stack.Screen
name="home"
component={HomeScreen}
options={{
headerShown: false,
}}
/>
<Stack.Screen
name="logs"
component={LogsScreen}
options={{
headerShown: false,
}}
/>
<Stack.Screen
name="calendar"
component={CalendarScreen}
options={{
headerShown: false,
}}
/>
<Stack.Screen
name="journal"
component={JournalScreen}
options={{
headerShown: false,
}}
/>
<Stack.Screen
name="note"
component={NoteScreen}
options={{
headerShown: false,
}}
/>
<Stack.Screen
name="search"
component={SearchResultsScreen}
options={{
headerShown: false,
}}
/>
<Stack.Screen
name="profile"
component={ProfileScreen}
options={{
headerShown: false,
}}
/>
</Stack.Navigator>
</NavigationContainer>
)}
</>
</Provider>
);
}