-
Notifications
You must be signed in to change notification settings - Fork 2
/
App.tsx
442 lines (430 loc) · 13.5 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
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
import React, {useEffect, useState} from 'react';
import type {PropsWithChildren} from 'react';
import {
Image,
ImageBackground,
SafeAreaView,
ScrollView,
StatusBar,
StyleSheet,
Text,
TouchableOpacity,
useColorScheme,
View,
Button,
Alert,
BackHandler,
} from 'react-native';
import {
Colors,
DebugInstructions,
Header,
LearnMoreLinks,
ReloadInstructions,
} from 'react-native/Libraries/NewAppScreen';
import {createBottomTabNavigator} from '@react-navigation/bottom-tabs';
import HomeScreen from './screens/HomeScreen';
import {GestureHandlerRootView} from 'react-native-gesture-handler';
import PrizeScreen from './screens/PrizeScreen';
import BuyCadeScreen from './screens/BuyCadeScreen';
import GameScreen from './screens/GameScreen';
import {NavigationContainer} from '@react-navigation/native';
import {ApplicationProvider, Layout} from '@ui-kitten/components';
import Fontisto from 'react-native-vector-icons/Fontisto';
import AntDesign from 'react-native-vector-icons/AntDesign';
import FontAwesome from 'react-native-vector-icons/FontAwesome';
import FontAwesome6 from 'react-native-vector-icons/FontAwesome6';
import SimpleLineIcons from 'react-native-vector-icons/SimpleLineIcons';
import MaterialCommunityIcons from 'react-native-vector-icons/MaterialCommunityIcons';
import MaterialIcons from 'react-native-vector-icons/MaterialIcons';
import LoginScreen from './screens/LoginScreen';
import {clusterApiUrl} from '@solana/web3.js';
import {ConnectionProvider} from './components/providers/ConnectionProvider';
import {AuthorizationProvider} from './components/providers/AuthorizationProvider';
import BottomSheet from './components/BottomSheet';
import {MonoText, MonoTextSmall} from './components/StylesText';
import RedeemCade from './screens/RedeemCade';
import {createStackNavigator} from '@react-navigation/stack';
import Play from './screens/Play';
import SignUpScreen from './screens/SignUpScreen';
type SectionProps = PropsWithChildren<{
title: string;
}>;
const Tab = createBottomTabNavigator();
const Stack = createStackNavigator();
function App(): React.JSX.Element {
const background_image = require('./assets/images/ig2.png');
const isDarkMode = useColorScheme() === 'dark';
const DEVNET_ENDPOINT = clusterApiUrl('devnet');
const [bottomSheetVisible, setBottomSheetVisible] = useState(false);
const backgroundStyle = {
backgroundColor: isDarkMode ? Colors.darker : Colors.lighter,
};
const openBottomSheet = () => {
setBottomSheetVisible(true);
};
const closeBottomSheet = () => {
setBottomSheetVisible(false);
};
useEffect(() => {
const backAction = () => {
Alert.alert('Hold on!', 'Are you sure you want to go back?', [
{
text: 'Cancel',
onPress: () => null,
style: 'cancel',
},
{text: 'YES', onPress: () => BackHandler.exitApp()},
]);
return true;
};
const backHandler = BackHandler.addEventListener(
'hardwareBackPress',
backAction,
);
return () => backHandler.remove();
}, []);
return (
<>
<BottomSheet visible={bottomSheetVisible} onClose={closeBottomSheet}>
<ScrollView nestedScrollEnabled={true}>
<View>
<MonoText style={{textDecorationLine: 'underline'}}>
CadeCard #132
</MonoText>
</View>
<View className="mt-2">
<Text
style={{
color: 'white',
fontFamily: 'VT323-Regular',
fontSize: 22,
}}>
Card Type : Premium
</Text>
<Text
style={{
color: 'white',
fontFamily: 'VT323-Regular',
fontSize: 22,
}}>
Cade Balance : 100
</Text>
</View>
<View
className="relative"
style={{
width: '100%',
height: 230,
backgroundColor: 'gray',
marginTop: 20,
borderRadius: 7,
borderColor: 'white',
borderWidth: 2,
}}>
<ImageBackground
style={{flex: 1}}
borderRadius={5}
source={background_image}>
<View className="absolute top-0 left-0 ml-5 mt-5">
<Image
source={require('./assets/images/cadenew.png')}
className="w-12 h-12 rounded-full border border-white"
/>
</View>
<View className="absolute right-0 top-0 mr-5 mt-5">
<MonoTextSmall>44n5....q5S</MonoTextSmall>
</View>
<View className="absolute bottom-0 left-0 ml-5 mb-5">
<MonoText style={{textDecorationLine: 'underline'}}>
Bryant
<MonoText></MonoText>
</MonoText>
</View>
</ImageBackground>
</View>
<View className="items-center mt-5">
{/* <Link href={"/(tabs)/BuyCade"}> */}
<TouchableOpacity
className="border-2"
style={{
width: '90%',
height: 45,
borderRadius: 5,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: 'white',
borderColor: 'yellow',
}}
onPress={() => closeBottomSheet()}>
<MonoTextSmall style={{color: 'black'}}>
Refil Cade{' '}
<MaterialCommunityIcons
name="gas-station"
size={24}
color="black"
/>
</MonoTextSmall>
</TouchableOpacity>
{/* </Link> */}
</View>
<View className="items-center mt-5">
<TouchableOpacity
className="border-2"
style={{
width: '90%',
height: 45,
borderRadius: 5,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: 'white',
borderColor: 'yellow',
}}
onPress={() => closeBottomSheet()}>
<MonoTextSmall style={{color: 'black'}}>Close</MonoTextSmall>
</TouchableOpacity>
</View>
</ScrollView>
</BottomSheet>
<ConnectionProvider
config={{commitment: 'processed'}}
endpoint={DEVNET_ENDPOINT}>
<AuthorizationProvider>
<NavigationContainer>
<GestureHandlerRootView style={{flex: 1}}>
<Stack.Navigator
screenOptions={{
headerShown: false,
}}>
<Stack.Screen
options={{
headerShown: false,
}}
name="Home"
component={StackScreens}
/>
<Stack.Screen
options={{
headerShown: true,
headerTintColor: 'white',
headerStyle: {
backgroundColor: '#191414',
},
headerTitleStyle: {
fontFamily: 'VT323-Regular',
fontSize: 28,
},
}}
name="GameScreen"
component={GameScreen}
/>
<Stack.Screen
options={{
headerShown: true,
headerTintColor: 'white',
headerStyle: {
backgroundColor: '#191414',
},
headerTitleStyle: {
fontFamily: 'VT323-Regular',
fontSize: 28,
},
}}
name="LoginScreen"
component={LoginScreen}
/>
<Stack.Screen
options={{
headerShown: true,
headerTintColor: 'white',
headerStyle: {
backgroundColor: '#191414',
},
headerTitleStyle: {
fontFamily: 'VT323-Regular',
fontSize: 28,
},
}}
name="Play"
component={Play}
/>
<Stack.Screen
options={{
headerShown: true,
headerTintColor: 'white',
headerStyle: {
backgroundColor: '#191414',
},
headerTitleStyle: {
fontFamily: 'VT323-Regular',
fontSize: 28,
},
}}
name="SignUpScreen"
component={SignUpScreen}
/>
</Stack.Navigator>
</GestureHandlerRootView>
</NavigationContainer>
</AuthorizationProvider>
</ConnectionProvider>
</>
);
function StackScreens() {
return (
<Tab.Navigator
screenOptions={{
tabBarShowLabel: false,
headerShown: false,
tabBarStyle: {
position: 'absolute',
bottom: 0,
right: 0,
left: 0,
elevation: 0,
height: 60,
backgroundColor: '#191414',
},
tabBarActiveTintColor: 'yellow',
}}>
<Tab.Screen
name="Home"
component={HomeScreen}
options={{
tabBarLabel: 'Home',
tabBarIcon: ({color, size, focused}) => {
return (
<>
<FontAwesome6
name="gamepad"
size={size}
color={focused ? 'white' : 'gray'}
/>
<Text style={{fontFamily: 'VT323-Regular', fontSize: 16}}>
Arcade
</Text>
</>
);
},
}}
/>
<Tab.Screen
name="Prize"
component={PrizeScreen}
options={{
headerShown: true,
headerTintColor: 'white',
headerStyle: {
backgroundColor: '#191414',
},
headerTitleStyle: {
fontFamily: 'VT323-Regular',
fontSize: 28,
},
tabBarLabel: 'Prize',
tabBarIcon: ({color, size, focused}) => {
return (
<>
<AntDesign
name="gift"
size={size}
color={focused ? 'white' : 'gray'}
/>
<Text style={{fontFamily: 'VT323-Regular', fontSize: 16}}>
Prizes
</Text>
</>
);
},
}}
/>
<Tab.Screen
name="CadeCard"
component={HomeScreen}
options={{
title: 'Card',
tabBarIcon: ({color, size, focused}) => (
<>
<FontAwesome
name="credit-card"
color={focused ? 'white' : 'gray'}
size={size}
/>
<Text style={{fontFamily: 'VT323-Regular', fontSize: 16}}>
CadeCard
</Text>
</>
),
}}
listeners={() => ({
tabPress: e => {
e.preventDefault();
console.log('Herers');
openBottomSheet();
},
})}
/>
<Tab.Screen
name="BuyCade"
component={BuyCadeScreen}
options={{
headerShown: true,
headerTintColor: 'white',
headerStyle: {
backgroundColor: '#191414',
},
headerTitleStyle: {
fontFamily: 'VT323-Regular',
fontSize: 28,
},
tabBarLabel: 'BuyCade',
tabBarIcon: ({color, size, focused}) => {
return (
<>
<FontAwesome
name="dollar"
size={size}
color={focused ? 'white' : 'gray'}
/>
<Text style={{fontFamily: 'VT323-Regular', fontSize: 16}}>
BuyCade
</Text>
</>
);
},
}}
/>
<Tab.Screen
name="RedeemCade"
component={RedeemCade}
options={{
headerShown: true,
headerTintColor: 'white',
headerStyle: {
backgroundColor: '#191414',
},
headerTitleStyle: {
fontFamily: 'VT323-Regular',
fontSize: 28,
},
tabBarIcon: ({color, size, focused}) => {
return (
<>
<MaterialIcons
name="redeem"
size={size}
color={focused ? 'white' : 'gray'}
/>
<Text style={{fontFamily: 'VT323-Regular', fontSize: 16}}>
RedeemCade
</Text>
</>
);
},
}}
/>
</Tab.Navigator>
);
}
}
export default App;