mirror of
https://github.com/langgenius/dify.git
synced 2026-07-21 18:58:35 +08:00
63 lines
2.1 KiB
TypeScript
63 lines
2.1 KiB
TypeScript
import type { FC } from 'react'
|
|
import { cn } from '@langgenius/dify-ui/cn'
|
|
import { debounce } from 'es-toolkit/compat'
|
|
import { useCallback, useMemo } from 'react'
|
|
import { useResizePanel } from '../nodes/_base/hooks/use-resize-panel'
|
|
import { useSetWorkflowVariableInspectPanelHeight } from '../persistence/local-storage-options'
|
|
import { useStore } from '../store'
|
|
import Panel from './panel'
|
|
|
|
const VariableInspectPanel: FC = () => {
|
|
const showVariableInspectPanel = useStore((s) => s.showVariableInspectPanel)
|
|
const workflowCanvasHeight = useStore((s) => s.workflowCanvasHeight)
|
|
const variableInspectPanelHeight = useStore((s) => s.variableInspectPanelHeight)
|
|
const setVariableInspectPanelHeight = useStore((s) => s.setVariableInspectPanelHeight)
|
|
|
|
const maxHeight = useMemo(() => {
|
|
if (!workflowCanvasHeight) return 480
|
|
return workflowCanvasHeight - 60
|
|
}, [workflowCanvasHeight])
|
|
|
|
const setPanelHeightStorage = useSetWorkflowVariableInspectPanelHeight()
|
|
|
|
const handleResize = useCallback(
|
|
(width: number, height: number) => {
|
|
setPanelHeightStorage(height)
|
|
setVariableInspectPanelHeight(height)
|
|
},
|
|
[setVariableInspectPanelHeight, setPanelHeightStorage],
|
|
)
|
|
|
|
const { triggerRef, containerRef } = useResizePanel({
|
|
direction: 'vertical',
|
|
triggerDirection: 'top',
|
|
minHeight: 120,
|
|
maxHeight,
|
|
onResize: debounce(handleResize),
|
|
})
|
|
|
|
if (!showVariableInspectPanel) return null
|
|
|
|
return (
|
|
<div className={cn('relative pb-1')}>
|
|
<div
|
|
ref={triggerRef}
|
|
className="absolute -top-1 left-0 flex h-1 w-full cursor-row-resize resize-y items-center justify-center"
|
|
>
|
|
<div className="h-0.5 w-10 rounded-xs bg-state-base-handle hover:w-full hover:bg-state-accent-solid active:w-full active:bg-state-accent-solid"></div>
|
|
</div>
|
|
<div
|
|
ref={containerRef}
|
|
className={cn(
|
|
'overflow-hidden rounded-2xl border-[0.5px] border-components-panel-border bg-components-panel-bg shadow-xl',
|
|
)}
|
|
style={{ height: `${variableInspectPanelHeight}px` }}
|
|
>
|
|
<Panel />
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default VariableInspectPanel
|