@blocknote/react
Version:
A "Notion-style" block-based extensible text editor built on top of Prosemirror and Tiptap.
33 lines (29 loc) • 1.04 kB
text/typescript
import type { BlockNoteEditor } from "@blocknote/core";
import { useEffect } from "react";
import { useBlockNoteContext } from "../editor/BlockNoteContext.js";
/**
* Subscribes to editor content changes. The callback is invoked whenever the
* editor's document is modified, and the subscription is automatically cleaned
* up when the component unmounts.
*
* @param callback - Function called when the editor content changes.
* @param editor - The BlockNote editor instance. If omitted, uses the editor
* from the nearest `BlockNoteContext`.
*/
export function useEditorChange(
callback: Parameters<BlockNoteEditor<any, any, any>["onChange"]>[0],
editor?: BlockNoteEditor<any, any, any>,
) {
const editorContext = useBlockNoteContext();
if (!editor) {
editor = editorContext?.editor;
}
useEffect(() => {
if (!editor) {
throw new Error(
"'editor' is required, either from BlockNoteContext or as a function argument",
);
}
return editor.onChange(callback);
}, [callback, editor]);
}