-
Notifications
You must be signed in to change notification settings - Fork 12
/
App.js
160 lines (145 loc) · 3.91 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
import React from "react";
import { Alert, NetInfo, Vibration, View } from "react-native";
import { Button } from "react-native-elements";
import { Teams } from "./components/teams";
import { Team } from "./components/team";
const equipos = [
{
id: "1",
nombre: "Equipo 1",
logo: "https://via.placeholder.com/600x300/77b300/ffffff?text=Logo+equipo",
estado: true,
jugadores: [{ nombre: "Hugo" }]
},
{
id: "2",
nombre: "Equipo 2",
logo: "https://via.placeholder.com/600x300/2eb8b8/ffffff?text=Logo+equipo",
estado: false,
jugadores: [{ nombre: "Paco" }, { nombre: "Luis" }]
},
{
id: "3",
nombre: "Equipo 3",
logo: "https://via.placeholder.com/600x300/0040ff/ffffff?text=Logo+equipo",
estado: true,
jugadores: [
{ nombre: "Susana" },
{ nombre: "Carolina" },
{ nombre: "Marina" }
]
},
{
id: "4",
nombre: "Equipo 4",
logo: "https://via.placeholder.com/600x300/ff00bf/ffffff?text=Logo+equipo",
estado: false,
jugadores: []
},
{
id: "5",
nombre: "Equipo 5",
logo: "https://via.placeholder.com/600x300/D2B48C/ffffff?text=Logo+equipo",
estado: true,
jugadores: [{ nombre: "Gabriela" }, { nombre: "Alonso" }]
}
];
export default class App extends React.Component {
constructor(props) {
super(props);
this.state = {
teamVisible: false,
selectedTeam: {},
offline: true,
equipos: equipos
};
}
componentDidMount() {
NetInfo.isConnected.addEventListener("connectionChange", isConnected => {
this.setState({
offline: !isConnected
});
if (isConnected) {
// Alert.alert("Conectado a Internet");
} else {
Alert.alert("Dispositivo sin conexión a Internet");
}
});
// NetInfo.addEventListener("connectionChange", connectionInfo => {
// if (connectionInfo.type == "none" || connectionInfo.type == "unknown") {
// Alert.alert("Dispositivo sin conexión a Internet");
// } else {
// Alert.alert("Conectado a Internet vía " + connectionInfo.type);
// }
// });
}
displayNetworkInfo() {
NetInfo.getConnectionInfo().then(connectionInfo => {
Alert.alert(
"Tipo de conexión " +
connectionInfo.type +
", EffectiveConnectionType: " +
connectionInfo.effectiveType
);
});
}
toggleTeam() {
Vibration.vibrate([1000, 2000, 3000]);
this.setState({
teamVisible: !this.state.teamVisible
});
}
displayTeam(equipo) {
this.setState({
selectedTeam: equipo
});
this.toggleTeam();
}
getData() {
NetInfo.isConnected.fetch().then(isConnected => {
if (isConnected) {
// Alert.alert("Datos enviados");
this.getRemoteTeams();
} else {
Alert.alert("Verifica tu conexión");
}
});
}
async getRemoteTeams() {
let response = await fetch("https://api-mi-liga.now.sh/api/equipos");
let responseJson = await response.json();
this.setState({
equipos: responseJson
});
}
render() {
return (
<View style={{ marginTop: 22 }}>
<Teams
equipos={this.state.equipos}
onSelectTeam={equipo => this.displayTeam(equipo)}
/>
<Team
visible={this.state.teamVisible}
equipo={this.state.selectedTeam}
onToggleTeam={() => this.toggleTeam()}
/>
<Button
style={{ marginTop: 20 }}
icon={{ name: "ios-wifi", type: "ionicon" }}
backgroundColor="#4CAF50"
title="Mostrar información de red"
onPress={() => this.displayNetworkInfo()}
/>
<Button
style={{ marginTop: 20 }}
icon={{ name: "ios-download", type: "ionicon" }}
backgroundColor="#17a2b8"
title="Obtener equipos"
onPress={() => this.getData()}
disabled={this.state.offline}
/>
</View>
);
}
}