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>
37 lines
733 B
TypeScript
37 lines
733 B
TypeScript
import type { FC } from 'react'
|
|
import { useEffect } from 'react'
|
|
import {
|
|
BLUR_COMMAND,
|
|
COMMAND_PRIORITY_EDITOR,
|
|
} from 'lexical'
|
|
import { mergeRegister } from '@lexical/utils'
|
|
import { useLexicalComposerContext } from '@lexical/react/LexicalComposerContext'
|
|
|
|
type OnBlurBlockProps = {
|
|
onBlur?: () => void
|
|
}
|
|
const OnBlurBlock: FC<OnBlurBlockProps> = ({
|
|
onBlur,
|
|
}) => {
|
|
const [editor] = useLexicalComposerContext()
|
|
|
|
useEffect(() => {
|
|
return mergeRegister(
|
|
editor.registerCommand(
|
|
BLUR_COMMAND,
|
|
() => {
|
|
if (onBlur)
|
|
onBlur()
|
|
|
|
return true
|
|
},
|
|
COMMAND_PRIORITY_EDITOR,
|
|
),
|
|
)
|
|
}, [editor, onBlur])
|
|
|
|
return null
|
|
}
|
|
|
|
export default OnBlurBlock
|