import React, { useCallback, useMemo } from 'react' import { Descendant, Editor, Node, NodeEntry, Element as SlateElement, Transforms, createEditor, } from 'slate' import { withHistory } from 'slate-history' import { Editable, RenderElementProps, Slate, withReact } from 'slate-react' import { CustomEditor, CustomElementType, ParagraphElement, TitleElement, } from './custom-types.d' const withLayout = (editor: CustomEditor) => { const { normalizeNode } = editor editor.normalizeNode = ([node, path]: NodeEntry) => { if (path.length === 0) { if (editor.children.length <= 1 && Editor.string(editor, [0, 0]) === '') { const title: TitleElement = { type: 'title', children: [{ text: 'Untitled' }], } Transforms.insertNodes(editor, title, { at: path.concat(0), select: true, }) } if (editor.children.length < 2) { const paragraph: ParagraphElement = { type: 'paragraph', children: [{ text: '' }], } Transforms.insertNodes(editor, paragraph, { at: path.concat(1) }) } for (const [child, childPath] of Node.children(editor, path)) { let type: CustomElementType const slateIndex = childPath[0] const enforceType = (type: CustomElementType) => { if (SlateElement.isElement(child) && child.type !== type) { const newProperties: Partial = { type } Transforms.setNodes(editor, newProperties, { at: childPath, }) } } switch (slateIndex) { case 0: type = 'title' enforceType(type) break case 1: type = 'paragraph' enforceType(type) default: break } } } return normalizeNode([node, path]) } return editor } const ForcedLayoutExample = () => { const renderElement = useCallback( (props: RenderElementProps) => , [] ) const editor = useMemo( () => withLayout(withHistory(withReact(createEditor()))), [] ) return ( ) } const Element = ({ attributes, children, element }: RenderElementProps) => { switch (element.type) { case 'title': return

{children}

case 'paragraph': return

{children}

} } const initialValue: Descendant[] = [ { type: 'title', children: [{ text: 'Enforce Your Layout!' }], }, { type: 'paragraph', children: [ { text: 'This example shows how to enforce your layout with domain-specific constraints. This document will always have a title block at the top and at least one paragraph in the body. Try deleting them and see what happens!', }, ], }, ] export default ForcedLayoutExample