mirror of
https://github.com/langgenius/dify.git
synced 2026-04-09 01:37:14 +08:00
Co-authored-by: CodingOnStar <hanxujiang@dify.ai> Co-authored-by: yyh <92089059+lyzno1@users.noreply.github.com>
105 lines
3.7 KiB
TypeScript
105 lines
3.7 KiB
TypeScript
'use client'
|
|
import type { FC } from 'react'
|
|
import type {
|
|
EmbeddedChatbotContextValue,
|
|
} from '@/app/components/base/chat/embedded-chatbot/context'
|
|
import type { TryAppInfo } from '@/service/try-app'
|
|
import { RiResetLeftLine } from '@remixicon/react'
|
|
import { useBoolean } from 'ahooks'
|
|
import * as React from 'react'
|
|
import { useEffect } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import ActionButton from '@/app/components/base/action-button'
|
|
import Alert from '@/app/components/base/alert'
|
|
import AppIcon from '@/app/components/base/app-icon'
|
|
import ChatWrapper from '@/app/components/base/chat/embedded-chatbot/chat-wrapper'
|
|
import {
|
|
EmbeddedChatbotContext,
|
|
} from '@/app/components/base/chat/embedded-chatbot/context'
|
|
import {
|
|
useEmbeddedChatbot,
|
|
} from '@/app/components/base/chat/embedded-chatbot/hooks'
|
|
import ViewFormDropdown from '@/app/components/base/chat/embedded-chatbot/inputs-form/view-form-dropdown'
|
|
import Tooltip from '@/app/components/base/tooltip'
|
|
import useBreakpoints, { MediaType } from '@/hooks/use-breakpoints'
|
|
import { AppSourceType } from '@/service/share'
|
|
import { cn } from '@/utils/classnames'
|
|
import { useThemeContext } from '../../../base/chat/embedded-chatbot/theme/theme-context'
|
|
|
|
type Props = {
|
|
appId: string
|
|
appDetail: TryAppInfo
|
|
className: string
|
|
}
|
|
|
|
const TryApp: FC<Props> = ({
|
|
appId,
|
|
appDetail,
|
|
className,
|
|
}) => {
|
|
const { t } = useTranslation()
|
|
const media = useBreakpoints()
|
|
const isMobile = media === MediaType.mobile
|
|
const themeBuilder = useThemeContext()
|
|
const { removeConversationIdInfo, ...chatData } = useEmbeddedChatbot(AppSourceType.tryApp, appId)
|
|
const currentConversationId = chatData.currentConversationId
|
|
const inputsForms = chatData.inputsForms
|
|
useEffect(() => {
|
|
if (appId)
|
|
removeConversationIdInfo(appId)
|
|
}, [appId])
|
|
const [isHideTryNotice, {
|
|
setTrue: hideTryNotice,
|
|
}] = useBoolean(false)
|
|
|
|
const handleNewConversation = () => {
|
|
removeConversationIdInfo(appId)
|
|
chatData.handleNewConversation()
|
|
}
|
|
return (
|
|
<EmbeddedChatbotContext.Provider value={{
|
|
...chatData,
|
|
disableFeedback: true,
|
|
isMobile,
|
|
themeBuilder,
|
|
} as EmbeddedChatbotContextValue}
|
|
>
|
|
<div className={cn('flex h-full flex-col rounded-2xl bg-background-section-burn', className)}>
|
|
<div className="flex shrink-0 justify-between p-3">
|
|
<div className="flex grow items-center space-x-2">
|
|
<AppIcon
|
|
size="large"
|
|
iconType={appDetail.site.icon_type}
|
|
icon={appDetail.site.icon}
|
|
background={appDetail.site.icon_background}
|
|
imageUrl={appDetail.site.icon_url}
|
|
/>
|
|
<div className="system-md-semibold grow truncate text-text-primary" title={appDetail.name}>{appDetail.name}</div>
|
|
</div>
|
|
<div className="flex items-center gap-1">
|
|
{currentConversationId && (
|
|
<Tooltip
|
|
popupContent={t('chat.resetChat', { ns: 'share' })}
|
|
>
|
|
<ActionButton size="l" onClick={handleNewConversation}>
|
|
<RiResetLeftLine className="h-[18px] w-[18px]" />
|
|
</ActionButton>
|
|
</Tooltip>
|
|
)}
|
|
{currentConversationId && inputsForms.length > 0 && (
|
|
<ViewFormDropdown />
|
|
)}
|
|
</div>
|
|
</div>
|
|
<div className="mx-auto mt-4 flex h-[0] w-[769px] grow flex-col">
|
|
{!isHideTryNotice && (
|
|
<Alert className="mb-4 shrink-0" message={t('tryApp.tryInfo', { ns: 'explore' })} onHide={hideTryNotice} />
|
|
)}
|
|
<ChatWrapper />
|
|
</div>
|
|
</div>
|
|
</EmbeddedChatbotContext.Provider>
|
|
)
|
|
}
|
|
export default React.memo(TryApp)
|