mirror of
https://github.com/langgenius/dify.git
synced 2025-07-19 07:31:09 +00:00
196 lines
4.7 KiB
TypeScript
196 lines
4.7 KiB
TypeScript
![]() |
import type { FC } from 'react'
|
||
|
import {
|
||
|
useEffect,
|
||
|
useState,
|
||
|
} from 'react'
|
||
|
import { useAsyncEffect } from 'ahooks'
|
||
|
import {
|
||
|
ChatWithHistoryContext,
|
||
|
useChatWithHistoryContext,
|
||
|
} from './context'
|
||
|
import { useChatWithHistory } from './hooks'
|
||
|
import Sidebar from './sidebar'
|
||
|
import HeaderInMobile from './header-in-mobile'
|
||
|
import ConfigPanel from './config-panel'
|
||
|
import ChatWrapper from './chat-wrapper'
|
||
|
import type { InstalledApp } from '@/models/explore'
|
||
|
import Loading from '@/app/components/base/loading'
|
||
|
import useBreakpoints, { MediaType } from '@/hooks/use-breakpoints'
|
||
|
import { checkOrSetAccessToken } from '@/app/components/share/utils'
|
||
|
|
||
|
type ChatWithHistoryProps = {
|
||
|
className?: string
|
||
|
}
|
||
|
const ChatWithHistory: FC<ChatWithHistoryProps> = ({
|
||
|
className,
|
||
|
}) => {
|
||
|
const {
|
||
|
appData,
|
||
|
appInfoLoading,
|
||
|
appPrevChatList,
|
||
|
showConfigPanelBeforeChat,
|
||
|
appChatListDataLoading,
|
||
|
chatShouldReloadKey,
|
||
|
isMobile,
|
||
|
} = useChatWithHistoryContext()
|
||
|
|
||
|
const chatReady = (!showConfigPanelBeforeChat || !!appPrevChatList.length)
|
||
|
const customConfig = appData?.custom_config
|
||
|
const site = appData?.site
|
||
|
|
||
|
useEffect(() => {
|
||
|
if (site) {
|
||
|
if (customConfig)
|
||
|
document.title = `${site.title}`
|
||
|
else
|
||
|
document.title = `${site.title} - Powered by Dify`
|
||
|
}
|
||
|
}, [site, customConfig])
|
||
|
|
||
|
if (appInfoLoading) {
|
||
|
return (
|
||
|
<Loading type='app' />
|
||
|
)
|
||
|
}
|
||
|
|
||
|
return (
|
||
|
<div className={`h-full flex bg-white ${className} ${isMobile && 'flex-col'}`}>
|
||
|
{
|
||
|
!isMobile && (
|
||
|
<Sidebar />
|
||
|
)
|
||
|
}
|
||
|
{
|
||
|
isMobile && (
|
||
|
<HeaderInMobile />
|
||
|
)
|
||
|
}
|
||
|
<div className={`grow overflow-hidden ${showConfigPanelBeforeChat && !appPrevChatList.length && 'flex items-center justify-center'}`}>
|
||
|
{
|
||
|
showConfigPanelBeforeChat && !appChatListDataLoading && !appPrevChatList.length && (
|
||
|
<div className={`flex w-full items-center justify-center h-full ${isMobile && 'px-4'}`}>
|
||
|
<ConfigPanel />
|
||
|
</div>
|
||
|
)
|
||
|
}
|
||
|
{
|
||
|
appChatListDataLoading && chatReady && (
|
||
|
<Loading type='app' />
|
||
|
)
|
||
|
}
|
||
|
{
|
||
|
chatReady && !appChatListDataLoading && (
|
||
|
<ChatWrapper key={chatShouldReloadKey} />
|
||
|
)
|
||
|
}
|
||
|
</div>
|
||
|
</div>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export type ChatWithHistoryWrapProps = {
|
||
|
installedAppInfo?: InstalledApp
|
||
|
className?: string
|
||
|
}
|
||
|
const ChatWithHistoryWrap: FC<ChatWithHistoryWrapProps> = ({
|
||
|
installedAppInfo,
|
||
|
className,
|
||
|
}) => {
|
||
|
const media = useBreakpoints()
|
||
|
const isMobile = media === MediaType.mobile
|
||
|
|
||
|
const {
|
||
|
appInfoLoading,
|
||
|
appData,
|
||
|
appParams,
|
||
|
appMeta,
|
||
|
appChatListDataLoading,
|
||
|
currentConversationId,
|
||
|
currentConversationItem,
|
||
|
appPrevChatList,
|
||
|
pinnedConversationList,
|
||
|
conversationList,
|
||
|
showConfigPanelBeforeChat,
|
||
|
newConversationInputs,
|
||
|
handleNewConversationInputsChange,
|
||
|
inputsForms,
|
||
|
handleNewConversation,
|
||
|
handleStartChat,
|
||
|
handleChangeConversation,
|
||
|
handlePinConversation,
|
||
|
handleUnpinConversation,
|
||
|
handleDeleteConversation,
|
||
|
conversationRenaming,
|
||
|
handleRenameConversation,
|
||
|
handleNewConversationCompleted,
|
||
|
chatShouldReloadKey,
|
||
|
isInstalledApp,
|
||
|
appId,
|
||
|
handleFeedback,
|
||
|
currentChatInstanceRef,
|
||
|
} = useChatWithHistory(installedAppInfo)
|
||
|
|
||
|
return (
|
||
|
<ChatWithHistoryContext.Provider value={{
|
||
|
appInfoLoading,
|
||
|
appData,
|
||
|
appParams,
|
||
|
appMeta,
|
||
|
appChatListDataLoading,
|
||
|
currentConversationId,
|
||
|
currentConversationItem,
|
||
|
appPrevChatList,
|
||
|
pinnedConversationList,
|
||
|
conversationList,
|
||
|
showConfigPanelBeforeChat,
|
||
|
newConversationInputs,
|
||
|
handleNewConversationInputsChange,
|
||
|
inputsForms,
|
||
|
handleNewConversation,
|
||
|
handleStartChat,
|
||
|
handleChangeConversation,
|
||
|
handlePinConversation,
|
||
|
handleUnpinConversation,
|
||
|
handleDeleteConversation,
|
||
|
conversationRenaming,
|
||
|
handleRenameConversation,
|
||
|
handleNewConversationCompleted,
|
||
|
chatShouldReloadKey,
|
||
|
isMobile,
|
||
|
isInstalledApp,
|
||
|
appId,
|
||
|
handleFeedback,
|
||
|
currentChatInstanceRef,
|
||
|
}}>
|
||
|
<ChatWithHistory className={className} />
|
||
|
</ChatWithHistoryContext.Provider>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
const ChatWithHistoryWrapWithCheckToken: FC<ChatWithHistoryWrapProps> = ({
|
||
|
installedAppInfo,
|
||
|
className,
|
||
|
}) => {
|
||
|
const [inited, setInited] = useState(false)
|
||
|
|
||
|
useAsyncEffect(async () => {
|
||
|
if (!inited) {
|
||
|
if (!installedAppInfo)
|
||
|
await checkOrSetAccessToken()
|
||
|
setInited(true)
|
||
|
}
|
||
|
}, [])
|
||
|
|
||
|
if (!inited)
|
||
|
return null
|
||
|
|
||
|
return (
|
||
|
<ChatWithHistoryWrap
|
||
|
installedAppInfo={installedAppInfo}
|
||
|
className={className}
|
||
|
/>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default ChatWithHistoryWrapWithCheckToken
|