-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
71 lines (64 loc) · 1.81 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
import React, { useState } from "react";
import { StyleSheet, View, SafeAreaView } from "react-native";
import Header from "./components/Header";
import StartGameScreen from "./screens/StartGame";
import GameScreen from "./screens/GameScreen";
import GameOver from "./screens/GameOver";
import * as Font from "expo-font";
import AppLoading from "expo-app-loading";
const fetchFonts = async () => {
return Font.loadAsync({
"open-sans-bold": require("./assets/fonts/OpenSans-Bold.ttf"),
"open-sans": require("./assets/fonts/OpenSans-Regular.ttf"),
});
};
export default function App() {
const [userNumber, setUserNumer] = useState<any>();
const [guessRounds, setGuessRounds] = useState(0);
const [dataLoaded, setDataLoaded] = useState(false);
if (!dataLoaded) {
return (
<AppLoading
startAsync={fetchFonts}
onFinish={() => setDataLoaded(true)}
onError={(error) => console.log(error)}
/>
);
}
const configureNewGame = () => {
setGuessRounds(0);
setUserNumer(null);
};
const startGamehandler = (selectedNumber: any) => {
setUserNumer(selectedNumber);
setGuessRounds(0);
};
const gameOverHandler = (numberOfRounds: any) => {
setGuessRounds(numberOfRounds);
};
let content = <StartGameScreen onStartGame={startGamehandler} />;
if (userNumber && guessRounds <= 0) {
content = (
<GameScreen userChoice={userNumber} onGameOver={gameOverHandler} />
);
} else if (guessRounds > 0) {
content = (
<GameOver
roundsNumber={guessRounds}
userNumber={userNumber}
onRestart={configureNewGame}
/>
);
}
return (
<SafeAreaView style={styles.screen}>
<Header title="Guess a number" />
{content}
</SafeAreaView>
);
}
const styles = StyleSheet.create({
screen: {
flex: 1,
},
});