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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | 1x 1x 1x 1x 9x 9x 9x 9x | import { useApiQueryClients } from "./apiClients";
import {
type HttpReadableClient,
type RequestGuard,
useApiDataQuery,
} from "./apiQuery";
const ENDPOINTS = {
HOLIDAYS: "/api/configs/dates",
};
const QUERY_KEYS = {
HOLIDAYS: ["holidays"] as const,
};
const QUERY_CACHE_TIME = 10 * 60 * 1000;
export interface SharedHolidays {
holidays: string[];
makeUpWorkdays: string[];
}
interface UseGetHolidaysOptions {
httpClient?: HttpReadableClient;
requestGuard?: RequestGuard;
enabled?: boolean;
staleTime?: number;
gcTime?: number;
}
export const useGetHolidays = <THolidays = SharedHolidays>(
year: number,
options?: UseGetHolidaysOptions,
) => {
const { mainHttp, requestGuard } = useApiQueryClients();
const resolvedHttpClient = options?.httpClient ?? mainHttp;
const resolvedRequestGuard = options?.requestGuard ?? requestGuard;
return useApiDataQuery<THolidays>({
queryKey: [...QUERY_KEYS.HOLIDAYS, year],
endpoint: `${ENDPOINTS.HOLIDAYS}/${year}`,
httpClient: resolvedHttpClient,
requestGuard: resolvedRequestGuard,
enabled: options?.enabled,
staleTime: options?.staleTime ?? QUERY_CACHE_TIME,
gcTime: options?.gcTime ?? QUERY_CACHE_TIME,
});
};
|