-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
124 lines (99 loc) · 3.49 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
import { useState, useEffect, useCallback } from 'react';
import { ImageBackground, SafeAreaView, StyleSheet } from 'react-native';
import StartGameScreen from './screens/StartGameScreen';
import { LinearGradient } from 'expo-linear-gradient';
import GameScreen from './screens/GameScreen';
import GameOverScreen from './screens/GameOverScreen';
import { StatusBar } from 'expo-status-bar';
import * as SplashScreen from 'expo-splash-screen';
import * as Font from 'expo-font';
// Keep the splash screen visible while we fetch resources
SplashScreen.preventAutoHideAsync();
export default function App() {
// State to hold the number that the user picked.
const [userNumber, setUserNumber] = useState(null);
// State to determine if the game over screen should be shown
const [gameIsOver, setGameIsOver] = useState(true);
// State to determine the guessing round.
const [guessRound, setGuessRounds] = useState(0)
// The state that determines if the loading screen should be shown.
const [appIsReady, setAppIsReady] = useState(false);
useEffect(() => {
async function prepare() {
try {
// Pre-load fonts, make any API calls you need to do here
await Font.loadAsync({
"open-sans": require("./assets/fonts/OpenSans-Regular.ttf"),
"open-sans-bold": require("./assets/fonts/OpenSans-Bold.ttf")
});
// Artificially delay for two seconds to simulate a slow loading
// experience.
// await new Promise(resolve => setTimeout(resolve, 2000));
} catch (e) {
console.warn(e);
} finally {
console.log('The app is ready!!');
// Tell the application to render
setAppIsReady(true);
}
}
prepare();
}, []);
const onLayoutRootView = useCallback(async () => {
if (appIsReady) {
// This tells the splash screen to hide immediately! If we call this after
// `setAppIsReady`, then we may see a blank screen while the app is
// loading its initial state and rendering its first pixels. So instead,
// we hide the splash screen once we know the root view has already
// performed layout.
await SplashScreen.hideAsync();
}
}, [appIsReady]);
if (!appIsReady) {
return null;
}
function pickedNumberHandler(pickedNumber) {
setUserNumber(pickedNumber);
setGameIsOver(false);
}
function gameOverHandler(numberOfRounds) {
setGameIsOver(true);
setGuessRounds(numberOfRounds);
}
function startNewGameHandler() {
setUserNumber(null);
setGuessRounds(0)
}
let screen = <StartGameScreen onConfirmNumber={pickedNumberHandler} />;
if(userNumber) {
screen = <GameScreen userNumber={userNumber} onGameOver={gameOverHandler}/>;
}
if(gameIsOver && userNumber) {
screen = <GameOverScreen roundsNumber={guessRound} userNumber={userNumber} onStartNewGame={startNewGameHandler}/>
}
return (
<>
<StatusBar style="light" />
<LinearGradient colors={['#ddb53f', '#83173d']} style={styles.rootScreen}>
<ImageBackground
source={require('./assets/images/background.png')}
resizeMode="cover"
style={styles.rootScreen}
imageStyle={styles.backgroundImage}
>
<SafeAreaView style={styles.rootScreen} onLayout={onLayoutRootView}>
{screen}
</SafeAreaView>
</ImageBackground>
</LinearGradient>
</>
);
}
const styles = StyleSheet.create({
rootScreen: {
flex: 1
},
backgroundImage: {
opacity: 0.15
}
});