mirror of
https://github.com/lukevella/rallly.git
synced 2025-05-16 18:36:24 +02:00
📈 Include pollId when capturing events (#555)
This commit is contained in:
parent
e77ed269f5
commit
d14a88e9eb
3 changed files with 73 additions and 63 deletions
|
@ -93,6 +93,7 @@ const Page: React.FunctionComponent<CreatePollPageProps> = ({
|
|||
onSuccess: (res) => {
|
||||
setIsRedirecting(true);
|
||||
posthog.capture("created poll", {
|
||||
pollId: res.id,
|
||||
numberOfOptions: formData.options?.options?.length,
|
||||
optionsView: formData?.options?.view,
|
||||
});
|
||||
|
|
|
@ -15,8 +15,9 @@ export const normalizeVotes = (
|
|||
|
||||
export const useAddParticipantMutation = () => {
|
||||
return trpc.polls.participants.add.useMutation({
|
||||
onSuccess: (_, { name }) => {
|
||||
onSuccess: (_, { pollId, name }) => {
|
||||
posthog.capture("add participant", {
|
||||
pollId,
|
||||
name,
|
||||
});
|
||||
},
|
||||
|
@ -61,8 +62,9 @@ export const useDeleteParticipantMutation = () => {
|
|||
},
|
||||
);
|
||||
},
|
||||
onSuccess: (_, { participantId }) => {
|
||||
onSuccess: (_, { pollId, participantId }) => {
|
||||
posthog.capture("remove participant", {
|
||||
pollId,
|
||||
participantId,
|
||||
});
|
||||
},
|
||||
|
|
|
@ -94,7 +94,8 @@ export const polls = router({
|
|||
demo: z.boolean().optional(),
|
||||
}),
|
||||
)
|
||||
.mutation(async ({ ctx, input }): Promise<{ urlId: string }> => {
|
||||
.mutation(
|
||||
async ({ ctx, input }): Promise<{ id: string; urlId: string }> => {
|
||||
const adminUrlId = await nanoid();
|
||||
const participantUrlId = await nanoid();
|
||||
let verified = false;
|
||||
|
@ -111,6 +112,11 @@ export const polls = router({
|
|||
}
|
||||
|
||||
const poll = await prisma.poll.create({
|
||||
select: {
|
||||
adminUrlId: true,
|
||||
id: true,
|
||||
title: true,
|
||||
},
|
||||
data: {
|
||||
id: await nanoid(),
|
||||
title: input.title,
|
||||
|
@ -159,8 +165,9 @@ export const polls = router({
|
|||
},
|
||||
});
|
||||
|
||||
return { urlId: adminUrlId };
|
||||
}),
|
||||
return { id: poll.id, urlId: adminUrlId };
|
||||
},
|
||||
),
|
||||
update: publicProcedure
|
||||
.input(
|
||||
z.object({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue