2
0

feat(results): 🛂 Limit analytics

This commit is contained in:
Baptiste Arnaud
2022-02-13 06:53:48 +01:00
parent ec470b578c
commit f46ba381ad
5 changed files with 54 additions and 19 deletions

View File

@ -1,6 +1,7 @@
import { VStack, Tag, Text } from '@chakra-ui/react'
import { VStack, Tag, Text, Tooltip } from '@chakra-ui/react'
import { useGraph } from 'contexts/GraphContext'
import { useTypebot } from 'contexts/TypebotContext'
import { useUser } from 'contexts/UserContext'
import React, { useMemo } from 'react'
import { AnswersCount } from 'services/analytics'
import {
@ -8,17 +9,26 @@ import {
computeSourceCoordinates,
computeDropOffPath,
} from 'services/graph'
import { isFreePlan } from 'services/user'
import { byId, isDefined } from 'utils'
type Props = {
blockId: string
answersCounts: AnswersCount[]
onUnlockProPlanClick?: () => void
}
export const DropOffEdge = ({ answersCounts, blockId }: Props) => {
export const DropOffEdge = ({
answersCounts,
blockId,
onUnlockProPlanClick,
}: Props) => {
const { user } = useUser()
const { sourceEndpoints, graphPosition, blocksCoordinates } = useGraph()
const { publishedTypebot } = useTypebot()
const isUserOnFreePlan = isFreePlan(user)
const totalAnswers = useMemo(
() => answersCounts.find((a) => a.blockId === blockId)?.totalAnswers,
[answersCounts, blockId]
@ -77,10 +87,14 @@ export const DropOffEdge = ({ answersCounts, blockId }: Props) => {
fill="none"
/>
<foreignObject
width="80"
width="100"
height="80"
x={labelCoordinates.x - 20}
x={labelCoordinates.x - 30}
y={labelCoordinates.y + 80}
>
<Tooltip
label="Unlock Drop-off rate by upgrading to Pro plan"
isDisabled={!isUserOnFreePlan}
>
<VStack
bgColor={'red.500'}
@ -90,10 +104,16 @@ export const DropOffEdge = ({ answersCounts, blockId }: Props) => {
justifyContent="center"
w="full"
h="full"
filter={isUserOnFreePlan ? 'blur(4px)' : ''}
onClick={isUserOnFreePlan ? onUnlockProPlanClick : undefined}
cursor={isUserOnFreePlan ? 'pointer' : 'auto'}
>
<Text>{dropOffRate}%</Text>
<Tag colorScheme="red">{totalDroppedUser} users</Tag>
<Text>{isUserOnFreePlan ? 'X' : dropOffRate}%</Text>
<Tag colorScheme="red">
{isUserOnFreePlan ? 'n' : totalDroppedUser} users
</Tag>
</VStack>
</Tooltip>
</foreignObject>
</>
)

View File

@ -9,8 +9,13 @@ import { Edge } from './Edge'
type Props = {
edges: EdgeProps[]
answersCounts?: AnswersCount[]
onUnlockProPlanClick?: () => void
}
export const Edges = ({ edges, answersCounts }: Props) => {
export const Edges = ({
edges,
answersCounts,
onUnlockProPlanClick,
}: Props) => {
return (
<chakra.svg
width="full"
@ -29,6 +34,7 @@ export const Edges = ({ edges, answersCounts }: Props) => {
key={answerCount.blockId}
answersCounts={answersCounts}
blockId={answerCount.blockId}
onUnlockProPlanClick={onUnlockProPlanClick}
/>
))}
<marker

View File

@ -13,10 +13,12 @@ import { AnswersCount } from 'services/analytics'
export const Graph = ({
typebot,
answersCounts,
onUnlockProPlanClick,
...props
}: {
typebot?: Typebot | PublicTypebot
answersCounts?: AnswersCount[]
onUnlockProPlanClick?: () => void
} & FlexProps) => {
const { draggedStepType, setDraggedStepType, draggedStep, setDraggedStep } =
useStepDnd()
@ -99,7 +101,11 @@ export const Graph = ({
transform,
}}
>
<Edges edges={typebot?.edges ?? []} answersCounts={answersCounts} />
<Edges
edges={typebot?.edges ?? []}
answersCounts={answersCounts}
onUnlockProPlanClick={onUnlockProPlanClick}
/>
{typebot?.blocks.map((block, idx) => (
<BlockNode block={block as Block} blockIndex={idx} key={block.id} />
))}

View File

@ -20,7 +20,6 @@ export enum LimitReached {
BRAND = 'Remove branding',
CUSTOM_DOMAIN = 'Custom domain',
FOLDER = 'Create folders',
ANALYTICS = 'Unlock analytics',
}
type UpgradeModalProps = {

View File

@ -1,6 +1,7 @@
import { Flex, useToast } from '@chakra-ui/react'
import { Flex, useDisclosure, useToast } from '@chakra-ui/react'
import { StatsCards } from 'components/analytics/StatsCards'
import { Graph } from 'components/shared/Graph'
import { UpgradeModal } from 'components/shared/modals/UpgradeModal.'
import { GraphProvider } from 'contexts/GraphContext'
import { useTypebot } from 'contexts/TypebotContext/TypebotContext'
import { Stats } from 'models'
@ -8,6 +9,7 @@ import React from 'react'
import { useAnswersCount } from 'services/analytics'
export const AnalyticsContent = ({ stats }: { stats?: Stats }) => {
const { isOpen, onOpen, onClose } = useDisclosure()
const { typebot, publishedTypebot } = useTypebot()
const toast = useToast({
@ -31,6 +33,7 @@ export const AnalyticsContent = ({ stats }: { stats?: Stats }) => {
<Graph
flex="1"
typebot={publishedTypebot}
onUnlockProPlanClick={onOpen}
answersCounts={[
{ ...answersCounts[0], totalAnswers: stats?.totalStarts },
...answersCounts?.slice(1),
@ -38,6 +41,7 @@ export const AnalyticsContent = ({ stats }: { stats?: Stats }) => {
/>
</GraphProvider>
)}
<UpgradeModal onClose={onClose} isOpen={isOpen} />
<StatsCards stats={stats} pos="absolute" top={10} />
</Flex>
)