Rendering
Slate will render custom nodes for Block and Inline models, based on what you pass in as your schema. This allows you to completely customize the rendering behavior of your Slate editor.
Props
{
attributes: Object,
children: Object,
editor: Editor,
isSelected: Boolean,
isFocused: Boolean,
node: Node,
parent: Node,
readOnly: Boolean,
}attributes
attributesObject
A dictionary of DOM attributes that you must attach to the main DOM element of the node you render. For example:
return <p {...props.attributes}>{props.children}</p>return (
<figure {...props.attributes}>
<img src={...} />
</figure>
)children
childrenObject
A set of React children elements that are composed of internal Slate components that handle all of the editing logic of the editor for you. You must render these as the children of your non-void nodes. For example:
return <p {...props.attributes}>{props.children}</p>editor
editorEditor
A reference to the Slate <Editor> instance. This allows you to retrieve the current value of the editor, or perform a change on the value. For example:
const value = editor.valueeditor.moveToRangeOfDocument().delete()isSelected
isSelectedBoolean
A boolean representing whether the node you are rendering is currently selected. You can use this to render a visual representation of the selection.
This boolean is true when the node is selected and the editor is blurred.
isFocused
isFocusedBoolean
A boolean representing whether the node you are rendering is currently focused. You can use this to render a visual representation of the focused selection.
node
nodeNode
A reference to the Node being rendered.
parent
parentNode
A reference to the parent of the current Node being rendered.
readOnly
readOnlyBoolean
Whether the editor is in "read-only" mode, where all of the rendering is the same, but the user is prevented from editing the editor's content.
Last updated