build: 👷 Add Plan in support bubble
This commit is contained in:
@ -1,5 +1,6 @@
|
|||||||
import { useTypebot } from 'contexts/TypebotContext'
|
import { useTypebot } from 'contexts/TypebotContext'
|
||||||
import { useUser } from 'contexts/UserContext'
|
import { useUser } from 'contexts/UserContext'
|
||||||
|
import { Plan } from 'db'
|
||||||
import React, { useEffect } from 'react'
|
import React, { useEffect } from 'react'
|
||||||
import { initBubble } from 'typebot-js'
|
import { initBubble } from 'typebot-js'
|
||||||
|
|
||||||
@ -19,6 +20,7 @@ export const SupportBubble = () => {
|
|||||||
Email: user?.email ?? undefined,
|
Email: user?.email ?? undefined,
|
||||||
'Typebot ID': typebot?.id,
|
'Typebot ID': typebot?.id,
|
||||||
'Avatar URL': user?.image ?? undefined,
|
'Avatar URL': user?.image ?? undefined,
|
||||||
|
Plan: planToReadable(user?.plan),
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
@ -26,3 +28,17 @@ export const SupportBubble = () => {
|
|||||||
|
|
||||||
return <></>
|
return <></>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const planToReadable = (plan?: Plan) => {
|
||||||
|
if (!plan) return
|
||||||
|
switch (plan) {
|
||||||
|
case 'FREE':
|
||||||
|
return 'Free'
|
||||||
|
case 'LIFETIME':
|
||||||
|
return 'Lifetime'
|
||||||
|
case 'OFFERED':
|
||||||
|
return 'Offered'
|
||||||
|
case 'PRO':
|
||||||
|
return 'Pro'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user