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 ; if (!isSuccess || !data) return null; const isNoData = data.every((item) => item["Average"] === 0); return ( {t("average_event_duration")} {isNoData && ( {t("insights_no_data_found_for_filter")} )} {data && data.length > 0 && !isNoData && ( )} ); };
{t("insights_no_data_found_for_filter")}