uawdijnntqw1x1x1
IP : 216.73.216.109
Hostname : premium160.web-hosting.com
Kernel : Linux premium160.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
batcwwjx
/
.
/
.
/
.
/
public_html
/
wp-content
/
.
/
.
/
.
/
plugins
/
extendify
/
src
/
Agent
/
Chat.jsx
/
/
import { useEffect } from '@wordpress/element'; import { DOMHighlighter } from '@agent/components/DOMHighlighter'; import { DragResizeLayout } from '@agent/components/layouts/DragResizeLayout'; import { MobileLayout } from '@agent/components/layouts/MobileLayout'; import { useGlobalStore } from '@agent/state/global'; import { useWorkflowStore } from '@agent/state/workflows'; export const Chat = ({ busy, children }) => { const { setIsMobile, isMobile } = useGlobalStore(); const { domToolEnabled, block, setBlock } = useWorkflowStore(); useEffect(() => { if (!isMobile || !block) return; // Remove the block if we switch to mobile setBlock(null); }, [isMobile, setIsMobile, block, setBlock]); useEffect(() => { let timeout; const onResize = () => { clearTimeout(timeout); timeout = window.setTimeout(() => { setIsMobile(window.innerWidth < 783); }, 10); }; window.addEventListener('resize', onResize); return () => { clearTimeout(timeout); window.removeEventListener('resize', onResize); }; }, [setIsMobile]); if (isMobile) { return ( <MobileLayout> <div id="extendify-agent-chat" className="flex min-h-0 flex-1 flex-grow flex-col font-sans"> {children} </div> </MobileLayout> ); } return ( <DragResizeLayout> <div id="extendify-agent-chat" className="flex min-h-0 flex-1 flex-grow flex-col font-sans"> {children} </div> {domToolEnabled && <DOMHighlighter busy={busy} />} </DragResizeLayout> ); };
/home/batcwwjx/./././public_html/wp-content/./././plugins/extendify/src/Agent/Chat.jsx