import type { DataTType } from '@react-page/editor'; import type { NodeEntry } from 'slate'; import { Editor } from 'slate'; import { useSlate } from 'slate-react'; import type { SlatePluginDefinition } from '../types/slatePluginDefinitions'; export const getCurrentNodeWithPlugin = ( editor: Editor, plugin: SlatePluginDefinition ): NodeEntry | null => { if (plugin.pluginType === 'custom') { return null; } const match = plugin.pluginType === 'component' ? plugin.object === 'mark' ? (elem: any) => Boolean(elem[plugin.type]) : (elem: any) => elem.type === plugin.type : plugin.pluginType === 'data' ? // search for data ({ data }: any) => { const matches = plugin.dataMatches(data as T); return matches; } : null; if (!match) { return null; } try { const [matchingNode] = Editor.nodes(editor, { match: match, mode: 'lowest', // FIXME: whats the best value? }); return matchingNode; } catch (e) { // seems to crash sometimes on redu return null; } }; export default (plugin: SlatePluginDefinition) => { const editor = useSlate(); return getCurrentNodeWithPlugin(editor, plugin); };