mirror of
https://github.com/langgenius/dify.git
synced 2026-04-19 05:23:29 +08:00
The frontend and backend implementation for the human input node. Co-authored-by: twwu <twwu@dify.ai> Co-authored-by: JzoNg <jzongcode@gmail.com> Co-authored-by: yyh <92089059+lyzno1@users.noreply.github.com> Co-authored-by: zhsama <torvalds@linux.do>
61 lines
1.7 KiB
TypeScript
61 lines
1.7 KiB
TypeScript
import type { RequestURLBlockType } from '../../types'
|
|
import { useLexicalComposerContext } from '@lexical/react/LexicalComposerContext'
|
|
import { mergeRegister } from '@lexical/utils'
|
|
import { $applyNodeReplacement } from 'lexical'
|
|
import {
|
|
memo,
|
|
useCallback,
|
|
useEffect,
|
|
} from 'react'
|
|
import { REQUEST_URL_PLACEHOLDER_TEXT } from '../../constants'
|
|
import { decoratorTransform } from '../../utils'
|
|
import { CustomTextNode } from '../custom-text/node'
|
|
import {
|
|
$createRequestURLBlockNode,
|
|
RequestURLBlockNode,
|
|
} from '../request-url-block/node'
|
|
|
|
const REGEX = new RegExp(REQUEST_URL_PLACEHOLDER_TEXT)
|
|
|
|
const RequestURLBlockReplacementBlock = ({
|
|
onInsert,
|
|
}: RequestURLBlockType) => {
|
|
const [editor] = useLexicalComposerContext()
|
|
|
|
useEffect(() => {
|
|
if (!editor.hasNodes([RequestURLBlockNode]))
|
|
throw new Error('RequestURLBlockNodePlugin: RequestURLBlockNode not registered on editor')
|
|
}, [editor])
|
|
|
|
const createRequestURLBlockNode = useCallback((): RequestURLBlockNode => {
|
|
if (onInsert)
|
|
onInsert()
|
|
return $applyNodeReplacement($createRequestURLBlockNode())
|
|
}, [onInsert])
|
|
|
|
const getMatch = useCallback((text: string) => {
|
|
const matchArr = REGEX.exec(text)
|
|
|
|
if (matchArr === null)
|
|
return null
|
|
|
|
const startOffset = matchArr.index
|
|
const endOffset = startOffset + REQUEST_URL_PLACEHOLDER_TEXT.length
|
|
return {
|
|
end: endOffset,
|
|
start: startOffset,
|
|
}
|
|
}, [])
|
|
|
|
useEffect(() => {
|
|
REGEX.lastIndex = 0
|
|
return mergeRegister(
|
|
editor.registerNodeTransform(CustomTextNode, textNode => decoratorTransform(textNode, getMatch, createRequestURLBlockNode)),
|
|
)
|
|
}, [])
|
|
|
|
return null
|
|
}
|
|
|
|
export default memo(RequestURLBlockReplacementBlock)
|