I am trying to set timeout to API petition in case i get some error using get
, then Loader keeps running for at least 3 seconds to finally show a text sayd “no data or API connection/petition failed”.
I have Dashboard.jsx
that works perfectly if theres not error for url, server API fallen, etc.
To simulate an error i just changed url
and I turned off the server but i get TypeError: paciente.map is not a function
and Loader
dies instantly.
I tried setting timeout: 3000
in axios but get anything
JavaScript
x
75
75
1
export const Dashboard = (props) => {
2
const [paciente, setPaciente] = useState([]);
3
const [loading, setLoading] = useState(false);
4
const [error, setError] = useState(null);
5
const [errormsg, setErrormsg] = useState("");
6
7
const navigate = useNavigate();
8
let url = `${Apiurl}pacientes?page=1`;
9
useEffect(() => {
10
setLoading(true);
11
axios
12
.get(url)
13
.then((response) => {
14
if (!response.err) {
15
setPaciente(response.data);
16
setError(null);
17
} else {
18
setPaciente([]);
19
setError(response);
20
}
21
setLoading(false);
22
})
23
.catch((error) => {
24
setError(error);
25
setErrormsg("No data");
26
setLoading(false);
27
});
28
}, []);
29
const handleClick = (id) => {
30
navigate(`/edit/${id}`);
31
};
32
return (
33
<>
34
<Header />
35
{loading && (
36
<div className="loader-container">
37
<Loader />
38
</div>
39
)}
40
<div className="container">
41
<table className="table table-dark table-hover">
42
<thead>
43
<tr>
44
<th scope="col">ID</th>
45
<th scope="col">DNI</th>
46
<th scope="col">NOMBRE</th>
47
<th scope="col">TELEFONO</th>
48
<th scope="col">CORREO</th>
49
</tr>
50
</thead>
51
<tbody>
52
{!error ? (
53
paciente.map((data, i) => {
54
return (
55
<tr key={i} onClick={() => handleClick(data.PacienteId)}>
56
<td>{data.PacienteId}</td>
57
<td>{data.DNI}</td>
58
<td>{data.Nombre}</td>
59
<td>{data.Telefono}</td>
60
<td>{data.Correo}</td>
61
</tr>
62
);
63
})
64
) : (
65
<tr>
66
<td colSpan="5">{errormsg}</td>
67
</tr>
68
)}
69
</tbody>
70
</table>
71
</div>
72
</>
73
);
74
};
75
Advertisement
Answer
JavaScript
1
68
68
1
const navigate = useNavigate();
2
let url = `${Apiurl}pacientes?page=1`;
3
useEffect(() => {
4
setLoading(true);
5
axios
6
.get(url)
7
.then((response) => {
8
console.log('response ',response)
9
10
if (response?.data) {
11
setPaciente(response?.data);
12
setError(null);
13
}
14
setLoading(false);
15
})
16
.catch((response?.error) => {
17
setError(response?.error);
18
19
setErrormsg("No data");
20
setLoading(false);
21
});
22
}, []);
23
const handleClick = (id) => {
24
navigate(`/edit/${id}`);
25
};
26
return (
27
<>
28
<Header />
29
{loading && (
30
<div className="loader-container">
31
<Loader />
32
</div>
33
)}
34
<div className="container">
35
<table className="table table-dark table-hover">
36
<thead>
37
<tr>
38
<th scope="col">ID</th>
39
<th scope="col">DNI</th>
40
<th scope="col">NOMBRE</th>
41
<th scope="col">TELEFONO</th>
42
<th scope="col">CORREO</th>
43
</tr>
44
</thead>
45
<tbody>
46
{paciente.length > 0? (
47
paciente?.map((data, i) => {
48
return (
49
<tr key={i} onClick={() => handleClick(data.PacienteId)}>
50
<td>{data.PacienteId}</td>
51
<td>{data.DNI}</td>
52
<td>{data.Nombre}</td>
53
<td>{data.Telefono}</td>
54
<td>{data.Correo}</td>
55
</tr>
56
);
57
})
58
) : (
59
<tr>
60
<td colSpan="5">{errormsg}</td>
61
</tr>
62
)}
63
</tbody>
64
</table>
65
</div>
66
</>
67
);
68