Files
calendar/packages/features/insights/components/routing/RoutingFormResponsesTable.tsx
T
Eunjae LeeGitHubcoderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
cf367c9340 feat: add attendee filters to /insights/routing (+ use RoutingFormResponseDenormalized) (#21297)
* fix: denormalize RoutingFormResponse with InsightsRoutingService

* fix tests

* fix type error

* update service usage

* fix attendee filters

* display attendee phone number

* use useInsightsRoutingParameters()

* remove unnecessary type check

* clean up

* fix type error

* fix wrong import

* fix integration tests

* Update packages/lib/server/service/__tests__/InsightsRoutingService.integration-test.ts

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

---------

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
2025-08-21 14:09:22 +02:00

149 lines
4.6 KiB
TypeScript

"use client";
import { useReactTable, getCoreRowModel, getSortedRowModel } from "@tanstack/react-table";
// eslint-disable-next-line no-restricted-imports
import { useMemo, useEffect } from "react";
import { createPortal } from "react-dom";
import {
DataTableWrapper,
DataTableFilters,
DataTableSkeleton,
useDataTable,
DateRangeFilter,
DataTableSegment,
ColumnFilterType,
convertMapToFacetedValues,
type FilterableColumn,
} from "@calcom/features/data-table";
import { useInsightsRoutingParameters } from "@calcom/features/insights/hooks/useInsightsRoutingParameters";
import { trpc } from "@calcom/trpc";
import { RoutingFormResponsesDownload } from "../../filters/Download";
import { OrgTeamsFilter } from "../../filters/OrgTeamsFilter";
import { useInsightsColumns } from "../../hooks/useInsightsColumns";
import { useInsightsParameters } from "../../hooks/useInsightsParameters";
import { useInsightsRoutingFacetedUniqueValues } from "../../hooks/useInsightsRoutingFacetedUniqueValues";
import type { RoutingFormTableRow } from "../../lib/types";
import { RoutingKPICards } from "./RoutingKPICards";
export type RoutingFormTableType = ReturnType<typeof useReactTable<RoutingFormTableRow>>;
const createdAtColumn: Extract<FilterableColumn, { type: ColumnFilterType.DATE_RANGE }> = {
id: "createdAt",
title: "createdAt",
type: ColumnFilterType.DATE_RANGE,
};
export function RoutingFormResponsesTable() {
const { isAll, teamId, userId, routingFormId } = useInsightsParameters();
const { data: headers, isSuccess: isHeadersSuccess } =
trpc.viewer.insights.routingFormResponsesHeaders.useQuery({
userId,
teamId,
isAll,
routingFormId,
});
const getInsightsFacetedUniqueValues = useInsightsRoutingFacetedUniqueValues({
headers,
userId,
teamId,
isAll,
});
const insightsRoutingParams = useInsightsRoutingParameters();
const { sorting, limit, offset, ctaContainerRef, updateFilter } = useDataTable();
const { data, isPending } = trpc.viewer.insights.routingFormResponses.useQuery({
...insightsRoutingParams,
sorting,
limit,
offset,
});
const processedData = useMemo(() => {
if (!isHeadersSuccess || !data) return [];
return data.data as RoutingFormTableRow[];
}, [data, isHeadersSuccess]);
const columns = useInsightsColumns({ headers, isHeadersSuccess });
const table = useReactTable<RoutingFormTableRow>({
data: processedData,
columns,
getCoreRowModel: getCoreRowModel(),
getSortedRowModel: getSortedRowModel(),
defaultColumn: {
size: 150,
},
initialState: {
columnVisibility: {
formId: false,
bookingUserId: false,
attendeeName: false,
attendeeEmail: false,
attendeePhone: false,
utm_source: false,
utm_medium: false,
utm_campaign: false,
utm_term: false,
utm_content: false,
},
},
getFacetedUniqueValues: getInsightsFacetedUniqueValues,
});
useEffect(() => {
if (routingFormId) {
return;
}
const routingForms = convertMapToFacetedValues(getInsightsFacetedUniqueValues(table, "formId")());
const newRoutingFormId = routingForms?.[0]?.value;
if (newRoutingFormId) {
// if routing form filter is not set, set it to the first form
// this also prevents user from clearing the routing form filter
updateFilter("formId", { type: ColumnFilterType.SINGLE_SELECT, data: newRoutingFormId });
}
}, [table, getInsightsFacetedUniqueValues, routingFormId]);
return (
<>
<div className="flex-1">
<DataTableWrapper<RoutingFormTableRow>
table={table}
isPending={isPending}
rowClassName="min-h-14"
paginationMode="standard"
totalRowCount={data?.total}
LoaderView={<DataTableSkeleton columns={4} columnWidths={[200, 200, 250, 250]} />}
ToolbarLeft={
<>
<DataTableFilters.ColumnVisibilityButton table={table} />
<OrgTeamsFilter />
<DataTableFilters.FilterBar table={table} />
</>
}
ToolbarRight={
<>
<DataTableFilters.ClearFiltersButton exclude={["createdAt"]} />
<DataTableSegment.SaveButton />
<DataTableSegment.Select />
</>
}>
<RoutingKPICards />
</DataTableWrapper>
</div>
{ctaContainerRef.current &&
createPortal(
<>
<DateRangeFilter column={createdAtColumn} />
<RoutingFormResponsesDownload sorting={sorting} />
</>,
ctaContainerRef.current
)}
</>
);
}