mirror of
https://github.com/langgenius/dify.git
synced 2025-08-01 13:58:23 +00:00
74 lines
1.9 KiB
TypeScript
74 lines
1.9 KiB
TypeScript
'use client'
|
|
import type { FC } from 'react'
|
|
import React, { useCallback, useEffect, useState } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import type { Topic } from '../types'
|
|
import Editor from '@/app/components/workflow/nodes/_base/components/prompt/editor'
|
|
import useAvailableVarList from '@/app/components/workflow/nodes/_base/hooks/use-available-var-list'
|
|
import type { ValueSelector, Var } from '@/app/components/workflow/types'
|
|
import { uniqueId } from 'lodash-es'
|
|
|
|
const i18nPrefix = 'workflow.nodes.questionClassifiers'
|
|
|
|
type Props = {
|
|
className?: string
|
|
headerClassName?: string
|
|
nodeId: string
|
|
payload: Topic
|
|
onChange: (payload: Topic) => void
|
|
onRemove: () => void
|
|
index: number
|
|
readonly?: boolean
|
|
filterVar: (payload: Var, valueSelector: ValueSelector) => boolean
|
|
}
|
|
|
|
const ClassItem: FC<Props> = ({
|
|
className,
|
|
headerClassName,
|
|
nodeId,
|
|
payload,
|
|
onChange,
|
|
onRemove,
|
|
index,
|
|
readonly,
|
|
filterVar,
|
|
}) => {
|
|
const { t } = useTranslation()
|
|
const [instanceId, setInstanceId] = useState(uniqueId())
|
|
|
|
useEffect(() => {
|
|
setInstanceId(`${nodeId}-${uniqueId()}`)
|
|
}, [nodeId])
|
|
|
|
const handleNameChange = useCallback((value: string) => {
|
|
onChange({ ...payload, name: value })
|
|
}, [onChange, payload])
|
|
|
|
const { availableVars, availableNodesWithParent } = useAvailableVarList(nodeId, {
|
|
onlyLeafNodeVar: false,
|
|
hideChatVar: false,
|
|
hideEnv: false,
|
|
filterVar,
|
|
})
|
|
|
|
return (
|
|
<Editor
|
|
className={className}
|
|
headerClassName={headerClassName}
|
|
title={`${t(`${i18nPrefix}.class`)} ${index}`}
|
|
placeholder={t(`${i18nPrefix}.topicPlaceholder`)!}
|
|
value={payload.name}
|
|
onChange={handleNameChange}
|
|
showRemove
|
|
onRemove={onRemove}
|
|
nodesOutputVars={availableVars}
|
|
availableNodes={availableNodesWithParent}
|
|
readOnly={readonly} // ?
|
|
instanceId={instanceId}
|
|
justVar // ?
|
|
isSupportFileVar // ?
|
|
/>
|
|
)
|
|
}
|
|
export default React.memo(ClassItem)
|