-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
35 lines (30 loc) · 952 Bytes
/
index.ts
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
import { useEffect, useState } from "react";
/**
* Custom React hook for fetching data asynchronously.
* @param {Function} fetchData - A function that returns a promise which resolves to the fetched data.
* @returns An object containing the fetched data, loading state, and error state.
* @template T - The type of data being fetched.
*/
export function useFetch<T>(fetchData: () => Promise<T>) {
const [data, setData] = useState<T>();
const [loading, setLoading] = useState(false);
const [error, setError] = useState<unknown>();
useEffect(() => {
setLoading(true);
(async () => {
try {
const res = await fetchData();
setData(res);
} catch (error) {
setError(error);
} finally {
setLoading(false);
}
})()
}, [fetchData])
return {
data,
loading,
error
}
}