mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-08 13:39:13 +08:00

Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: Yeuoly <admin@srmxy.cn> Co-authored-by: JzoNg <jzongcode@gmail.com> Co-authored-by: StyleZhang <jasonapring2015@outlook.com> Co-authored-by: jyong <jyong@dify.ai> Co-authored-by: nite-knite <nkCoding@gmail.com> Co-authored-by: jyong <718720800@qq.com>
89 lines
2.5 KiB
TypeScript
89 lines
2.5 KiB
TypeScript
import type { FC } from 'react'
|
|
import {
|
|
memo,
|
|
useMemo,
|
|
} from 'react'
|
|
import { useNodes } from 'reactflow'
|
|
import type { CommonNodeType } from '../types'
|
|
import { Panel as NodePanel } from '../nodes'
|
|
import { useStore } from '../store'
|
|
import { useIsChatMode } from '../hooks'
|
|
import DebugAndPreview from './debug-and-preview'
|
|
import Record from './record'
|
|
import WorkflowPreview from './workflow-preview'
|
|
import ChatRecord from './chat-record'
|
|
import { useStore as useAppStore } from '@/app/components/app/store'
|
|
import MessageLogModal from '@/app/components/base/message-log-modal'
|
|
|
|
const Panel: FC = () => {
|
|
const nodes = useNodes<CommonNodeType>()
|
|
const isChatMode = useIsChatMode()
|
|
const selectedNode = nodes.find(node => node.data.selected)
|
|
const showInputsPanel = useStore(s => s.showInputsPanel)
|
|
const workflowRunningData = useStore(s => s.workflowRunningData)
|
|
const historyWorkflowData = useStore(s => s.historyWorkflowData)
|
|
const { currentLogItem, setCurrentLogItem, showMessageLogModal, setShowMessageLogModal } = useAppStore()
|
|
const {
|
|
showNodePanel,
|
|
showDebugAndPreviewPanel,
|
|
showWorkflowPreview,
|
|
} = useMemo(() => {
|
|
return {
|
|
showNodePanel: !!selectedNode && !workflowRunningData && !historyWorkflowData && !showInputsPanel,
|
|
showDebugAndPreviewPanel: isChatMode && workflowRunningData && !historyWorkflowData,
|
|
showWorkflowPreview: !isChatMode && !historyWorkflowData && (workflowRunningData || showInputsPanel),
|
|
}
|
|
}, [
|
|
showInputsPanel,
|
|
selectedNode,
|
|
isChatMode,
|
|
workflowRunningData,
|
|
historyWorkflowData,
|
|
])
|
|
|
|
return (
|
|
<div className='absolute top-14 right-0 bottom-2 flex z-10'>
|
|
{
|
|
showMessageLogModal && (
|
|
<MessageLogModal
|
|
fixedWidth
|
|
width={400}
|
|
currentLogItem={currentLogItem}
|
|
onCancel={() => {
|
|
setCurrentLogItem()
|
|
setShowMessageLogModal(false)
|
|
}}
|
|
/>
|
|
)
|
|
}
|
|
{
|
|
historyWorkflowData && !isChatMode && (
|
|
<Record />
|
|
)
|
|
}
|
|
{
|
|
historyWorkflowData && isChatMode && (
|
|
<ChatRecord />
|
|
)
|
|
}
|
|
{
|
|
showDebugAndPreviewPanel && (
|
|
<DebugAndPreview />
|
|
)
|
|
}
|
|
{
|
|
showWorkflowPreview && (
|
|
<WorkflowPreview />
|
|
)
|
|
}
|
|
{
|
|
showNodePanel && (
|
|
<NodePanel {...selectedNode!} />
|
|
)
|
|
}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default memo(Panel)
|