cal.pub0.org/packages/features/insights/components/BookingStatusLineChart.tsx

67 lines
1.7 KiB
TypeScript

import { Title } from "@tremor/react";
import { useLocale } from "@calcom/lib/hooks/useLocale";
import { trpc } from "@calcom/trpc";
import { useFilterContext } from "../context/provider";
import { valueFormatter } from "../lib/valueFormatter";
import { CardInsights } from "./Card";
import { LineChart } from "./LineChart";
import { LoadingInsight } from "./LoadingInsights";
export const BookingStatusLineChart = () => {
const { t } = useLocale();
const { filter } = useFilterContext();
const {
selectedTeamId,
selectedUserId,
selectedTimeView = "week",
dateRange,
selectedEventTypeId,
isAll,
} = filter;
const [startDate, endDate] = dateRange;
if (!startDate || !endDate) return null;
const {
data: eventsTimeLine,
isSuccess,
isLoading,
} = trpc.viewer.insights.eventsTimeline.useQuery(
{
timeView: selectedTimeView,
startDate: startDate.toISOString(),
endDate: endDate.toISOString(),
teamId: selectedTeamId ?? undefined,
eventTypeId: selectedEventTypeId ?? undefined,
userId: selectedUserId ?? undefined,
isAll,
},
{
staleTime: 30000,
trpc: {
context: { skipBatch: true },
},
}
);
if (isLoading) return <LoadingInsight />;
if (!isSuccess) return null;
return (
<CardInsights>
<Title className="text-emphasis">{t("event_trends")}</Title>
<LineChart
className="linechart mt-4 h-80"
data={eventsTimeLine ?? []}
categories={["Created", "Completed", "Rescheduled", "Cancelled"]}
index="Month"
colors={["purple", "green", "blue", "red"]}
valueFormatter={valueFormatter}
/>
</CardInsights>
);
};