You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
264 lines
6.9 KiB
TypeScript
264 lines
6.9 KiB
TypeScript
'use client'
|
|
import type { FC } from 'react'
|
|
import {
|
|
useCallback,
|
|
useEffect,
|
|
useState,
|
|
} from 'react'
|
|
import { useAsyncEffect } from 'ahooks'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { usePathname, useRouter, useSearchParams } from 'next/navigation'
|
|
import { useThemeContext } from '../embedded-chatbot/theme/theme-context'
|
|
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, removeAccessToken } from '@/app/components/share/utils'
|
|
import AppUnavailable from '@/app/components/base/app-unavailable'
|
|
import useDocumentTitle from '@/hooks/use-document-title'
|
|
|
|
type ChatWithHistoryProps = {
|
|
className?: string
|
|
}
|
|
const ChatWithHistory: FC<ChatWithHistoryProps> = ({
|
|
className,
|
|
}) => {
|
|
const {
|
|
userCanAccess,
|
|
appInfoError,
|
|
appData,
|
|
appInfoLoading,
|
|
appPrevChatTree,
|
|
showConfigPanelBeforeChat,
|
|
appChatListDataLoading,
|
|
chatShouldReloadKey,
|
|
isMobile,
|
|
themeBuilder,
|
|
isInstalledApp,
|
|
} = useChatWithHistoryContext()
|
|
|
|
const chatReady = (!showConfigPanelBeforeChat || !!appPrevChatTree.length)
|
|
const customConfig = appData?.custom_config
|
|
const site = appData?.site
|
|
|
|
useEffect(() => {
|
|
themeBuilder?.buildTheme(site?.chat_color_theme, site?.chat_color_theme_inverted)
|
|
if (site) {
|
|
if (customConfig)
|
|
document.title = `${site.title}`
|
|
else
|
|
document.title = `${site.title} - Powered by Dify`
|
|
}
|
|
}, [site, customConfig, themeBuilder])
|
|
|
|
useDocumentTitle(site?.title || 'Chat')
|
|
|
|
const { t } = useTranslation()
|
|
const searchParams = useSearchParams()
|
|
const router = useRouter()
|
|
const pathname = usePathname()
|
|
const getSigninUrl = useCallback(() => {
|
|
const params = new URLSearchParams(searchParams)
|
|
params.delete('message')
|
|
params.set('redirect_url', pathname)
|
|
return `/webapp-signin?${params.toString()}`
|
|
}, [searchParams, pathname])
|
|
|
|
const backToHome = useCallback(() => {
|
|
removeAccessToken()
|
|
const url = getSigninUrl()
|
|
router.replace(url)
|
|
}, [getSigninUrl, router])
|
|
|
|
if (appInfoLoading) {
|
|
return (
|
|
<Loading type='app' />
|
|
)
|
|
}
|
|
if (!userCanAccess) {
|
|
return <div className='flex h-full flex-col items-center justify-center gap-y-2'>
|
|
<AppUnavailable className='h-auto w-auto' code={403} unknownReason='no permission.' />
|
|
{!isInstalledApp && <span className='system-sm-regular cursor-pointer text-text-tertiary' onClick={backToHome}>{t('common.userProfile.logout')}</span>}
|
|
</div>
|
|
}
|
|
|
|
if (appInfoError) {
|
|
return (
|
|
<AppUnavailable />
|
|
)
|
|
}
|
|
|
|
return (
|
|
<div className={`h-full flex bg-white ${className} ${isMobile && 'flex-col'}`}>
|
|
{
|
|
!isMobile && (
|
|
<Sidebar />
|
|
)
|
|
}
|
|
{
|
|
isMobile && (
|
|
<HeaderInMobile />
|
|
)
|
|
}
|
|
<div className={`grow overflow-hidden ${showConfigPanelBeforeChat && !appPrevChatTree.length && 'flex items-center justify-center'}`}>
|
|
{
|
|
showConfigPanelBeforeChat && !appChatListDataLoading && !appPrevChatTree.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 themeBuilder = useThemeContext()
|
|
|
|
const {
|
|
appInfoError,
|
|
appInfoLoading,
|
|
userCanAccess,
|
|
appData,
|
|
appParams,
|
|
appMeta,
|
|
appChatListDataLoading,
|
|
currentConversationId,
|
|
currentConversationItem,
|
|
appPrevChatTree,
|
|
pinnedConversationList,
|
|
conversationList,
|
|
showConfigPanelBeforeChat,
|
|
newConversationInputs,
|
|
newConversationInputsRef,
|
|
handleNewConversationInputsChange,
|
|
inputsForms,
|
|
handleNewConversation,
|
|
handleStartChat,
|
|
handleChangeConversation,
|
|
handlePinConversation,
|
|
handleUnpinConversation,
|
|
handleDeleteConversation,
|
|
conversationRenaming,
|
|
handleRenameConversation,
|
|
handleNewConversationCompleted,
|
|
chatShouldReloadKey,
|
|
isInstalledApp,
|
|
appId,
|
|
handleFeedback,
|
|
currentChatInstanceRef,
|
|
} = useChatWithHistory(installedAppInfo)
|
|
|
|
return (
|
|
<ChatWithHistoryContext.Provider value={{
|
|
appInfoError,
|
|
appInfoLoading,
|
|
appData,
|
|
userCanAccess,
|
|
appParams,
|
|
appMeta,
|
|
appChatListDataLoading,
|
|
currentConversationId,
|
|
currentConversationItem,
|
|
appPrevChatTree,
|
|
pinnedConversationList,
|
|
conversationList,
|
|
showConfigPanelBeforeChat,
|
|
newConversationInputs,
|
|
newConversationInputsRef,
|
|
handleNewConversationInputsChange,
|
|
inputsForms,
|
|
handleNewConversation,
|
|
handleStartChat,
|
|
handleChangeConversation,
|
|
handlePinConversation,
|
|
handleUnpinConversation,
|
|
handleDeleteConversation,
|
|
conversationRenaming,
|
|
handleRenameConversation,
|
|
handleNewConversationCompleted,
|
|
chatShouldReloadKey,
|
|
isMobile,
|
|
isInstalledApp,
|
|
appId,
|
|
handleFeedback,
|
|
currentChatInstanceRef,
|
|
themeBuilder,
|
|
}}>
|
|
<ChatWithHistory className={className} />
|
|
</ChatWithHistoryContext.Provider>
|
|
)
|
|
}
|
|
|
|
const ChatWithHistoryWrapWithCheckToken: FC<ChatWithHistoryWrapProps> = ({
|
|
installedAppInfo,
|
|
className,
|
|
}) => {
|
|
const [initialized, setInitialized] = useState(false)
|
|
const [appUnavailable, setAppUnavailable] = useState<boolean>(false)
|
|
const [isUnknownReason, setIsUnknownReason] = useState<boolean>(false)
|
|
|
|
useAsyncEffect(async () => {
|
|
if (!initialized) {
|
|
if (!installedAppInfo) {
|
|
try {
|
|
await checkOrSetAccessToken()
|
|
}
|
|
catch (e: any) {
|
|
if (e.status === 404) {
|
|
setAppUnavailable(true)
|
|
}
|
|
else {
|
|
setIsUnknownReason(true)
|
|
setAppUnavailable(true)
|
|
}
|
|
}
|
|
}
|
|
setInitialized(true)
|
|
}
|
|
}, [])
|
|
|
|
if (!initialized)
|
|
return null
|
|
|
|
if (appUnavailable)
|
|
return <AppUnavailable isUnknownReason={isUnknownReason} />
|
|
|
|
return (
|
|
<ChatWithHistoryWrap
|
|
installedAppInfo={installedAppInfo}
|
|
className={className}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export default ChatWithHistoryWrapWithCheckToken
|