umami/hooks/useFetch.js

61 lines
1.5 KiB
JavaScript
Raw Normal View History

import { useState, useEffect } from 'react';
import { saveQuery } from 'store/queries';
2022-02-23 08:52:31 +01:00
import useApi from './useApi';
2020-10-09 21:39:03 +02:00
export default function useFetch(url, options = {}, update = []) {
2020-11-10 06:01:53 +01:00
const [response, setResponse] = useState();
const [error, setError] = useState();
const [loading, setLoadiing] = useState(false);
2020-10-11 07:36:55 +02:00
const [count, setCount] = useState(0);
2022-02-23 08:52:31 +01:00
const { get } = useApi();
const { params = {}, headers = {}, disabled, delay = 0, interval, onDataLoad } = options;
2020-10-11 07:36:55 +02:00
async function loadData(params) {
try {
setLoadiing(true);
setError(null);
const time = performance.now();
2022-02-23 08:52:31 +01:00
const { data, status, ok } = await get(url, params, headers);
await saveQuery(url, { time: performance.now() - time, completed: Date.now() });
if (status >= 400) {
setError(data);
2020-11-10 06:01:53 +01:00
setResponse({ data: null, status, ok });
} else {
2020-11-10 06:01:53 +01:00
setResponse({ data, status, ok });
}
2020-10-09 21:39:03 +02:00
onDataLoad?.(data);
} catch (e) {
console.error(e);
setError(e);
} finally {
setLoadiing(false);
}
}
useEffect(() => {
2020-10-09 08:26:05 +02:00
if (url && !disabled) {
2020-10-11 07:36:55 +02:00
const id = setTimeout(() => loadData(params), delay);
return () => {
clearTimeout(id);
};
2020-10-09 21:39:03 +02:00
}
2020-10-11 07:36:55 +02:00
}, [url, !!disabled, count, ...update]);
2020-10-09 21:39:03 +02:00
useEffect(() => {
2020-10-11 07:36:55 +02:00
if (interval && !disabled) {
const id = setInterval(() => setCount(state => state + 1), interval);
2020-10-11 07:36:55 +02:00
return () => {
clearInterval(id);
};
}
}, [interval, !!disabled]);
2020-11-10 06:01:53 +01:00
return { ...response, error, loading };
}