2
0

♻️ (lp) Remove old bot-engine from landing page

This commit is contained in:
Baptiste Arnaud
2023-01-25 16:15:03 +01:00
parent 30baa611e5
commit 79622c6884
10 changed files with 112 additions and 113 deletions

View File

@ -11,12 +11,12 @@ import {
Textarea,
} from '@chakra-ui/react'
import React, { useEffect, useState } from 'react'
import { TypebotViewer } from 'bot-engine'
import { PublicTypebot } from 'models'
import { sendRequest } from 'utils'
import { DontIcon } from 'assets/icons/DontIcon'
import { DoIcon } from 'assets/icons/DoIcon'
import { HandDrawnArrow } from 'assets/illustrations/HandDrawnArrow'
import { Standard } from '@typebot.io/react'
export const IntroducingChatApps = () => {
const [typebot, setTypebot] = useState<PublicTypebot>()
@ -83,18 +83,14 @@ export const IntroducingChatApps = () => {
>
<DoIcon />
{typebot && (
<Flex
w="full"
h="full"
minH={['600px', '0']}
borderWidth="1px"
rounded="md"
>
<TypebotViewer
typebot={typebot}
style={{ borderRadius: '0.375rem' }}
/>
</Flex>
<Standard
typebot={typebot}
style={{
borderRadius: '0.375rem',
borderWidth: '1px',
height: '562px',
}}
/>
)}
<Flex top="-20px" right="40px" pos="absolute">
<Text fontFamily="'Indie Flower'" fontSize="2xl">

View File

@ -1,11 +1,14 @@
import { Flex, Stack, Heading, Text, Button, VStack } from '@chakra-ui/react'
import { Standard } from '@typebot.io/react'
import { ArrowRight } from 'assets/icons/ArrowRight'
import { TypebotViewer } from 'bot-engine'
import { PublicTypebot, Typebot } from 'models'
import Link from 'next/link'
import React, { useEffect, useRef, useState } from 'react'
import { sendRequest } from 'utils'
const nameBlockId = 'shuUtMDMw9P4iAHbz7B5SqJ'
const messageBlockId = 'sqvXpT1YXE3Htp6BCPvVGv3'
export const RealTimeResults = () => {
const iframeRef = useRef<HTMLIFrameElement | null>(null)
const [typebot, setTypebot] = useState<PublicTypebot>()
@ -21,25 +24,19 @@ export const RealTimeResults = () => {
useEffect(() => {
fetchTemplate()
window.addEventListener('message', processMessage)
const interval = setInterval(refreshIframeContent, 30000)
return () => {
clearInterval(interval)
window.removeEventListener('message', processMessage)
}
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [])
const processMessage = (event: MessageEvent) => {
if (event.data.from === 'typebot') refreshIframeContent()
}
const refreshIframeContent = () => {
if (!iframeRef.current) return
iframeRef.current.src += ''
}
const handleAnswer = ({ blockId }: { blockId: string }) => {
if ([nameBlockId, messageBlockId].includes(blockId)) {
refreshIframeContent()
}
}
return (
<Flex as="section" justify="center">
<Stack
@ -91,13 +88,15 @@ export const RealTimeResults = () => {
data-aos="fade"
>
{typebot && (
<Flex w="full" h="full" minH="300" borderWidth="1px" rounded="md">
<TypebotViewer
typebot={typebot}
style={{ borderRadius: '0.375rem' }}
apiHost="https://typebot.io"
/>
</Flex>
<Standard
typebot={typebot}
onAnswer={handleAnswer}
style={{
borderRadius: '0.375rem',
borderWidth: '1px',
height: '533px',
}}
/>
)}
<iframe
ref={iframeRef}