mirror of
https://github.com/langgenius/dify.git
synced 2026-05-11 23:18:39 +08:00
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: jyong <718720800@qq.com> Co-authored-by: Yansong Zhang <916125788@qq.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: hj24 <mambahj24@gmail.com> Co-authored-by: hj24 <huangjian@dify.ai> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: Stephen Zhou <38493346+hyoban@users.noreply.github.com> Co-authored-by: CodingOnStar <hanxujiang@dify.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: 非法操作 <hjlarry@163.com> Co-authored-by: Ayush Baluni <73417844+aayushbaluni@users.noreply.github.com> Co-authored-by: yyh <92089059+lyzno1@users.noreply.github.com> Co-authored-by: jimcody1995 <jjimcody@gmail.com> Co-authored-by: James <63717587+jamesrayammons@users.noreply.github.com> Co-authored-by: Yunlu Wen <yunlu.wen@dify.ai> Co-authored-by: Stephen Zhou <hi@hyoban.cc> Co-authored-by: Coding On Star <447357187@qq.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: jerryzai <jerryzh8710@protonmail.com> Co-authored-by: NVIDIAN <speedy.hpc@hotmail.com> Co-authored-by: ai-hpc <ai-hpc@users.noreply.github.com> Co-authored-by: Asuka Minato <i@asukaminato.eu.org> Co-authored-by: Junghwan <70629228+shaun0927@users.noreply.github.com> Co-authored-by: HeYinKazune <70251095+HeYin-OS@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: yyh <yuanyouhuilyz@gmail.com> Co-authored-by: Jingyi <jingyi.qi@dify.ai> Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com> Co-authored-by: sxxtony <166789813+sxxtony@users.noreply.github.com>
86 lines
3.3 KiB
TypeScript
86 lines
3.3 KiB
TypeScript
import type { FC } from 'react'
|
|
import type { AssignerNodeType } from './types'
|
|
import type { OperationName } from './utils'
|
|
import type { Node, NodeProps } from '@/app/components/workflow/types'
|
|
import * as React from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { useNodes } from 'reactflow'
|
|
import Badge from '@/app/components/base/badge'
|
|
import { isSystemVar } from '@/app/components/workflow/nodes/_base/components/variable/utils'
|
|
import {
|
|
VariableLabelInNode,
|
|
} from '@/app/components/workflow/nodes/_base/components/variable/variable-label'
|
|
import { BlockEnum } from '@/app/components/workflow/types'
|
|
|
|
const i18nPrefix = 'nodes.assigner'
|
|
|
|
const NodeComponent: FC<NodeProps<AssignerNodeType>> = ({
|
|
data,
|
|
}) => {
|
|
const { t } = useTranslation()
|
|
const nodes: Node[] = useNodes()
|
|
if (data.version === '2') {
|
|
const { items: operationItems } = data
|
|
const validOperationItems = operationItems?.filter(item =>
|
|
item.variable_selector && item.variable_selector.length > 0,
|
|
) || []
|
|
|
|
if (validOperationItems.length === 0) {
|
|
return (
|
|
<div className="relative flex flex-col items-start gap-0.5 self-stretch px-3 py-1">
|
|
<div className="flex flex-col items-start gap-1 self-stretch">
|
|
<div className="flex items-center gap-1 self-stretch rounded-md bg-workflow-block-parma-bg px-[5px] py-1">
|
|
<div className="flex-1 system-xs-medium text-text-tertiary">{t(`${i18nPrefix}.varNotSet`, { ns: 'workflow' })}</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
return (
|
|
<div className="relative flex flex-col items-start gap-0.5 self-stretch px-3 py-1">
|
|
{operationItems.map((value, index) => {
|
|
const variable = value.variable_selector
|
|
if (!variable || variable.length === 0)
|
|
return null
|
|
const isSystem = isSystemVar(variable)
|
|
const node = isSystem ? nodes.find(node => node.data.type === BlockEnum.Start) : nodes.find(node => node.id === variable[0])
|
|
return (
|
|
<VariableLabelInNode
|
|
key={index}
|
|
variables={variable}
|
|
nodeType={node?.data.type}
|
|
nodeTitle={node?.data.title}
|
|
rightSlot={
|
|
!!value.operation && <Badge className="ml-auto! shrink-0" text={t(`${i18nPrefix}.operations.${value.operation}`, { ns: 'workflow' })} />
|
|
}
|
|
/>
|
|
)
|
|
})}
|
|
</div>
|
|
)
|
|
}
|
|
// Legacy version
|
|
type LegacyAssignerNodeType = { assigned_variable_selector: string[], write_mode: OperationName }
|
|
const { assigned_variable_selector: variable, write_mode: writeMode } = data as unknown as LegacyAssignerNodeType
|
|
|
|
if (!variable || variable.length === 0)
|
|
return null
|
|
const isSystem = isSystemVar(variable)
|
|
const node = isSystem ? nodes.find(node => node.data.type === BlockEnum.Start) : nodes.find(node => node.id === variable[0])
|
|
|
|
return (
|
|
<div className="relative flex flex-col items-start gap-0.5 self-stretch px-3 py-1">
|
|
<VariableLabelInNode
|
|
variables={variable}
|
|
nodeType={node?.data.type}
|
|
nodeTitle={node?.data.title}
|
|
rightSlot={
|
|
writeMode && <Badge className="ml-auto! shrink-0" text={t(`nodes.assigner.operations.${writeMode}`, { ns: 'workflow' })} />
|
|
}
|
|
/>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default React.memo(NodeComponent)
|