UNPKG

@lexical/react

Version:

This package provides Lexical components and hooks for React applications.

55 lines (48 loc) 1.49 kB
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * */ import { AutoLinkNode, registerAutoLink } from '@lexical/link'; export { createLinkMatcherWithRegExp } from '@lexical/link'; import { useLexicalComposerContext } from '@lexical/react/LexicalComposerContext'; import { useEffect } from 'react'; /** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * */ // Do not require this module directly! Use normal `invariant` calls. function formatDevErrorMessage(message) { throw new Error(message); } function useAutoLink(editor, matchers, onChange, excludeParents) { useEffect(() => { if (!editor.hasNodes([AutoLinkNode])) { { formatDevErrorMessage(`LexicalAutoLinkPlugin: AutoLinkNode not registered on editor`); } } }); useEffect(() => { return registerAutoLink(editor, { changeHandlers: onChange ? [onChange] : [], excludeParents: excludeParents ?? [], matchers }); }, [editor, matchers, onChange, excludeParents]); } function AutoLinkPlugin({ matchers, onChange, excludeParents }) { const [editor] = useLexicalComposerContext(); useAutoLink(editor, matchers, onChange, excludeParents); return null; } export { AutoLinkPlugin };