mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
5b9858a8a3
Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: JzoNg <jzongcode@gmail.com> Co-authored-by: Gillian97 <jinling.sunshine@gmail.com>
60 lines
1.6 KiB
TypeScript
60 lines
1.6 KiB
TypeScript
import type { FC } from 'react'
|
|
import {
|
|
useCallback,
|
|
useEffect,
|
|
} from 'react'
|
|
import { $applyNodeReplacement } from 'lexical'
|
|
import { mergeRegister } from '@lexical/utils'
|
|
import { useLexicalComposerContext } from '@lexical/react/LexicalComposerContext'
|
|
import { decoratorTransform } from '../utils'
|
|
import { QUERY_PLACEHOLDER_TEXT } from '../constants'
|
|
import {
|
|
$createQueryBlockNode,
|
|
QueryBlockNode,
|
|
} from './query-block/node'
|
|
import type { QueryBlockProps } from './query-block/index'
|
|
import { CustomTextNode } from './custom-text/node'
|
|
|
|
const REGEX = new RegExp(QUERY_PLACEHOLDER_TEXT)
|
|
|
|
const QueryBlockReplacementBlock: FC<QueryBlockProps> = ({
|
|
onInsert,
|
|
}) => {
|
|
const [editor] = useLexicalComposerContext()
|
|
|
|
useEffect(() => {
|
|
if (!editor.hasNodes([QueryBlockNode]))
|
|
throw new Error('QueryBlockNodePlugin: QueryBlockNode not registered on editor')
|
|
}, [editor])
|
|
|
|
const createQueryBlockNode = useCallback((): QueryBlockNode => {
|
|
if (onInsert)
|
|
onInsert()
|
|
return $applyNodeReplacement($createQueryBlockNode())
|
|
}, [onInsert])
|
|
|
|
const getMatch = useCallback((text: string) => {
|
|
const matchArr = REGEX.exec(text)
|
|
|
|
if (matchArr === null)
|
|
return null
|
|
|
|
const startOffset = matchArr.index
|
|
const endOffset = startOffset + QUERY_PLACEHOLDER_TEXT.length
|
|
return {
|
|
end: endOffset,
|
|
start: startOffset,
|
|
}
|
|
}, [])
|
|
|
|
useEffect(() => {
|
|
return mergeRegister(
|
|
editor.registerNodeTransform(CustomTextNode, textNode => decoratorTransform(textNode, getMatch, createQueryBlockNode)),
|
|
)
|
|
}, [])
|
|
|
|
return null
|
|
}
|
|
|
|
export default QueryBlockReplacementBlock
|