wwf
2 天以前 a430284aa21e3ae1f0d5654e55b2ad2852519cc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
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 { HISTORY_PLACEHOLDER_TEXT } from '../../constants'
import type { HistoryBlockType } from '../../types'
import {
  $createHistoryBlockNode,
  HistoryBlockNode,
} from '../history-block/node'
import { CustomTextNode } from '../custom-text/node'
 
const REGEX = new RegExp(HISTORY_PLACEHOLDER_TEXT)
 
const HistoryBlockReplacementBlock = ({
  history = { user: '', assistant: '' },
  onEditRole = () => {},
  onInsert,
}: HistoryBlockType) => {
  const [editor] = useLexicalComposerContext()
 
  useEffect(() => {
    if (!editor.hasNodes([HistoryBlockNode]))
      throw new Error('HistoryBlockNodePlugin: HistoryBlockNode not registered on editor')
  }, [editor])
 
  const createHistoryBlockNode = useCallback((): HistoryBlockNode => {
    if (onInsert)
      onInsert()
    return $applyNodeReplacement($createHistoryBlockNode(history, onEditRole))
  }, [history, onEditRole, onInsert])
 
  const getMatch = useCallback((text: string) => {
    const matchArr = REGEX.exec(text)
 
    if (matchArr === null)
      return null
 
    const startOffset = matchArr.index
    const endOffset = startOffset + HISTORY_PLACEHOLDER_TEXT.length
    return {
      end: endOffset,
      start: startOffset,
    }
  }, [])
 
  useEffect(() => {
    REGEX.lastIndex = 0
    return mergeRegister(
      editor.registerNodeTransform(CustomTextNode, textNode => decoratorTransform(textNode, getMatch, createHistoryBlockNode)),
    )
  }, [])
 
  return null
}
 
export default HistoryBlockReplacementBlock