mirror of
https://github.com/langgenius/dify.git
synced 2026-06-10 01:41:16 +08:00
Co-authored-by: JzoNg <jzongcode@gmail.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
100 lines
2.8 KiB
TypeScript
100 lines
2.8 KiB
TypeScript
'use client'
|
|
|
|
import { useMemo } from 'react'
|
|
import Loading from '@/app/components/base/loading'
|
|
import WorkflowWithDefaultContext from '@/app/components/workflow'
|
|
import { WorkflowContextProvider } from '@/app/components/workflow/context'
|
|
import {
|
|
initialEdges,
|
|
initialNodes,
|
|
} from '@/app/components/workflow/utils'
|
|
import SnippetLayout from './components/snippet-layout'
|
|
import SnippetMain from './components/snippet-main'
|
|
import { useSnippetInit } from './hooks/use-snippet-init'
|
|
|
|
type SnippetPageProps = {
|
|
snippetId: string
|
|
}
|
|
|
|
const SnippetPageLoading = () => {
|
|
return (
|
|
<div className="flex h-full items-center justify-center bg-background-body">
|
|
<Loading />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
const SnippetPage = ({ snippetId }: SnippetPageProps) => {
|
|
const { data, isLoading } = useSnippetInit(snippetId)
|
|
const publishedNodesData = useMemo(() => {
|
|
if (!data)
|
|
return []
|
|
|
|
return initialNodes(data.published.graph.nodes, data.published.graph.edges)
|
|
}, [data])
|
|
const publishedEdgesData = useMemo(() => {
|
|
if (!data)
|
|
return []
|
|
|
|
return initialEdges(data.published.graph.edges, data.published.graph.nodes)
|
|
}, [data])
|
|
const draftNodesData = useMemo(() => {
|
|
if (!data)
|
|
return []
|
|
|
|
return initialNodes(data.draft.graph.nodes, data.draft.graph.edges)
|
|
}, [data])
|
|
const draftEdgesData = useMemo(() => {
|
|
if (!data)
|
|
return []
|
|
|
|
return initialEdges(data.draft.graph.edges, data.draft.graph.nodes)
|
|
}, [data])
|
|
|
|
if (!data || isLoading) {
|
|
return <SnippetPageLoading />
|
|
}
|
|
|
|
const hasPublishedWorkflow = !!data.publishedWorkflow
|
|
const initialWorkflowNodesData = hasPublishedWorkflow ? publishedNodesData : draftNodesData
|
|
const initialWorkflowEdgesData = hasPublishedWorkflow ? publishedEdgesData : draftEdgesData
|
|
|
|
return (
|
|
<SnippetLayout
|
|
snippetId={snippetId}
|
|
snippet={data.snippet}
|
|
section="orchestrate"
|
|
>
|
|
<WorkflowWithDefaultContext
|
|
edges={initialWorkflowEdgesData}
|
|
nodes={initialWorkflowNodesData}
|
|
>
|
|
<SnippetMain
|
|
key={snippetId}
|
|
snippetId={snippetId}
|
|
payload={data.published}
|
|
draftPayload={data.draft}
|
|
hasInitialDraftChanges={data.hasDraftChanges}
|
|
hasPublishedWorkflow={hasPublishedWorkflow}
|
|
nodes={publishedNodesData}
|
|
edges={publishedEdgesData}
|
|
viewport={data.published.graph.viewport}
|
|
draftNodes={draftNodesData}
|
|
draftEdges={draftEdgesData}
|
|
draftViewport={data.draft.graph.viewport}
|
|
/>
|
|
</WorkflowWithDefaultContext>
|
|
</SnippetLayout>
|
|
)
|
|
}
|
|
|
|
const SnippetPageWrapper = ({ snippetId }: SnippetPageProps) => {
|
|
return (
|
|
<WorkflowContextProvider key={snippetId}>
|
|
<SnippetPage snippetId={snippetId} />
|
|
</WorkflowContextProvider>
|
|
)
|
|
}
|
|
|
|
export default SnippetPageWrapper
|