-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefaultMenu.js
100 lines (95 loc) · 3.42 KB
/
defaultMenu.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
import React, { useState, useContext } from 'react';
import {
StyleSheet,
View,
Text,
TouchableOpacity,
Image,
} from 'react-native';
import * as Haptics from 'expo-haptics';
import { SettingsContext } from './settings/SettingsContext';
import CustomText from './CustomText';
import SettingsSVG from './assets/settings.svg';
import TrophySVG from './assets/trophy.svg';
{/* <TouchableOpacity onPress = { ()=> {
Haptics.notificationAsync(Haptics.NotificationFeedbackType.Success)
or
Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Light)
or
Haptics.selectionAsync()
} } > </TouchableOpacity> */}
export const DefaultMenu = ({ restart, showFullMenu, first, score, setMenu }) => {
const settingsContext = useContext(SettingsContext);
return(
<View style={styles.container}>
<TouchableOpacity onPress={() => {
showFullMenu && setMenu('gameMode')
Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Medium)
}}>
<CustomText style={styles.gameModeTxt} hide={!showFullMenu}>Change{'\n'}Game Mode{'\n\n'}{settingsContext.gameMode.name}</CustomText>
</TouchableOpacity>
<View style={styles.scores}>
<CustomText style={styles.scoreTxt}>Best: {parseInt(settingsContext.highScores?.[settingsContext.gameMode.id])}</CustomText>
<CustomText style={styles.scoreTxt} hide={first}>Score: {score}</CustomText>
</View>
<TouchableOpacity onPress={() => {
restart()
Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Light)
}}>
<CustomText style={styles.startTxt} hide={!showFullMenu}>Play</CustomText>
</TouchableOpacity>
<View style={styles.iconsContainer}>
<TouchableOpacity onPress={() => {
showFullMenu && setMenu('leaderboard')
Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Medium)
}} style={[styles.icon, {
opacity: showFullMenu ? 1 : 0,
}]}>
<TrophySVG width={'100%'} height={'100%'} fill={settingsContext.theme.complementary} />
</TouchableOpacity>
<TouchableOpacity onPress={() => {
showFullMenu && setMenu('settings')
Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Medium)
}} style={[styles.icon, {
opacity: showFullMenu ? 1 : 0,
}]}>
<SettingsSVG width={'100%'} height={'100%'} fill={settingsContext.theme.complementary} />
</TouchableOpacity>
</View>
</View>
);
};
const styles = StyleSheet.create({
container: {
height: '100%',
justifyContent: 'space-around',
alignItems: 'center',
},
startTxt: {
fontSize: 48,
fontFamily: 'Billy-Bold',
textAlign: 'center',
},
scores: {
// paddingVertical: 20,
},
scoreTxt: {
fontSize: 32,
textAlign: 'center',
// paddingVertical: 5,
},
gameModeTxt: {
fontFamily: 'Billy-Bold',
textAlign: 'center',
fontSize: 32,
},
iconsContainer: {
width: '50%',
flexDirection: 'row',
justifyContent: 'space-around',
},
icon: {
width: 40,
height: 40,
},
});