Skip to content

Commit 1d78e24

Browse files
committed
fix overview-chart totals
1 parent b3b758f commit 1d78e24

File tree

4 files changed

+10
-12
lines changed

4 files changed

+10
-12
lines changed

apps/web/app/api/programs/[programId]/metrics/route.ts

-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ export const GET = withWorkspace(
4747
_all: true,
4848
},
4949
_sum: {
50-
amount: true,
5150
earnings: true,
5251
},
5352
}),
@@ -63,7 +62,6 @@ export const GET = withWorkspace(
6362
const response = ProgramMetricsSchema.parse({
6463
partnersCount,
6564
salesCount: commissions._count._all,
66-
revenue: commissions._sum.amount || 0,
6765
commissions: commissions._sum.earnings || 0,
6866
payouts: payouts._sum.amount || 0,
6967
});

apps/web/app/app.dub.co/(dashboard)/[slug]/programs/[programId]/overview-chart.tsx

+6-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { DUB_PARTNERS_ANALYTICS_INTERVAL } from "@/lib/analytics/constants";
22
import { formatDateTooltip } from "@/lib/analytics/format-date-tooltip";
33
import { IntervalOptions } from "@/lib/analytics/types";
44
import useProgramCommissions from "@/lib/swr/use-program-commissions";
5-
import useProgramMetrics from "@/lib/swr/use-program-metrics";
65
import useProgramRevenue from "@/lib/swr/use-program-revenue";
76
import SimpleDateRangePicker from "@/ui/shared/simple-date-range-picker";
87
import { Combobox, useRouterStuff } from "@dub/ui";
@@ -41,8 +40,6 @@ export function OverviewChart() {
4140
interval?: IntervalOptions;
4241
};
4342

44-
const { metrics } = useProgramMetrics();
45-
4643
const { data: revenue, error: revenueError } = useProgramRevenue({
4744
event: "sales",
4845
groupBy: "timeseries",
@@ -72,6 +69,10 @@ export function OverviewChart() {
7269
}));
7370
}, [revenue, commissions, viewType]);
7471

72+
const total = useMemo(() => {
73+
return data?.reduce((acc, curr) => acc + curr.values.amount, 0);
74+
}, [data]);
75+
7576
const dataLoading = !data && !revenueError && !commissionsError;
7677
const error = revenueError || commissionsError;
7778

@@ -100,11 +101,11 @@ export function OverviewChart() {
100101
</div>
101102

102103
<div className="flex flex-col gap-1 px-4">
103-
{!metrics ? (
104+
{total === undefined ? (
104105
<div className="h-11 w-24 animate-pulse rounded-md bg-neutral-200" />
105106
) : (
106107
<NumberFlow
107-
value={metrics[viewType] / 100}
108+
value={total}
108109
className="text-3xl text-neutral-800"
109110
format={{
110111
style: "currency",

apps/web/app/app.dub.co/(dashboard)/[slug]/programs/[programId]/program-metrics.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import useProgramMetrics from "@/lib/swr/use-program-metrics";
22
import { Icon } from "@dub/ui";
3-
import { Check2, CurrencyDollar, MoneyBills2, Users } from "@dub/ui/icons";
3+
import { Check2, CircleDollar, MoneyBills2, Users } from "@dub/ui/icons";
44
import NumberFlow from "@number-flow/react";
55
import Link from "next/link";
66
import { useParams } from "next/navigation";
@@ -25,9 +25,9 @@ export function ProgramMetrics() {
2525
error={error}
2626
/>
2727
<Stat
28-
icon={CurrencyDollar}
29-
label="Revenue"
30-
value={metrics?.revenue}
28+
icon={CircleDollar}
29+
label="Commissions"
30+
value={metrics?.commissions}
3131
tab="sales"
3232
error={error}
3333
isCurrency

apps/web/lib/zod/schemas/programs.ts

-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ export const PartnerProgramInviteSchema = z.object({
108108
export const ProgramMetricsSchema = z.object({
109109
partnersCount: z.number(),
110110
salesCount: z.number(),
111-
revenue: z.number(),
112111
commissions: z.number(),
113112
payouts: z.number(),
114113
});

0 commit comments

Comments
 (0)