-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuseFetch.js
More file actions
36 lines (30 loc) · 795 Bytes
/
useFetch.js
File metadata and controls
36 lines (30 loc) · 795 Bytes
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
import { useState, useEffect } from 'react';
const useFetch = (url) => {
const [data, setData] = useState(null);
const [error, setError] = useState(null);
const [isFetching, setIsFetching] = useState(false);
useEffect(() => {
const run = async () => {
try {
setIsFetching(true);
const resultJSON = await fetch(url);
if (!resultJSON.ok) {
throw new Error(`Error while searching. Url that's failing: ${resultJSON.url}`);
}
const result = await resultJSON.json();
setData(result);
setIsFetching(false);
} catch (error) {
setError(error.message);
setIsFetching(false);
}
};
run();
}, [url]);
return {
data,
error,
isFetching
};
};
export default useFetch;