-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
140 lines (129 loc) · 3.72 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
import React from "react";
import { Alert, Vibration, View } from "react-native";
import { Button } from "react-native-elements";
import NetInfo, { useNetInfo } from "@react-native-community/netinfo";
import { Team } from "./components/team"
import { Teams } from "./components/teams"
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.addEventListener(connectionInfo => {
if (connectionInfo.type == "none" || connectionInfo.type == "unknown") {
Alert.alert("Dispositivo sin conexion a internet");
} else {
this.setState({
offline: !connectionInfo.isConnected
});
Alert.alert("Conectado a Internet via " + connectionInfo.type);
}
});
}
displayNetworkInfo() {
NetInfo.fetch().then(connectionInfo => {
Alert.alert("Tipo de conexion " + connectionInfo.type
+ " EffectiveConnectionType: " + connectionInfo.details?.cellularGeneration);
console.log(connectionInfo);
});
}
toggleTeam() {
// Vibration.vibrate([10, 500, 250, 1000, 250, 500]);
Vibration.vibrate(10);
this.setState({
teamVisible: !this.state.teamVisible
});
}
displayTeam(equipo) {
this.setState({
selectedTeam: equipo
});
this.toggleTeam();
}
getData() {
NetInfo.fetch().then(connectionInfo => {
if (connectionInfo.isConnected) {
// Alert.alert("Datos enviados");
this.getRemoteTeams();
} else {
Alert.alert("Verifica tu conexion");
}
});
}
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, flex: 1, backgroundColor: '#9FA8D1' }}>
<Teams equipos={this.state.equipos} onSelectTeam={(equipo) => this.displayTeam(equipo)} />
<Team
visible={this.state.teamVisible}
equipo={this.state.selectedTeam}
onToggleTeam={() => this.toggleTeam()} />
<Button
buttonStyle={{ margin: 20, backgroundColor: "#4CAF50" }}
icon={{ name: "ios-wifi", type: "ionicon" }}
title="Mostrar informacion de red"
onPress={() => this.displayNetworkInfo()} />
<Button
buttonStyle={{ margin: 20, backgroundColor: "#17a2b8" }}
icon={{ name: "ios-send", type: "ionicon" }}
title="Enviar datos"
disabled={this.state.offline}
onPress={() => this.getData()} />
</View>
);
}
}