ProseMirror is a powerful library for building rich-text editors on the web. This toolkit enables the integration of React components within ProseMirror blocks. Although I do not plan to publish this as a standalone library, you can benefit from other actively maintained open-source projects (mentioned below). This repository aims to help you better understand ProseMirror and its interaction with modern UI libraries.
At Lyearn, we aimed to develop a Notion-like editor for our LMS tool in early 2021. We evaluated several libraries, including Draft.JS, QuillJS, EditorJS, CKEditor, and TinyMCE. Ultimately, we chose ProseMirror due to its open-source license, active development, community support, and high level of customization.
ProseMirror, written in VanillaJS, is highly customizable. Each block type, referred to as Nodes and Marks in ProseMirror, allows you to define its DOM representation. Our primary goal was to integrate React components within these ProseMirror blocks. We leveraged this feature by building a wrapper that passes a simple div element to ProseMirror. Using React Portals, we then render a React component with the div as its root.
In early 2021, few libraries offered React integration with ProseMirror. We considered Remirror and Outline, but we needed more customization and found these libraries in their early development stages. Inspired by these libraries and prosemirror-react-nodeviews, we developed our own toolkit.
We recently revisited our decision and explored other libraries. Our toolkit has served its purpose well, requiring minimal changes since its initial development. However, if we were to start anew, we might choose Tiptap instead of building a toolkit from scratch.
For those seeking React support with ProseMirror, we recommend using the aforementioned libraries, as they are actively maintained. If you need more customization and control over the blocks, you can take inspiration from our toolkit and adapt it to your use case.
ProseMirror provides several key properties that allow for extensive customization and functionality enhancement. Here are some of the main properties you should understand:
The Schema
defines the structure of the documents that the ProseMirror editor can handle. It specifies the nodes and marks that can appear in the document and the rules for how they can be nested and combined.
- Nodes: Basic building blocks of the document (e.g., paragraphs, headings, lists).
- Marks: Inline formatting options (e.g., bold, italic, links).
A schema allows you to define these nodes and marks, along with their attributes, content models, and parsing/rendering behavior.
ProseMirror plugins are used to extend the editor's functionality. They can add new behaviors, handle complex state changes, and interact with the editor's view. Plugins can encapsulate a wide range of functionality, including:
- Key bindings: Define custom keyboard shortcuts.
- Input rules: Automatically convert text patterns into structured content.
- State management: Maintain and update custom state within the editor.
Plugins are a powerful way to add custom behavior and integrate with external systems or libraries.
A NodeView
allows you to customize how specific nodes are rendered and interacted with in the editor. It provides a way to use custom DOM elements and React components for rendering nodes. NodeViews are especially useful for creating interactive or complex node types, such as embedded media, dynamic content, or custom widgets.
With NodeViews, you can:
- Control the rendering of the node's content.
- Handle user interactions within the node.
- Integrate React components by using React portals to render the node content.
Here is an example of how these properties can be utilized in ProseMirror:
import {Schema} from "prosemirror-model";
import {Plugin} from "prosemirror-state";
import {EditorView} from "prosemirror-view";
const editorSchema = new Schema({
nodes: {
doc: {content: "block+"},
paragraph: {group: "block", content: "text*", toDOM: () => ["p", 0]},
text: {group: "inline"},
// Add custom nodes here
},
marks: {
strong: {toDOM: () => ["strong"]},
em: {toDOM: () => ["em"]},
// Add custom marks here
},
});
const editorPlugins = [
new Plugin({
props: {
handleKeyDown(view, event) {
// Custom key handling
return false;
},
},
}),
// Add more plugins here
];
const myNodeViews = {
customNode: (node, view, getPos, decorations) => {
// Return a custom NodeView
},
};
const view = new EditorView(document.querySelector("#editor"), {
state: EditorState.create({
schema: editorSchema,
plugins: editorPlugins,
}),
nodeViews: myNodeViews,
});
We have extended the NodeView class to implement the ReactNodeView class. In this class, an empty div
element is created and set as the DOM element of the NodeView. We then use the Portal API to render a React component passed to the constructor of ReactNodeView. A context is created around this div
, setting the NodeView-related props in that context, making them accessible anywhere within the React component. The Portal API is used instead of render
from ReactDOM to maintain contexts like theming or authentication for the component. You can check the implementation details here.
We also introduce the concept of Extensions, which are taken as arguments in our main Editor Component. For each Node and Mark, an Extension must be defined. In the Extension, you can define the ProseMirror schema, keys, and input rules for the specific Mark or Node along with the name. Additionally, ProseMirror plugins can be defined in the Extension class. NodeViews can also be added through plugins. When mounting the editor, it extracts all plugins from the defined extensions and loads them into the actual ProseMirror while passing the EditorOptions. The EditorOptions include schema
, createReactNodeView
, and portalApi
. The schema
is the ProseMirror schema, createReactNodeView
is the wrapper function for creating ReactNodeViews, and portalApi
is useful for rendering React components in the DOM tree, mainly for menus.
Here is an example of how Extension and ReactNodeView can be defined:
import { Plugin } from "prosemirror-state";
import IframeComponent from "./IframeComponent"; // React Component
interface EditorOptions {
schema: Schema;
createReactNodeView: createReactNodeView; // Wrapper function for ReactNodeView
portalApi: IReactNodeViewPortalsContext; // Portal APIs to render components like Menus
}
abstract class BaseExtension {
get schema(): NodeSpec | MarkSpec | null {
return null;
}
abstract get name(): string;
get type(): string {
return extensionType.node; // or extensionType.mark
}
get keys(): typeof baseKeymap | null {
return null;
}
inputRules(_editorOptions: EditorOptions): InputRule[] {
return [];
}
plugins(_editorOptions: EditorOptions): Plugin[] {
return [];
}
}
function plugins({ createReactNodeView }: EditorOptions) {
return [
new Plugin({
props: {
nodeViews: {
iframe(node, view, getPos, decorations) {
return createReactNodeView({
node,
view,
getPos,
decorations,
component: IframeComponent,
});
},
},
},
}),
];
}
In this example:
- IframeComponent: A React component used to render an iframe.
- createReactNodeView: A function to create a NodeView that renders the specified React component.
- BaseExtension: An abstract class that allows defining the schema, keys, input rules, and plugins for nodes and marks.
- plugins: A function that returns a ProseMirror plugin, using
createReactNodeView
to render theIframeComponent
as a NodeView.
We have implemented some basic extensions for reference: Paragraph, Heading, Iframe, and AddMenu.
The following properties are available for configuring the editor:
Property | Type | Description |
---|---|---|
value | string (optional) |
The initial HTML content of the editor. |
jsonValue | object (optional) |
The initial JSON content of the editor. |
extensions | { new (): BaseExtension }[] (optional) |
A list of extensions to enhance the editor's functionality. |
autoFocus | boolean (optional) |
Whether the editor should focus automatically on mount. |
readOnly | boolean (optional) |
If true, the editor will be read-only. |
onFocus | (view: EditorView) => void (optional) |
Callback function triggered when the editor gains focus. |
onBlur | (view: EditorView) => void (optional) |
Callback function triggered when the editor loses focus. |
onChange | (state: EditorState, htmlValue: string) => void (optional) |
Callback function triggered when the editor's content changes. Provides the latest state and HTML representation of the editor. |
onChangeJSON | (state: EditorState, jsonValue: any) => void (optional) |
Callback function triggered when the editor's content changes. Provides the latest state and JSON representation of the editor document. |
onCreateEditorView | (view: EditorView) => void (optional) |
Callback function triggered when the editor view is created. |
plugins | BaseExtension["plugins"][] (optional) |
An array of ProseMirror plugins to be used in the editor. |
keymaps | { [key: string]: Command } (optional) |
Keymap bindings for custom commands. |
Checkout App.tsx for detailed usage. We have also added plugins for reference here
You can run the app using the following commands:
git clone https://github.com/KhushilMistry/prosemirror-react.git
cd prosemirror-react
yarn && yarn start