mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-13 18:58:16 +08:00

Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: Yeuoly <admin@srmxy.cn> Co-authored-by: JzoNg <jzongcode@gmail.com> Co-authored-by: StyleZhang <jasonapring2015@outlook.com> Co-authored-by: jyong <jyong@dify.ai> Co-authored-by: nite-knite <nkCoding@gmail.com> Co-authored-by: jyong <718720800@qq.com>
64 lines
1.8 KiB
TypeScript
64 lines
1.8 KiB
TypeScript
import {
|
|
memo,
|
|
useCallback,
|
|
useEffect,
|
|
} from 'react'
|
|
import { $applyNodeReplacement } from 'lexical'
|
|
import { mergeRegister } from '@lexical/utils'
|
|
import { useLexicalComposerContext } from '@lexical/react/LexicalComposerContext'
|
|
import { decoratorTransform } from '../../utils'
|
|
import { CONTEXT_PLACEHOLDER_TEXT } from '../../constants'
|
|
import type { ContextBlockType } from '../../types'
|
|
import {
|
|
$createContextBlockNode,
|
|
ContextBlockNode,
|
|
} from '../context-block/node'
|
|
import { CustomTextNode } from '../custom-text/node'
|
|
|
|
const REGEX = new RegExp(CONTEXT_PLACEHOLDER_TEXT)
|
|
|
|
const ContextBlockReplacementBlock = ({
|
|
datasets = [],
|
|
onAddContext = () => {},
|
|
onInsert,
|
|
canNotAddContext,
|
|
}: ContextBlockType) => {
|
|
const [editor] = useLexicalComposerContext()
|
|
|
|
useEffect(() => {
|
|
if (!editor.hasNodes([ContextBlockNode]))
|
|
throw new Error('ContextBlockNodePlugin: ContextBlockNode not registered on editor')
|
|
}, [editor])
|
|
|
|
const createContextBlockNode = useCallback((): ContextBlockNode => {
|
|
if (onInsert)
|
|
onInsert()
|
|
return $applyNodeReplacement($createContextBlockNode(datasets, onAddContext, canNotAddContext))
|
|
}, [datasets, onAddContext, onInsert, canNotAddContext])
|
|
|
|
const getMatch = useCallback((text: string) => {
|
|
const matchArr = REGEX.exec(text)
|
|
|
|
if (matchArr === null)
|
|
return null
|
|
|
|
const startOffset = matchArr.index
|
|
const endOffset = startOffset + CONTEXT_PLACEHOLDER_TEXT.length
|
|
return {
|
|
end: endOffset,
|
|
start: startOffset,
|
|
}
|
|
}, [])
|
|
|
|
useEffect(() => {
|
|
REGEX.lastIndex = 0
|
|
return mergeRegister(
|
|
editor.registerNodeTransform(CustomTextNode, textNode => decoratorTransform(textNode, getMatch, createContextBlockNode)),
|
|
)
|
|
}, [])
|
|
|
|
return null
|
|
}
|
|
|
|
export default memo(ContextBlockReplacementBlock)
|