-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
115 lines (102 loc) · 2.87 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
import React from 'react';
import { StyleSheet, Text, View, Button, Image } from 'react-native';
import Topo from './src/components/Topo';
import Icone from './src/components/Icone';
export default class App extends React.Component {
constructor(props) {
super(props);
this.state = {
escolhaUsuario : '',
escolhaComputador : '',
resultado : ''
};
}
jokenpo(escolhaUsuario) {
//gera números aleatórios (0, 1, 2)
let numAleatorio = Math.floor(Math.random() * 3);
let escolhaComputador = null;
let resultado = null;
switch(numAleatorio) {
case 0:
escolhaComputador = 'pedra';
break;
case 1:
escolhaComputador = 'papel';
break;
case 2:
escolhaComputador = 'tesoura';
break;
}
if (escolhaComputador == escolhaUsuario) { return 'Empate'; }
if (escolhaComputador == 'pedra') {
if (escolhaUsuario == 'papel') {
resultado = 'Você ganhou';
} else {
resultado = 'Você perdeu';
}
}
if (escolhaComputador == 'papel') {
if (escolhaUsuario == 'tesoura') {
resultado = 'Você ganhou';
} else {
resultado = 'Você perdeu';
}
}
if (escolhaComputador == 'tesoura') {
if (escolhaUsuario == 'pedra') {
resultado = 'Você ganhou';
} else {
resultado = 'Você perdeu';
}
}
this.setState({
escolhaUsuario : escolhaUsuario,
escolhaComputador: escolhaComputador,
resultado : resultado
});
}
render() {
return (
<View>
<Topo />
<View style={styles.painelAcoes}>
<View style={styles.btnEscolha}>
<Button title="pedra" onPress={ () => { this.jokenpo('pedra') } }></Button>
</View>
<View style={styles.btnEscolha}>
<Button title="papel" onPress={ () => { this.jokenpo('papel') } }></Button>
</View>
<View style={styles.btnEscolha}>
<Button title="tesoura" onPress={ () => { this.jokenpo('tesoura') } }></Button>
</View>
</View>
<View style={styles.palco}>
<Text style={styles.lblResultado}>{ this.state.resultado }</Text>
<Icone escolha={this.state.escolhaComputador } jogador='Computador' />
<Icone escolha={this.state.escolhaUsuario } jogador='Você' />
</View>
</View>
);
}
}
const styles = StyleSheet.create({
btnEscolha: {
width: 90,
height: 60
},
painelAcoes: {
flexDirection: 'row',
justifyContent: 'space-between',
marginTop: 10
},
palco: {
alignItems: 'center',
marginTop: 10,
},
lblResultado: {
fontSize: 25,
fontWeight: 'bold',
color: 'red',
height: 60
}
});