* feat: add Drop-off funnel chart for /insights/routing * convert insights services to use kysely * WIP * implement drop-off data WIP * updates * revert services back to Prisma * do not expose findMany * WIP * revert usage * fix type errors * updates * clean up * update playground * update styles * support columnFilters * update tooltip * add skeleton * remove dynamic loading * avoid using Prisma.raw * update condition for user scope * Update packages/features/insights/components/RoutingFunnelContent.tsx Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com> * playground fix * fix type error * update playground * update styles * implement subtitle to ChartCard * revert insights booking service * update border * update ChartCard style * style updates * convert the playground to a client component * clean up * apply feedback * fix tests * fix unit test * hide scrollbar --------- Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
113 lines
3.1 KiB
TypeScript
113 lines
3.1 KiB
TypeScript
"use client";
|
|
|
|
import { AreaChart, Area, XAxis, YAxis, CartesianGrid, Tooltip, ResponsiveContainer } from "recharts";
|
|
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
|
|
interface RoutingFunnelData {
|
|
name: string;
|
|
formattedDateFull: string;
|
|
totalSubmissions: number;
|
|
successfulRoutings: number;
|
|
acceptedBookings: number;
|
|
}
|
|
|
|
interface RoutingFunnelContentProps {
|
|
data: RoutingFunnelData[];
|
|
}
|
|
|
|
const COLOR = {
|
|
TOTAL: "#9AA2F7",
|
|
SUCCESFUL: "#89CFB5",
|
|
ACCEPTED: "#F7A1A1",
|
|
};
|
|
|
|
export const legend = [
|
|
{ label: "Total Submissions", color: COLOR.TOTAL },
|
|
{ label: "Successful Routings", color: COLOR.SUCCESFUL },
|
|
{ label: "Accepted Bookings", color: COLOR.ACCEPTED },
|
|
];
|
|
|
|
export function RoutingFunnelContent({ data }: RoutingFunnelContentProps) {
|
|
const { t } = useLocale();
|
|
|
|
return (
|
|
<ResponsiveContainer width="100%" height={300}>
|
|
<AreaChart data={data} margin={{ top: 30, right: 20, left: 0, bottom: 0 }}>
|
|
<CartesianGrid strokeDasharray="3 3" vertical={false} />
|
|
<XAxis dataKey="name" className="text-xs" axisLine={false} tickLine={false} />
|
|
<YAxis allowDecimals={false} className="text-xs opacity-50" axisLine={false} tickLine={false} />
|
|
<Tooltip content={<CustomTooltip />} />
|
|
<Area
|
|
type="linear"
|
|
name={t("routing_funnel_total_submissions")}
|
|
dataKey="totalSubmissions"
|
|
stroke={COLOR.TOTAL}
|
|
fill={COLOR.TOTAL}
|
|
fillOpacity={1}
|
|
/>
|
|
<Area
|
|
type="linear"
|
|
name={t("routing_funnel_successful_routings")}
|
|
dataKey="successfulRoutings"
|
|
stroke={COLOR.SUCCESFUL}
|
|
fill={COLOR.SUCCESFUL}
|
|
fillOpacity={1}
|
|
/>
|
|
<Area
|
|
type="linear"
|
|
name={t("routing_funnel_accepted_bookings")}
|
|
dataKey="acceptedBookings"
|
|
stroke={COLOR.ACCEPTED}
|
|
fill={COLOR.ACCEPTED}
|
|
fillOpacity={1}
|
|
/>
|
|
</AreaChart>
|
|
</ResponsiveContainer>
|
|
);
|
|
}
|
|
|
|
// Custom Tooltip component
|
|
const CustomTooltip = ({
|
|
active,
|
|
payload,
|
|
label,
|
|
}: {
|
|
active?: boolean;
|
|
payload?: Array<{
|
|
value: number;
|
|
dataKey: string;
|
|
name: string;
|
|
color: string;
|
|
payload: RoutingFunnelData;
|
|
}>;
|
|
label?: string;
|
|
}) => {
|
|
if (!active || !payload?.length) {
|
|
return null;
|
|
}
|
|
|
|
const totalSubmissions = payload.find((p) => p.dataKey === "totalSubmissions")?.value || 0;
|
|
|
|
return (
|
|
<div className="bg-default text-inverted border-subtle rounded-lg border p-3 shadow-lg">
|
|
<p className="text-default font-medium">{payload[0].payload.formattedDateFull}</p>
|
|
{payload.map((entry, index: number) => {
|
|
const value = entry.value;
|
|
let displayValue = value.toString();
|
|
|
|
if (entry.dataKey === "successfulRoutings" || entry.dataKey === "acceptedBookings") {
|
|
const percentage = totalSubmissions > 0 ? ((value / totalSubmissions) * 100).toFixed(1) : "0";
|
|
displayValue = `${value} (${percentage}%)`;
|
|
}
|
|
|
|
return (
|
|
<p key={index} style={{ color: entry.color }}>
|
|
{entry.name}: {displayValue}
|
|
</p>
|
|
);
|
|
})}
|
|
</div>
|
|
);
|
|
};
|