Up until now, everything we've learned has been about how to write one-off logic for your specific Slate editor. But one of the most powerful things about Slate is that it lets you model your specific rich text "domain" however you'd like, and write less one-off code.
In the previous guides we've written some useful code to handle formatting code blocks and bold marks. And we've hooked up the onKeyDown handler to invoke that code. But we've always done it using the built-in Editor helpers directly, instead of using "commands".
Slate lets you augment the built-in editor object to handle your own custom rich text commands. And you can even use pre-packaged "plugins" which add a given set of functionality.
It has the concept of "code blocks" and "bold formatting". But these things are all defined in one-off cases inside the onKeyDown handler. If you wanted to reuse that logic elsewhere you'd need to extract it.
We can instead implement these domain-specific concepts by creating custom helper functions:
// Define our own custom set of helpers.constCustomEditor= {isBoldMarkActive(editor) {constmarks=Editor.marks(editor)return marks ?marks.bold ===true:false },isCodeBlockActive(editor) {const [match] =Editor.nodes(editor, {match: n =>n.type ==='code', })return!!match },toggleBoldMark(editor) {constisActive=CustomEditor.isBoldMarkActive(editor)if (isActive) {Editor.removeMark(editor,'bold') } else {Editor.addMark(editor,'bold',true) } },toggleCodeBlock(editor) {constisActive=CustomEditor.isCodeBlockActive(editor)Transforms.setNodes( editor, { type: isActive ?null:'code' }, { match: n =>Editor.isBlock(editor, n) } ) },}constinitialValue= [ { type:'paragraph', children: [{ text:'A line of text in a paragraph.' }], },]constApp= () => {const [editor] =useState(() =>withReact(createEditor()))constrenderElement=useCallback(props => {switch (props.element.type) {case'code':return <CodeElement {...props} />default:return <DefaultElement {...props} /> } }, [])constrenderLeaf=useCallback(props => {return <Leaf {...props} /> }, [])return ( <Slateeditor={editor} initialValue={initialValue}> <EditablerenderElement={renderElement}renderLeaf={renderLeaf}onKeyDown={event => {if (!event.ctrlKey) {return }// Replace the `onKeyDown` logic with our new commands.switch (event.key) {case'`': {event.preventDefault()CustomEditor.toggleCodeBlock(editor)break }case'b': {event.preventDefault()CustomEditor.toggleBoldMark(editor)break } } }} /> </Slate> )}
Now our commands are clearly defined and you can invoke them from anywhere we have access to our editor object. For example, from hypothetical toolbar buttons:
constinitialValue= [ { type:'paragraph', children: [{ text:'A line of text in a paragraph.' }], },]constApp= () => {const [editor] =useState(() =>withReact(createEditor()))constrenderElement=useCallback(props => {switch (props.element.type) {case'code':return <CodeElement {...props} />default:return <DefaultElement {...props} /> } }, [])constrenderLeaf=useCallback(props => {return <Leaf {...props} /> }, [])return (// Add a toolbar with buttons that call the same methods. <Slateeditor={editor} initialValue={initialValue}> <div> <buttononMouseDown={event => {event.preventDefault()CustomEditor.toggleBoldMark(editor) }} > Bold </button> <buttononMouseDown={event => {event.preventDefault()CustomEditor.toggleCodeBlock(editor) }} > Code Block </button> </div> <Editableeditor={editor}renderElement={renderElement}renderLeaf={renderLeaf}onKeyDown={event => {if (!event.ctrlKey) {return }switch (event.key) {case'`': {event.preventDefault()CustomEditor.toggleCodeBlock(editor)break }case'b': {event.preventDefault()CustomEditor.toggleBoldMark(editor)break } } }} /> </Slate> )}
That's the benefit of extracting the logic.
And there you have it! We just added a ton of functionality to the editor with very little work. And we can keep all of our command logic tested and isolated in a single place, making the code easier to maintain.