import { useCallback, useEffect, useMemo } from 'react' import Chat from '../chat' import type { ChatConfig, OnSend, } from '../types' import { useChat } from '../chat/hooks' import { useChatWithHistoryContext } from './context' import Header from './header' import ConfigPanel from './config-panel' import { fetchSuggestedQuestions, getUrl, stopChatMessageResponding, } from '@/service/share' const ChatWrapper = () => { const { appParams, appPrevChatList, currentConversationId, currentConversationItem, inputsForms, newConversationInputs, handleNewConversationCompleted, isMobile, isInstalledApp, appId, appMeta, handleFeedback, currentChatInstanceRef, } = useChatWithHistoryContext() const appConfig = useMemo(() => { const config = appParams || {} return { ...config, supportFeedback: true, } as ChatConfig }, [appParams]) const { chatList, handleSend, handleStop, isResponsing, suggestedQuestions, } = useChat( appConfig, undefined, appPrevChatList, taskId => stopChatMessageResponding('', taskId, isInstalledApp, appId), ) useEffect(() => { if (currentChatInstanceRef.current) currentChatInstanceRef.current.handleStop = handleStop }, []) const doSend: OnSend = useCallback((message, files) => { const data: any = { query: message, inputs: currentConversationId ? currentConversationItem?.inputs : newConversationInputs, conversation_id: currentConversationId, } if (appConfig?.file_upload?.image.enabled && files?.length) data.files = files handleSend( getUrl('chat-messages', isInstalledApp, appId || ''), data, { onGetSuggestedQuestions: responseItemId => fetchSuggestedQuestions(responseItemId, isInstalledApp, appId), onConversationComplete: currentConversationId ? undefined : handleNewConversationCompleted, isPublicAPI: !isInstalledApp, }, ) }, [ appConfig, currentConversationId, currentConversationItem, handleSend, newConversationInputs, handleNewConversationCompleted, isInstalledApp, appId, ]) const chatNode = useMemo(() => { if (inputsForms.length) { return ( <>
{ !currentConversationId && (
) } ) } return (
) }, [ currentConversationId, inputsForms, currentConversationItem, isMobile, ]) return ( ) } export default ChatWrapper