文件操作 - Chat.jsx
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/extendify/src/Agent/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 { useEditModeStore } from '@quick-edit/state/edit-mode'; import { useQuickEditStore } from '@quick-edit/state/store'; import { useEffect } from '@wordpress/element'; import { SidebarLayout } from './components/layouts/SidebarLayout'; export const Chat = ({ busy, children }) => { const { setIsMobile, isMobile, mode } = useGlobalStore(); const editModeOn = useEditModeStore((s) => s.on); const block = useQuickEditStore((s) => s.agentBlock); const setBlock = useQuickEditStore((s) => s.setAgentBlock); 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 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> {editModeOn && <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> {editModeOn && <DOMHighlighter busy={busy} />} </DragResizeLayout> ); };
修改文件时间
将文件时间修改为当前时间的前一年
删除文件