2021-12-22 14:59:07 +01:00
|
|
|
import React, { useEffect, useRef, useState } from 'react'
|
|
|
|
|
|
|
|
import { ChatBlock } from './ChatBlock/ChatBlock'
|
2021-12-23 09:37:42 +01:00
|
|
|
import { useFrame } from 'react-frame-component'
|
|
|
|
import { setCssVariablesValue } from '../services/theme'
|
2021-12-29 10:22:26 +01:00
|
|
|
import { useAnswers } from '../contexts/AnswersContext'
|
|
|
|
import { deepEqual } from 'fast-equals'
|
2022-02-04 19:00:08 +01:00
|
|
|
import { Answer, Edge, PublicBlock, PublicTypebot } from 'models'
|
|
|
|
import { byId } from 'utils'
|
2021-12-22 14:59:07 +01:00
|
|
|
|
2021-12-29 10:22:26 +01:00
|
|
|
type Props = {
|
|
|
|
typebot: PublicTypebot
|
2022-02-04 19:00:08 +01:00
|
|
|
onNewBlockVisible: (edge: Edge) => void
|
2021-12-30 10:24:16 +01:00
|
|
|
onNewAnswer: (answer: Answer) => void
|
2021-12-29 10:22:26 +01:00
|
|
|
onCompleted: () => void
|
|
|
|
}
|
2021-12-22 14:59:07 +01:00
|
|
|
export const ConversationContainer = ({
|
|
|
|
typebot,
|
2021-12-29 10:22:26 +01:00
|
|
|
onNewBlockVisible,
|
2021-12-30 10:24:16 +01:00
|
|
|
onNewAnswer,
|
2021-12-29 10:22:26 +01:00
|
|
|
onCompleted,
|
|
|
|
}: Props) => {
|
2021-12-23 09:37:42 +01:00
|
|
|
const { document: frameDocument } = useFrame()
|
2022-01-15 17:30:20 +01:00
|
|
|
const [displayedBlocks, setDisplayedBlocks] = useState<
|
2022-02-04 19:00:08 +01:00
|
|
|
{ block: PublicBlock; startStepIndex: number }[]
|
2022-01-15 17:30:20 +01:00
|
|
|
>([])
|
2021-12-30 10:24:16 +01:00
|
|
|
const [localAnswer, setLocalAnswer] = useState<Answer | undefined>()
|
2021-12-29 10:22:26 +01:00
|
|
|
const { answers } = useAnswers()
|
2021-12-22 14:59:07 +01:00
|
|
|
const bottomAnchor = useRef<HTMLDivElement | null>(null)
|
|
|
|
|
2022-01-19 18:54:49 +01:00
|
|
|
const displayNextBlock = (edgeId?: string) => {
|
2022-02-04 19:00:08 +01:00
|
|
|
const nextEdge = typebot.edges.find(byId(edgeId))
|
|
|
|
if (!nextEdge) return onCompleted()
|
|
|
|
const nextBlock = typebot.blocks.find(byId(nextEdge.to.blockId))
|
2021-12-29 10:22:26 +01:00
|
|
|
if (!nextBlock) return onCompleted()
|
2022-02-04 19:00:08 +01:00
|
|
|
const startStepIndex = nextEdge.to.stepId
|
|
|
|
? nextBlock.steps.findIndex(byId(nextEdge.to.stepId))
|
|
|
|
: 0
|
|
|
|
onNewBlockVisible(nextEdge)
|
|
|
|
setDisplayedBlocks([
|
|
|
|
...displayedBlocks,
|
|
|
|
{ block: nextBlock, startStepIndex },
|
|
|
|
])
|
2021-12-22 14:59:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
useEffect(() => {
|
2022-02-04 19:00:08 +01:00
|
|
|
displayNextBlock(typebot.blocks[0].steps[0].outgoingEdgeId)
|
2022-01-25 18:19:37 +01:00
|
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
2021-12-22 14:59:07 +01:00
|
|
|
}, [])
|
|
|
|
|
2021-12-23 09:37:42 +01:00
|
|
|
useEffect(() => {
|
|
|
|
setCssVariablesValue(typebot.theme, frameDocument.body.style)
|
|
|
|
}, [typebot.theme, frameDocument])
|
|
|
|
|
2021-12-29 10:22:26 +01:00
|
|
|
useEffect(() => {
|
2021-12-30 10:24:16 +01:00
|
|
|
const answer = [...answers].pop()
|
|
|
|
if (!answer || deepEqual(localAnswer, answer)) return
|
|
|
|
setLocalAnswer(answer)
|
|
|
|
onNewAnswer(answer)
|
2022-01-25 18:19:37 +01:00
|
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
2021-12-29 10:22:26 +01:00
|
|
|
}, [answers])
|
|
|
|
|
2021-12-22 14:59:07 +01:00
|
|
|
return (
|
|
|
|
<div
|
|
|
|
className="overflow-y-scroll w-full lg:w-3/4 min-h-full rounded lg:px-5 px-3 pt-10 relative scrollable-container typebot-chat-view"
|
|
|
|
id="scrollable-container"
|
|
|
|
>
|
2022-01-15 17:30:20 +01:00
|
|
|
{displayedBlocks.map((displayedBlock, idx) => (
|
2021-12-22 14:59:07 +01:00
|
|
|
<ChatBlock
|
2022-01-15 17:30:20 +01:00
|
|
|
key={displayedBlock.block.id + idx}
|
2022-02-04 19:00:08 +01:00
|
|
|
steps={displayedBlock.block.steps}
|
|
|
|
startStepIndex={displayedBlock.startStepIndex}
|
|
|
|
blockIndex={idx}
|
2021-12-22 14:59:07 +01:00
|
|
|
onBlockEnd={displayNextBlock}
|
|
|
|
/>
|
|
|
|
))}
|
|
|
|
{/* We use a block to simulate padding because it makes iOS scroll flicker */}
|
2021-12-29 10:22:26 +01:00
|
|
|
<div className="w-full" ref={bottomAnchor} />
|
2021-12-22 14:59:07 +01:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|