import React, { useCallback, useEffect, useRef } from 'react' import type { BubbleProps } from '@typebot.io/js' import '@typebot.io/js/dist/web' type Props = BubbleProps declare global { namespace JSX { interface IntrinsicElements { 'typebot-bubble': React.DetailedHTMLProps< React.HTMLAttributes, HTMLElement > } } } type BubbleElement = HTMLElement & Props export const Bubble = (props: Props) => { const ref = useRef(null) const attachBubbleToDom = useCallback((props: Props) => { const bubbleElement = document.createElement( 'typebot-bubble' ) as BubbleElement ref.current = bubbleElement injectPropsToElement(ref.current, props) document.body.append(ref.current) }, []) useEffect(() => { if (!ref.current) attachBubbleToDom(props) injectPropsToElement(ref.current as BubbleElement, props) }, [attachBubbleToDom, props]) const injectPropsToElement = (element: BubbleElement, props: Props) => { Object.assign(element, props) } return null } export default Bubble