-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
179 lines (163 loc) · 4.57 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
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
import 'react-native-gesture-handler';
import {NavigationContainer} from '@react-navigation/native';
import {createStackNavigator} from '@react-navigation/stack';
import React, { useState, useContext } from 'react';
import { DefaultTheme,
Provider as PaperProvider,
Button,
Portal,
Snackbar,
ActivityIndicator, Colors } from 'react-native-paper';
import {StyleSheet, Text, View} from 'react-native'
import ProductList from './components/productList';
import ProductDetails from './components/productDetails';
import ProductEdit from './components/productEdit';
import ProductAdd from './components/productAdd';
import Login from './components/login';
import Signup from './components/signup';
import AuthContxt, { AuthContextProvider } from './components/contexts/AuthContext';
import { apiClient } from './components/apiClient'
const theme = {
...DefaultTheme,
colors: {
...DefaultTheme.colors,
primary: 'coral',
accent: 'yellow',
},
};
const Stack = createStackNavigator();
export default function App() {
const [errorVisibility, setErrorVisibility] = useState(false);
const [errorMsg, setErrorMsg] = useState(null);
const [loadingState, setLoadingState] = useState(true);
return (
<AuthContextProvider
setErrorVisibility={setErrorVisibility}
setErrorMsg={setErrorMsg}
setLoadingState={setLoadingState}
>
<PaperProvider theme={theme}>
<AppContent loadingState={loadingState} />
{errorMsg && <AppErrors
errorVisibility={errorVisibility}
setErrorVisibility={setErrorVisibility}
errorMsg={errorMsg} />}
</PaperProvider>
</AuthContextProvider>
);
}
function AppErrors({errorVisibility, setErrorVisibility, errorMsg}){
const stringError = (error, msg) => {
try{
for (const [key, value] of Object.entries(error)){
if(value instanceof Array){
msg += `\n${stringError(value, "")}`
}
else{
msg += `${value}\n`;
}}}catch{
msg = "An unexpected error occured";
}
return msg;
}
return (
<Portal>
<Snackbar
theme={{colors:{accent:'red'}}}
style = {styles.errorStyle}
visible={errorVisibility}
onDismiss={()=>setErrorVisibility(!errorVisibility)}>
<Text style={styles.errorText}>{stringError(errorMsg, "")}</Text>
</Snackbar>
</Portal>
)
}
function AppContent({loadingState}){
const currContxt = useContext(AuthContxt);
return (
<>
{loadingState?(
<View style={styles.activityStyle} >
<ActivityIndicator animating={true} color={Colors.red800}/>
</View>
):(
<NavigationContainer>
<Stack.Navigator>
{currContxt.userdata?(
<>
<Stack.Screen
name='Products'
component={ProductList}
options={{
headerRight:(navigation)=> <LogoutBtn navigation={navigation} />
}}
/>
<Stack.Screen
// should have conditional rendering
// buttons for editing of product
name='Details'
component={ProductDetails}
options={{
headerRight:(navigation)=> <LogoutBtn navigation={navigation} />
}}
/>
{currContxt.userdata && currContxt.userdata.user.is_admin &&
<>
<Stack.Screen
name='Edit'
component={ProductEdit}
options={{
headerRight:(navigation)=> <LogoutBtn navigation={navigation} />
}}
/>
<Stack.Screen
name='Add'
component={ProductAdd}
options={{
headerRight:(navigation)=> <LogoutBtn navigation={navigation} />
}}
/>
</>}
</>
):(
<>
<Stack.Screen
name='Login'
component={Login}
/>
<Stack.Screen
name='Signup'
component={Signup}
/>
</>)
}
</Stack.Navigator>
</NavigationContainer>
)}
</>
)
}
function LogoutBtn({navigation}){
const currContext = useContext(AuthContxt);
return(
<Button onPress={()=>currContext.logoutUser()}>
Logout
</Button>
)
}
const styles = StyleSheet.create({
errorStyle:{
backgroundColor:'#ffe6e6',
borderWidth:2,
borderColor:'red',
borderRadius:5,
},
errorText:{
color: 'red'
},
activityStyle:{
flex:1,
alignItems:'center',
justifyContent:'center',
}
})