Rendering
One of the best parts of Slate is that it's built with React, so it fits right into your existing application. It doesn't re-invent its own view layer that you have to learn. It tries to keep everything as React-y as possible.
To that end, Slate gives you control over the rendering behavior of every node and mark in your document, and even the top-level editor itself.
You can define these behaviors by passing props
into the editor, or you can define them in Slate plugins.
Nodes & Marks
Using custom components for the nodes and marks is the most common rendering need. Slate makes this easy to do. In case of nodes, you just define a function and pass it to the renderBlock
or renderInline
prop of Editor
component.
The function is called with the node's props, including props.node
which is the node itself. You can use these to determine what to render. For example, you can render nodes using simple HTML elements:
🤖 Be sure to mix in
props.attributes
and renderprops.children
in your node components! The attributes are required for utilities like Slate'sfindDOMNode
, and the children are the actual text content of your nodes.
You don't have to use simple HTML elements, you can use your own custom React components too:
And you can just as easily put that renderBlock
or renderInline
logic into a plugin, and pass that plugin into your editor instead:
Marks work the same way, except they invoke the renderMark
function. Like so:
Be sure to mix props.attributes
in your renderMark
. attributes
provides data-*
dom attributes for spell-check in non-IE browsers.
That way, if you happen to have a global stylesheet that defines strong
, em
, etc. styles then your editor's content will already be formatted!
🤖 Be aware though that marks aren't guaranteed to be "contiguous". Which means even though a word is bolded, it's not guaranteed to render as a single
<strong>
element. If some of its characters are also italic, it might be split up into multiple elements—one<strong>wo</strong>
and one<em><strong>rd</strong></em>
.
The Editor Itself
Not only can you control the rendering behavior of the components inside the editor, but you can also control the rendering of the editor itself.
This sounds weird, but it can be pretty useful if you want to render additional top-level elements from inside a plugin. To do so, you use the renderEditor
function:
Here we're rendering a small word count number underneath all of the content of the editor. Whenever you change the content of the editor, renderEditor
will be called, and the word count will be updated.
This is very similar to how higher-order components work! Except it allows each plugin in Slate's plugin stack to wrap the editor's children.
🤖 Be sure to remember to render
children
in yourrenderEditor
functions, because that contains the editor's own elements!
Last updated