-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
226 lines (218 loc) · 5.88 KB
/
Copy pathApp.js
File metadata and controls
226 lines (218 loc) · 5.88 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
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
import React, { useEffect, useState } from "react";
import Dashboard from "./Screens/DashBoard";
import HomeScreen from "./Screens/Main";
import VerifyScreen from "./Screens/VerifyScreen";
import UsersScreen from "./Screens/UsersScreen";
import { Alert, View, Text, TouchableOpacity, Dimensions } from "react-native";
import Icon from "react-native-vector-icons/Ionicons";
import {
NavigationContainer,
useNavigation,
DrawerActions,
} from "@react-navigation/native";
import {
createDrawerNavigator,
useDrawerStatus,
} from "@react-navigation/drawer";
import { createNativeStackNavigator } from "@react-navigation/native-stack";
import * as auth from "expo-local-authentication";
import * as Updates from "expo-updates";
import * as Permissions from "expo-permissions";
import * as Notifications from "expo-notifications";
import Toast from "react-native-root-toast";
import { RootSiblingParent } from "react-native-root-siblings";
import * as Network from "expo-network";
const Stack = createNativeStackNavigator();
const Drawer = createDrawerNavigator();
const { height, width } = Dimensions.get("window");
async function authenticate() {
const state = await auth.authenticateAsync();
if (state.success == true) {
return true;
} else {
authenticate();
}
}
async function checkUpdate() {
const net = await Network.getNetworkStateAsync();
if (!net.isInternetReachable) {
toast.show("No internet", { duration: Toast.durations.SHORT });
return true;
}
let toast = Toast.show("Checking", {
duration: Toast.durations.SHORT,
backgroundColor: "grey",
});
const update = await Updates.fetchUpdateAsync();
const check = await Updates.checkForUpdateAsync();
try {
if (check.isAvailable) {
Alert.alert("Update available", "", [
{ text: "Install", onPress: () => Updates.reloadAsync() },
{
text: "Cancel",
onPress: () => console.log("cancel"),
style: "cancel",
},
]);
} else {
Alert.alert("Latest version installed");
}
} catch (e) {
console.log(e);
}
}
export default function App({ navigation }) {
authenticate();
const [token, setToken] = useState("");
return (
<View style={{ flex: 1, backgroundColor: "#090C21" }}>
<NavigationContainer>
<Stack.Navigator initialRouteName="Drawer">
<Stack.Screen
name="Home"
component={HomeScreen}
options={{
title: "Articles",
headerStyle: {
backgroundColor: "#17172c",
},
headerTitleStyle: {
fontWeight: "bold",
color: "white",
},
headerTintColor: "white",
}}
/>
<Stack.Screen
name="Verify"
component={VerifyScreen}
options={{
title: "Verify user",
headerStyle: {
backgroundColor: "#17172c",
},
headerTitleStyle: {
fontWeight: "bold",
color: "white",
},
headerTintColor: "white",
}}
/>
<Stack.Screen
name="Drawer"
component={DrawerApp}
options={{
headerStyle: {
backgroundColor: "#17172c",
},
headerTitle: () => Header({ navigation }),
}}
/>
<Stack.Screen
name="Users"
component={UsersScreen}
options={{
title: "Users",
headerStyle: {
backgroundColor: "#17172c",
},
headerTitleStyle: {
fontWeight: "bold",
color: "white",
},
headerTintColor: "white",
}}
/>
</Stack.Navigator>
</NavigationContainer>
</View>
);
}
function DrawerApp() {
return (
<Drawer.Navigator drawerContent={() => <DrawerContent />}>
<Drawer.Screen
name="Dash"
component={Dashboard}
options={{
headerStyle: {
backgroundColor: "#17172c",
},
headerTitleStyle: {
fontWeight: "bold",
color: "red",
},
}}
/>
</Drawer.Navigator>
);
}
function DrawerContent() {
return (
<RootSiblingParent>
<View
style={{
backgroundColor: "#090C21",
alignItems: "center",
height: "100%",
}}
>
<TouchableOpacity
style={{
position: "absolute",
width: "75%",
borderRadius: 10,
height: 40,
justifyContent: "center",
alignItems: "center",
backgroundColor: "#1D1E33",
bottom: 50,
}}
onPress={() => checkUpdate()}
>
<Text style={{ color: "white" }}>Check for update</Text>
</TouchableOpacity>
<Text style={{ color: "grey", position: "absolute", bottom: 25 }}>
{Updates.manifest.version}
</Text>
</View>
</RootSiblingParent>
);
}
function Header() {
const navigation = useNavigation();
const [open, setOpen] = useState(true);
return (
<View
style={{
flexDirection: "row",
height: "100%",
width: "100%",
}}
>
<TouchableOpacity
onPress={() => {
navigation.dispatch(DrawerActions.toggleDrawer());
open ? setOpen(false) : setOpen(true);
}}
>
{open ? (
<Icon name="menu" size={25} color="white" />
) : (
<Icon name="close" size={25} color="white" />
)}
</TouchableOpacity>
<Text
style={{
color: "white",
fontWeight: "bold",
fontSize: 20,
marginLeft: height / 11,
}}
>
Welpie Dashboard
</Text>
</View>
);
}