mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-31 11:49:14 +01:00
29 lines
1.3 KiB
TypeScript
29 lines
1.3 KiB
TypeScript
import dayjs from "dayjs";
|
|
|
|
import type { IntegrationKindByCategory } from "@homarr/definitions";
|
|
import { createIntegrationAsync } from "@homarr/integrations";
|
|
import type { CalendarEvent, RadarrReleaseType } from "@homarr/integrations/types";
|
|
|
|
import { createCachedIntegrationRequestHandler } from "./lib/cached-integration-request-handler";
|
|
|
|
export const calendarMonthRequestHandler = createCachedIntegrationRequestHandler<
|
|
CalendarEvent[],
|
|
IntegrationKindByCategory<"calendar">,
|
|
{ year: number; month: number; releaseType: RadarrReleaseType[]; showUnmonitored: boolean }
|
|
>({
|
|
async requestAsync(integration, input) {
|
|
const integrationInstance = await createIntegrationAsync(integration);
|
|
// Calendar component shows up to 6 days before and after the month, for example if 1. of january is sunday, it shows the last 6 days of december.
|
|
const startDate = dayjs().year(input.year).month(input.month).startOf("month").subtract(6, "days");
|
|
const endDate = dayjs().year(input.year).month(input.month).endOf("month").add(6, "days");
|
|
|
|
return await integrationInstance.getCalendarEventsAsync(
|
|
startDate.toDate(),
|
|
endDate.toDate(),
|
|
input.showUnmonitored,
|
|
);
|
|
},
|
|
cacheDuration: dayjs.duration(1, "minute"),
|
|
queryKey: "calendarMonth",
|
|
});
|