2
0
Files
bot/apps/landing-page/components/Homepage/RealTimeResults.tsx

118 lines
3.4 KiB
TypeScript
Raw Normal View History

2022-03-17 14:37:00 +01:00
import { Flex, Stack, Heading, Text, Button, VStack } from '@chakra-ui/react'
import { ArrowRight } from 'assets/icons/ArrowRight'
import { TypebotViewer } from 'bot-engine'
import { NextChakraLink } from 'components/common/nextChakraAdapters/NextChakraLink'
import { PublicTypebot, Typebot } from 'models'
import React, { useEffect, useRef, useState } from 'react'
import { sendRequest } from 'utils'
export const RealTimeResults = () => {
const iframeRef = useRef<HTMLIFrameElement | null>(null)
const [typebot, setTypebot] = useState<PublicTypebot>()
const fetchTemplate = async () => {
const { data, error } = await sendRequest(
`/typebots/realtime-airtable.json`
)
if (error) return
const typebot = data as Typebot
setTypebot({ ...typebot, typebotId: typebot.id } as PublicTypebot)
}
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 += ''
}
return (
<Flex as="section" justify="center">
<Stack
style={{ maxWidth: '1200px' }}
pt={'52'}
w="full"
px="4"
spacing={16}
justifyContent="space-between"
alignItems="center"
>
<VStack spacing={6}>
2022-03-17 14:37:00 +01:00
<Heading
fontSize={{ base: '4xl', xl: '6xl' }}
textAlign="center"
data-aos="fade"
>
2022-03-17 14:37:00 +01:00
Collect results in real-time
</Heading>
<Text
textAlign="center"
color="gray.400"
maxW="1000px"
fontSize={{ base: 'lg', xl: 'xl' }}
2022-03-17 14:37:00 +01:00
data-aos="fade"
2022-03-17 14:37:00 +01:00
>
One of the main advantage of a chat application is that you collect
the user's responses on each question.{' '}
<strong>You won't loose any valuable data.</strong>
</Text>
<Flex>
<Button
as={NextChakraLink}
rightIcon={<ArrowRight />}
href={`https://app.typebot.io/register`}
variant="ghost"
colorScheme="blue"
2022-03-17 14:37:00 +01:00
data-aos="fade"
2022-03-17 14:37:00 +01:00
>
Try it now
</Button>
</Flex>
</VStack>
2022-03-17 14:37:00 +01:00
<Stack
w="full"
direction={['column', 'row']}
spacing="4"
data-aos="fade"
>
2022-03-17 14:37:00 +01:00
{typebot && (
<Flex w="full" h="full" minH="300" borderWidth="1px" rounded="md">
<TypebotViewer
typebot={typebot}
style={{ borderRadius: '0.375rem' }}
apiHost="https://typebot.io"
/>
</Flex>
)}
<iframe
ref={iframeRef}
src="https://airtable.com/embed/shr8nkV6DVN88LVIv?backgroundColor=blue"
width="100%"
height="533"
style={{
borderRadius: '0.5rem',
border: 'none',
backgroundColor: 'white',
}}
/>
</Stack>
</Stack>
</Flex>
)
}