123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 |
- import type { FC } from 'react'
- import {
- useEffect,
- useState,
- } from 'react'
- import { useAsyncEffect } from 'ahooks'
- import { useThemeContext } from '../embedded-chatbot/theme/theme-context'
- import {
- ChatWithHistoryContext,
- useChatWithHistoryContext,
- } from './context'
- import { useChatWithHistory } from './hooks'
- import Sidebar from './sidebar'
- import Header from './header'
- import HeaderInMobile from './header-in-mobile'
- 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'
- import AppUnavailable from '@/app/components/base/app-unavailable'
- import cn from '@/utils/classnames'
- type ChatWithHistoryProps = {
- className?: string
- }
- const ChatWithHistory: FC<ChatWithHistoryProps> = ({
- className,
- }) => {
- const {
- appInfoError,
- appData,
- appInfoLoading,
- appChatListDataLoading,
- chatShouldReloadKey,
- isMobile,
- themeBuilder,
- sidebarCollapseState,
- } = useChatWithHistoryContext()
- const isSidebarCollapsed = sidebarCollapseState
- const customConfig = appData?.custom_config
- const site = appData?.site
- const [showSidePanel, setShowSidePanel] = useState(false)
- 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])
- if (appInfoLoading) {
- return (
- <Loading type='app' />
- )
- }
- if (appInfoError) {
- return (
- <AppUnavailable />
- )
- }
- return (
- <div className={cn(
- 'flex h-full bg-background-default-burn',
- isMobile && 'flex-col',
- className,
- )}>
- {!isMobile && (
- <div className={cn(
- 'flex w-[236px] flex-col p-1 pr-0 transition-all duration-200 ease-in-out',
- isSidebarCollapsed && 'w-0 overflow-hidden !p-0',
- )}>
- <Sidebar />
- </div>
- )}
- {isMobile && (
- <HeaderInMobile />
- )}
- <div className={cn('relative grow p-2', isMobile && 'h-[calc(100%_-_56px)] p-0')}>
- {isSidebarCollapsed && (
- <div
- className={cn(
- 'absolute top-0 z-20 flex h-full w-[256px] flex-col p-2 transition-all duration-500 ease-in-out',
- showSidePanel ? 'left-0' : 'left-[-248px]',
- )}
- onMouseEnter={() => setShowSidePanel(true)}
- onMouseLeave={() => setShowSidePanel(false)}
- >
- <Sidebar isPanel />
- </div>
- )}
- <div className={cn('flex h-full flex-col overflow-hidden border-[0,5px] border-components-panel-border-subtle bg-chatbot-bg', isMobile ? 'rounded-t-2xl' : 'rounded-2xl')}>
- {!isMobile && <Header />}
- {appChatListDataLoading && (
- <Loading type='app' />
- )}
- {!appChatListDataLoading && (
- <ChatWrapper key={chatShouldReloadKey} />
- )}
- </div>
- </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,
- appData,
- appParams,
- appMeta,
- appChatListDataLoading,
- currentConversationId,
- currentConversationItem,
- appPrevChatTree,
- pinnedConversationList,
- conversationList,
- newConversationInputs,
- newConversationInputsRef,
- handleNewConversationInputsChange,
- inputsForms,
- handleNewConversation,
- handleStartChat,
- handleChangeConversation,
- handlePinConversation,
- handleUnpinConversation,
- handleDeleteConversation,
- conversationRenaming,
- handleRenameConversation,
- handleNewConversationCompleted,
- chatShouldReloadKey,
- isInstalledApp,
- appId,
- handleFeedback,
- currentChatInstanceRef,
- sidebarCollapseState,
- handleSidebarCollapse,
- clearChatList,
- setClearChatList,
- isResponding,
- setIsResponding,
- } = useChatWithHistory(installedAppInfo)
- return (
- <ChatWithHistoryContext.Provider value={{
- appInfoError,
- appInfoLoading,
- appData,
- appParams,
- appMeta,
- appChatListDataLoading,
- currentConversationId,
- currentConversationItem,
- appPrevChatTree,
- pinnedConversationList,
- conversationList,
- newConversationInputs,
- newConversationInputsRef,
- handleNewConversationInputsChange,
- inputsForms,
- handleNewConversation,
- handleStartChat,
- handleChangeConversation,
- handlePinConversation,
- handleUnpinConversation,
- handleDeleteConversation,
- conversationRenaming,
- handleRenameConversation,
- handleNewConversationCompleted,
- chatShouldReloadKey,
- isMobile,
- isInstalledApp,
- appId,
- handleFeedback,
- currentChatInstanceRef,
- themeBuilder,
- sidebarCollapseState,
- handleSidebarCollapse,
- clearChatList,
- setClearChatList,
- isResponding,
- setIsResponding,
- }}>
- <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
|