mirror of
https://github.com/langgenius/dify.git
synced 2026-07-31 01:09:32 +08:00
140 lines
3.6 KiB
TypeScript
140 lines
3.6 KiB
TypeScript
import type { TextNode } from 'lexical'
|
|
import type { HITLInputBlockType } from '../../types'
|
|
import type { Var } from '@/app/components/workflow/types'
|
|
import { useLexicalComposerContext } from '@lexical/react/LexicalComposerContext'
|
|
import { mergeRegister } from '@lexical/utils'
|
|
import { $applyNodeReplacement } from 'lexical'
|
|
import { memo, useCallback, useEffect, useMemo, useRef } from 'react'
|
|
import { HITL_INPUT_REG } from '@/config'
|
|
import { decoratorTransform } from '../../utils'
|
|
import { CustomTextNode } from '../custom-text/node'
|
|
import { $createHITLInputNode, HITLInputNode } from './node'
|
|
|
|
const REGEX = new RegExp(HITL_INPUT_REG)
|
|
|
|
const HITLInputReplacementBlock = ({
|
|
nodeId,
|
|
formInputs,
|
|
onFormInputsChange,
|
|
onFormInputItemRename,
|
|
onFormInputItemRemove,
|
|
workflowNodesMap = {},
|
|
getVarType,
|
|
variables,
|
|
readonly,
|
|
}: HITLInputBlockType) => {
|
|
const [editor] = useLexicalComposerContext()
|
|
|
|
const environmentVariables = useMemo(
|
|
() => variables?.find((o) => o.nodeId === 'env')?.vars || [],
|
|
[variables],
|
|
)
|
|
const conversationVariables = useMemo(
|
|
() => variables?.find((o) => o.nodeId === 'conversation')?.vars || [],
|
|
[variables],
|
|
)
|
|
const ragVariables = useMemo(
|
|
() =>
|
|
variables?.reduce<Var[]>((acc, curr) => {
|
|
if (curr.nodeId === 'rag') acc.push(...curr.vars)
|
|
else acc.push(...curr.vars.filter((v) => v.isRagVariable))
|
|
return acc
|
|
}, []),
|
|
[variables],
|
|
)
|
|
const latestConfigRef = useRef({
|
|
nodeId,
|
|
formInputs,
|
|
onFormInputsChange,
|
|
onFormInputItemRename,
|
|
onFormInputItemRemove,
|
|
workflowNodesMap,
|
|
getVarType,
|
|
environmentVariables,
|
|
conversationVariables,
|
|
ragVariables,
|
|
readonly,
|
|
})
|
|
latestConfigRef.current = {
|
|
nodeId,
|
|
formInputs,
|
|
onFormInputsChange,
|
|
onFormInputItemRename,
|
|
onFormInputItemRemove,
|
|
workflowNodesMap,
|
|
getVarType,
|
|
environmentVariables,
|
|
conversationVariables,
|
|
ragVariables,
|
|
readonly,
|
|
}
|
|
|
|
useEffect(() => {
|
|
if (!editor.hasNodes([HITLInputNode]))
|
|
throw new Error('HITLInputNodePlugin: HITLInputNode not registered on editor')
|
|
}, [editor])
|
|
|
|
const createHITLInputBlockNode = useCallback((textNode: TextNode): HITLInputNode => {
|
|
const varName = textNode
|
|
.getTextContent()
|
|
.split('.')[1]!
|
|
.replace(/#\}\}$/, '')
|
|
const {
|
|
nodeId,
|
|
formInputs,
|
|
onFormInputsChange,
|
|
onFormInputItemRename,
|
|
onFormInputItemRemove,
|
|
workflowNodesMap,
|
|
getVarType,
|
|
environmentVariables,
|
|
conversationVariables,
|
|
ragVariables,
|
|
readonly,
|
|
} = latestConfigRef.current
|
|
|
|
return $applyNodeReplacement(
|
|
$createHITLInputNode(
|
|
varName,
|
|
nodeId,
|
|
formInputs || [],
|
|
onFormInputsChange!,
|
|
onFormInputItemRename,
|
|
onFormInputItemRemove!,
|
|
workflowNodesMap,
|
|
getVarType,
|
|
environmentVariables,
|
|
conversationVariables,
|
|
ragVariables,
|
|
readonly,
|
|
),
|
|
)
|
|
}, [])
|
|
|
|
const getMatch = useCallback((text: string) => {
|
|
const matchArr = REGEX.exec(text)
|
|
|
|
if (matchArr === null) return null
|
|
|
|
const startOffset = matchArr.index
|
|
const endOffset = startOffset + matchArr[0].length
|
|
return {
|
|
end: endOffset,
|
|
start: startOffset,
|
|
}
|
|
}, [])
|
|
|
|
useEffect(() => {
|
|
REGEX.lastIndex = 0
|
|
return mergeRegister(
|
|
editor.registerNodeTransform(CustomTextNode, (textNode) =>
|
|
decoratorTransform(textNode, getMatch, createHITLInputBlockNode),
|
|
),
|
|
)
|
|
}, [editor, getMatch, createHITLInputBlockNode])
|
|
|
|
return null
|
|
}
|
|
|
|
export default memo(HITLInputReplacementBlock)
|