mirror of
https://github.com/langgenius/dify.git
synced 2026-02-20 18:04:48 +08:00
Signed-off-by: -LAN- <laipz8200@outlook.com> Co-authored-by: twwu <twwu@dify.ai> Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com> Co-authored-by: jyong <718720800@qq.com> Co-authored-by: Wu Tianwei <30284043+WTW0313@users.noreply.github.com> Co-authored-by: QuantumGhost <obelisk.reg+git@gmail.com> Co-authored-by: lyzno1 <yuanyouhuilyz@gmail.com> Co-authored-by: quicksand <quicksandzn@gmail.com> Co-authored-by: Jyong <76649700+JohnJyong@users.noreply.github.com> Co-authored-by: lyzno1 <92089059+lyzno1@users.noreply.github.com> Co-authored-by: zxhlyh <jasonapring2015@outlook.com> Co-authored-by: Yongtao Huang <yongtaoh2022@gmail.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: nite-knite <nkCoding@gmail.com> Co-authored-by: Hanqing Zhao <sherry9277@gmail.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: Harry <xh001x@hotmail.com>
78 lines
2.2 KiB
TypeScript
78 lines
2.2 KiB
TypeScript
import {
|
|
memo,
|
|
useState,
|
|
} from 'react'
|
|
import type { EnvironmentVariable } from '@/app/components/workflow/types'
|
|
import { DSL_EXPORT_CHECK } from '@/app/components/workflow/constants'
|
|
import { useStore } from '@/app/components/workflow/store'
|
|
import PluginDependency from '../../workflow/plugin-dependency'
|
|
import {
|
|
useDSL,
|
|
usePanelInteractions,
|
|
} from '@/app/components/workflow/hooks'
|
|
import { useEventEmitterContextContext } from '@/context/event-emitter'
|
|
import WorkflowHeader from './workflow-header'
|
|
import WorkflowPanel from './workflow-panel'
|
|
import dynamic from 'next/dynamic'
|
|
|
|
const Features = dynamic(() => import('@/app/components/workflow/features'), {
|
|
ssr: false,
|
|
})
|
|
const UpdateDSLModal = dynamic(() => import('@/app/components/workflow/update-dsl-modal'), {
|
|
ssr: false,
|
|
})
|
|
const DSLExportConfirmModal = dynamic(() => import('@/app/components/workflow/dsl-export-confirm-modal'), {
|
|
ssr: false,
|
|
})
|
|
|
|
const WorkflowChildren = () => {
|
|
const { eventEmitter } = useEventEmitterContextContext()
|
|
const [secretEnvList, setSecretEnvList] = useState<EnvironmentVariable[]>([])
|
|
const showFeaturesPanel = useStore(s => s.showFeaturesPanel)
|
|
const showImportDSLModal = useStore(s => s.showImportDSLModal)
|
|
const setShowImportDSLModal = useStore(s => s.setShowImportDSLModal)
|
|
const {
|
|
handlePaneContextmenuCancel,
|
|
} = usePanelInteractions()
|
|
const {
|
|
exportCheck,
|
|
handleExportDSL,
|
|
} = useDSL()
|
|
|
|
eventEmitter?.useSubscription((v: any) => {
|
|
if (v.type === DSL_EXPORT_CHECK)
|
|
setSecretEnvList(v.payload.data as EnvironmentVariable[])
|
|
})
|
|
|
|
return (
|
|
<>
|
|
<PluginDependency />
|
|
{
|
|
showFeaturesPanel && <Features />
|
|
}
|
|
{
|
|
showImportDSLModal && (
|
|
<UpdateDSLModal
|
|
onCancel={() => setShowImportDSLModal(false)}
|
|
onBackup={exportCheck!}
|
|
onImport={handlePaneContextmenuCancel}
|
|
/>
|
|
)
|
|
}
|
|
{
|
|
secretEnvList.length > 0 && (
|
|
<DSLExportConfirmModal
|
|
envList={secretEnvList}
|
|
onConfirm={handleExportDSL!}
|
|
onClose={() => setSecretEnvList([])}
|
|
/>
|
|
)
|
|
}
|
|
<WorkflowHeader />
|
|
<WorkflowPanel />
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default memo(WorkflowChildren)
|