Files
calendar/packages/platform/atoms/hooks/useCalendarsBusyTimes.ts
T
Lauris SkraucisandGitHub ad5d92dff0 refactor: v2 calendars busy-times (#18244)
* refactor: make dateFrom and dateTo required

* refactor: make dateFrom and dateTo required

* refactor: useCalendarsBusyTimes enabled only if dateFrom & dateTo passed
2024-12-18 13:36:26 +01:00

42 lines
1.3 KiB
TypeScript

import { useQuery } from "@tanstack/react-query";
import { SUCCESS_STATUS } from "@calcom/platform-constants";
import type { ApiResponse, CalendarBusyTimesInput } from "@calcom/platform-types";
import type { EventBusyDate } from "@calcom/types/Calendar";
import http from "../lib/http";
export const QUERY_KEY = "get-calendars-busy-times";
type UseCalendarsBusyTimesProps = Omit<CalendarBusyTimesInput, "dateFrom" | "dateTo"> & {
dateFrom: string | null;
dateTo: string | null;
} & { onError?: () => void; enabled: boolean };
export const useCalendarsBusyTimes = ({ onError, enabled, ...rest }: UseCalendarsBusyTimesProps) => {
const availableSlots = useQuery({
queryKey: [
QUERY_KEY,
rest?.calendarsToLoad?.length ?? 0,
rest.dateFrom ?? "",
rest.dateTo ?? "",
rest.loggedInUsersTz,
],
queryFn: () => {
return http
.get<ApiResponse<EventBusyDate[]>>("/calendars/busy-times", {
params: rest,
})
.then((res) => {
if (res.data.status === SUCCESS_STATUS) {
return res.data;
}
onError?.();
throw new Error(res.data.error.message);
});
},
enabled: enabled && !!rest.dateFrom && !!rest.dateTo,
});
return availableSlots;
};