import { memo, useRef, } from 'react' import { useKeyPress } from 'ahooks' import cn from 'classnames' import { useTranslation } from 'react-i18next' import { useEdgesInteractions, useNodesInteractions, useWorkflowInteractions, } from '../../hooks' import ChatWrapper from './chat-wrapper' import Button from '@/app/components/base/button' import { RefreshCcw01 } from '@/app/components/base/icons/src/vender/line/arrows' import { XClose } from '@/app/components/base/icons/src/vender/line/general' export type ChatWrapperRefType = { handleRestart: () => void } const DebugAndPreview = () => { const { t } = useTranslation() const chatRef = useRef({ handleRestart: () => {} }) const { handleCancelDebugAndPreviewPanel } = useWorkflowInteractions() const { handleNodeCancelRunningStatus } = useNodesInteractions() const { handleEdgeCancelRunningStatus } = useEdgesInteractions() const handleRestartChat = () => { handleNodeCancelRunningStatus() handleEdgeCancelRunningStatus() chatRef.current.handleRestart() } useKeyPress('shift.r', () => { handleRestartChat() }, { exactMatch: true, }) return (