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

45 lines
1.3 KiB
TypeScript

import { Table, TableBody, TableCell, TableRow, Text, Title } from "@tremor/react";
import { useLocale } from "@calcom/lib/hooks/useLocale";
import { trpc } from "@calcom/trpc";
import { useFilterContext } from "../context/provider";
import { CardInsights } from "./Card";
export const PopularEventsTable = () => {
const { t } = useLocale();
const { filter } = useFilterContext();
const { dateRange, selectedUserId } = filter;
const [startDate, endDate] = dateRange;
const { selectedTeamId: teamId } = filter;
const { data, isSuccess } = trpc.viewer.insights.popularEventTypes.useQuery({
startDate: startDate.toISOString(),
endDate: endDate.toISOString(),
teamId,
userId: selectedUserId ?? undefined,
});
if (!isSuccess || !startDate || !endDate || !teamId || data?.length === 0) return null;
return (
<CardInsights>
<Title>{t("popular_events")}</Title>
<Table className="mt-5">
<TableBody>
{data.map((item) => (
<TableRow key={item.eventTypeId}>
<TableCell>{item.eventTypeName}</TableCell>
<TableCell>
<Text>
<strong>{item.count}</strong>
</Text>
</TableCell>
</TableRow>
))}
</TableBody>
</Table>
</CardInsights>
);
};