* fix: replace filter implementations on /insights * add authorization for teamIds * replace all the implementations * provide eventTypeId * remove log * fix teamId for isAll * fix Download button * remove legacy implementations * clean up * nullish check * remove unusable filters * revert style * fix type error * fix e2e test * fix type error * fix type error * fix e2e * extract util method * fix type error * fix type error * fix type error --------- Co-authored-by: Benny Joo <sldisek783@gmail.com>
59 lines
1.6 KiB
TypeScript
59 lines
1.6 KiB
TypeScript
import { Title } from "@tremor/react";
|
|
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import { trpc } from "@calcom/trpc";
|
|
|
|
import { useInsightsParameters } from "../hooks/useInsightsParameters";
|
|
import { valueFormatter } from "../lib/valueFormatter";
|
|
import { CardInsights } from "./Card";
|
|
import { LineChart } from "./LineChart";
|
|
import { LoadingInsight } from "./LoadingInsights";
|
|
|
|
export const AverageEventDurationChart = () => {
|
|
const { t } = useLocale();
|
|
const { isAll, teamId, userId, memberUserId, startDate, endDate, eventTypeId } = useInsightsParameters();
|
|
|
|
const { data, isSuccess, isPending } = trpc.viewer.insights.averageEventDuration.useQuery(
|
|
{
|
|
startDate,
|
|
endDate,
|
|
teamId,
|
|
eventTypeId,
|
|
memberUserId,
|
|
userId,
|
|
isAll,
|
|
},
|
|
{
|
|
staleTime: 30000,
|
|
trpc: {
|
|
context: { skipBatch: true },
|
|
},
|
|
}
|
|
);
|
|
|
|
if (isPending) return <LoadingInsight />;
|
|
|
|
if (!isSuccess || !data) return null;
|
|
const isNoData = data.every((item) => item["Average"] === 0);
|
|
return (
|
|
<CardInsights>
|
|
<Title className="text-emphasis">{t("average_event_duration")}</Title>
|
|
{isNoData && (
|
|
<div className="text-default flex h-60 text-center">
|
|
<p className="m-auto text-sm font-light">{t("insights_no_data_found_for_filter")}</p>
|
|
</div>
|
|
)}
|
|
{data && data.length > 0 && !isNoData && (
|
|
<LineChart
|
|
className="mt-4 h-80"
|
|
data={data}
|
|
index="Date"
|
|
categories={["Average"]}
|
|
colors={["blue"]}
|
|
valueFormatter={valueFormatter}
|
|
/>
|
|
)}
|
|
</CardInsights>
|
|
);
|
|
};
|