26 lines
783 B
TypeScript
26 lines
783 B
TypeScript
import { Flex } from '@chakra-ui/react'
|
|
import { TypebotViewer } from 'bot-engine'
|
|
import { useTypebot } from 'contexts/TypebotContext/TypebotContext'
|
|
import React from 'react'
|
|
import { parseTypebotToPublicTypebot } from 'services/publicTypebot'
|
|
import { getViewerUrl } from 'utils'
|
|
import { ThemeSideMenu } from '../../components/theme/ThemeSideMenu'
|
|
|
|
export const ThemeContent = () => {
|
|
const { typebot } = useTypebot()
|
|
const publicTypebot = typebot && parseTypebotToPublicTypebot(typebot)
|
|
return (
|
|
<Flex h="full" w="full">
|
|
<ThemeSideMenu />
|
|
<Flex flex="1">
|
|
{publicTypebot && (
|
|
<TypebotViewer
|
|
apiHost={getViewerUrl({ isBuilder: true })}
|
|
typebot={publicTypebot}
|
|
/>
|
|
)}
|
|
</Flex>
|
|
</Flex>
|
|
)
|
|
}
|