-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
77 lines (67 loc) · 1.89 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
import { StatusBar } from "expo-status-bar";
import React, { useState } from "react";
import { StyleSheet, Text, View } from "react-native";
// import * as Font from "expo-font";
// import AppLoading from "expo";
import Header from "./Components/Header";
import GameOverScreen from "./Screens/GameOverScreen";
import GameScreen from "./Screens/GameScreen";
import StartGameScreen from "./Screens/StartGameScreen";
// const featchFonts = () => {
// return Font.loadAsync({
// "open-sans": require("./assets/fonts/"),
// "open-sans-ilatic": require("./assets/fonts/OpenSans-Italic.ttf"),
// });
// };
export default function App() {
const [userNumber, SetUserNumber] = useState("");
const [guessRounds, SetGuessRounds] = useState(0);
// const [dataLoaded, SetDataLoaded] = useState(false);
// if (!dataLoaded) {
// return (
// <AppLoading
// startAsync={featchFonts}
// onFinish={() => {
// SetDataLoaded(true);
// }}
// onError={(err)=>{console.log(err)}}
// />
// );
// }
const startGameHandler = (selectedNumber) => {
SetUserNumber(selectedNumber);
SetGuessRounds(0);
};
const gameOverHandler = (numOfRounds) => {
SetGuessRounds(numOfRounds);
};
const configureNewGameHandler = () => {
SetGuessRounds(0);
SetUserNumber(null);
};
let content = <StartGameScreen onStartGame={startGameHandler} />;
if (userNumber && guessRounds <= 0) {
content = (
<GameScreen userChoice={userNumber} onGameOver={gameOverHandler} />
);
} else if (guessRounds > 0) {
content = (
<GameOverScreen
numberOfRounds={guessRounds}
userNumber={userNumber}
restartGame={configureNewGameHandler}
/>
);
}
return (
<View style={Styles.screen}>
<Header />
{content}
</View>
);
}
const Styles = StyleSheet.create({
screen: {
flex: 1,
},
});