import { VStack, Tag, Text, Tooltip } from '@chakra-ui/react' import { useGraph, useGroupsCoordinates } from 'contexts/GraphContext' import { useTypebot } from 'contexts/TypebotContext' import { useWorkspace } from 'contexts/WorkspaceContext' import React, { useMemo } from 'react' import { AnswersCount } from 'services/analytics' import { getEndpointTopOffset, computeSourceCoordinates, computeDropOffPath, } from 'services/graph' import { isWorkspaceProPlan } from 'services/workspace' import { byId, isDefined } from 'utils' type Props = { groupId: string answersCounts: AnswersCount[] onUnlockProPlanClick?: () => void } export const DropOffEdge = ({ answersCounts, groupId, onUnlockProPlanClick, }: Props) => { const { workspace } = useWorkspace() const { groupsCoordinates } = useGroupsCoordinates() const { sourceEndpoints, graphPosition } = useGraph() const { publishedTypebot } = useTypebot() const isProPlan = isWorkspaceProPlan(workspace) const totalAnswers = useMemo( () => answersCounts.find((a) => a.groupId === groupId)?.totalAnswers, [answersCounts, groupId] ) const { totalDroppedUser, dropOffRate } = useMemo(() => { if (!publishedTypebot || totalAnswers === undefined) return { previousTotal: undefined, dropOffRate: undefined } const previousGroupIds = publishedTypebot.edges .map((edge) => edge.to.groupId === groupId ? edge.from.groupId : undefined ) .filter(isDefined) const previousTotal = answersCounts .filter((a) => previousGroupIds.includes(a.groupId)) .reduce((prev, acc) => acc.totalAnswers + prev, 0) if (previousTotal === 0) return { previousTotal: undefined, dropOffRate: undefined } const totalDroppedUser = previousTotal - totalAnswers return { totalDroppedUser, dropOffRate: Math.round((totalDroppedUser / previousTotal) * 100), } }, [answersCounts, groupId, totalAnswers, publishedTypebot]) const group = publishedTypebot?.groups.find(byId(groupId)) const sourceTop = useMemo( () => getEndpointTopOffset({ endpoints: sourceEndpoints, graphOffsetY: graphPosition.y, endpointId: group?.blocks[group.blocks.length - 1].id, graphScale: graphPosition.scale, }), // eslint-disable-next-line react-hooks/exhaustive-deps [group?.blocks, sourceEndpoints, groupsCoordinates] ) const labelCoordinates = useMemo(() => { if (!groupsCoordinates[groupId]) return return computeSourceCoordinates(groupsCoordinates[groupId], sourceTop ?? 0) }, [groupsCoordinates, groupId, sourceTop]) if (!labelCoordinates) return <> return ( <> {isProPlan ? ( dropOffRate ) : ( X )} % {isProPlan ? ( totalDroppedUser ) : ( NN )}{' '} users ) }