Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 | 4x 4x 4x 4x 4x 4x 8x 8x 8x | import useSWR from 'swr';
import createFetcher from '@/helpers/createFetcher';
import { counterSchema } from '../types/schemas';
import type { CounterData } from '../types/api';
const url = `${process.env.NEXT_PUBLIC_DOMAIN}/api/indexed-pages`;
const fetchCounter = createFetcher(counterSchema, '/api/indexed-pages');
const useIndexedPages = (): {
data: CounterData | undefined;
error: Error | undefined;
loading: boolean;
} => {
const { data, error, isLoading } = useSWR<CounterData, Error>(url, fetchCounter, {
dedupingInterval: 5000,
fallbackData: {
num: 0,
},
});
return {
data,
error,
loading: isLoading,
};
};
export default useIndexedPages;
|