-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
204 lines (187 loc) · 5.7 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
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
import { StatusBar } from 'expo-status-bar';
import React, {useEffect} from 'react'
import { AuthContext } from './components/context';
import { StyleSheet, Text, View, ActivityIndicator } from 'react-native';
import { NavigationContainer } from '@react-navigation/native';
import { createNativeStackNavigator } from '@react-navigation/native-stack';
import LoginScreen from './screens/LoginScreen';
import Profile from './screens/Profile';
import HomeScreen from './screens/HomeScreen';
import SearchScreen from "./screens/SearchScreen";
import MaterialIcons from 'react-native-vector-icons/MaterialIcons';
// import {createStackNavigator} from '@react-navigation/stack';
import {createBottomTabNavigator} from '@react-navigation/bottom-tabs';
import { createDrawerNavigator, DrawerItems } from '@react-navigation/drawer';
import AsyncStorage from '@react-native-async-storage/async-storage';
import { AppRegistry } from 'react-native-web';
console.disableYellowBox = true;
const Stack = createNativeStackNavigator();
const BottomTab = createBottomTabNavigator();
const Drawer=createDrawerNavigator();
function AppBottomStack() {
return (
<BottomTab.Navigator
screenOptions={{
headerShown: false,
tabBarStyle: {
backgroundColor: '#191825',
borderTopWidth: 0,
borderTopEndRadius: 24,
borderTopStartRadius: 24,
height: 60,
},
tabBarActiveTintColor: 'white',
tabBarInactiveTintColor: '#3A98B9',
}}>
<BottomTab.Screen
name="News"
component={HomeScreen}
options={{
tabKeyToHideLabel: true,
tabBarShowLabel: false,
tabBarIcon: ({color, size}) => (
<MaterialIcons name="home" color={color} size={size} />
),
}}
/>
<BottomTab.Screen
name="Search"
component={SearchScreen}
options={{
tabKeyToHideLabel: true,
tabBarShowLabel: false,
tabBarIcon: ({color, size}) => (
<MaterialIcons name="search" color={color} size={size} />
),
}}
/>
</BottomTab.Navigator>
);
}
function Navigation() {
return (
<Drawer.Navigator
drawerContent={props=> <Profile{...props}/>}
ScreenOptions={{
drawerType: "slide",
headerStyle: {
height: 60, // Specify the height of your custom header
backgroundColor: "blue",
elevation: 0,
shadowOpacity: 0,
},
headerShown: true ,
headerTitle: "News",
headerColor: "black",
headerTitleAlign: "center",}}
>
<Drawer.Screen name=" " component={AppBottomStack }
headerShown={false}
/>
</Drawer.Navigator>
);
}
export default function App() {
// const [isLoading,setIsLoading] = React.useState(true);
// const [userToken, setUserToken] = React.useState(null);
const initialLoginState={
isLoading:true,
userName: null,
userToken:null,
};
const loginReducer = (prevState, action) => {
switch (action.type) {
case 'RETRIEVE_TOKEN':
return {
...prevState,
userToken: action.token,
isLoading: false,
};
case 'LOGIN':
return {
...prevState,
userName: action.id,
userToken: action.token,
isLoading: false,
};
case 'LOGOUT':
return {
...prevState,
userName:null,
userToken:null,
isLoading:false,
};
case 'REGISTER':
return {
...prevState,
userName:null,
userToken:null,
isLoading:false,
};
}
};
const [loginState, dispatch] = React.useReducer(loginReducer,initialLoginState);
const authContext= React.useMemo(()=>({
signIn: async(userName, password) => {
let userToken;
userToken=null;
if(userName == 'user' && password == 'pass'){
try{
userToken = 'dfgdfg';
await AsyncStorage.setItem('userToken', userToken);
} catch(e){
console.log(e);
}
}
dispatch({ type: 'LOGIN', id: userName, token: userToken});
},
signOut: async()=>{
try{
await AsyncStorage.removeItem('userToken');
} catch(e){
console.log(e);
}
dispatch({ type: 'LOGOUT'});
},
signUp: ()=>{;
},
}),[]);
useEffect(()=>{
setTimeout(async()=>{
// setIsLoading(false);
let userToken;
userToken=null;
try{
userToken = await AsyncStorage.getItem('userToken');
} catch(e){
console.log(e);
}
dispatch({ type: 'REGISTER', token: userToken});
}, 1000);
}, []);
if (loginState.isLoading) {
return(
<View style={{flex:1, justifyContent: 'center', alignItems: 'center'}}>
<ActivityIndicator size="large"/>
</View>
)
}
return (
<AuthContext.Provider value = {authContext}>
<NavigationContainer>
<Stack.Navigator>
<Stack.Screen options={{ headerShown: false}} name="Login" component={LoginScreen} />
<Stack.Screen options={{ headerShown: false}} name="News" component={Navigation} />
</Stack.Navigator>
</NavigationContainer>
</AuthContext.Provider>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});