import { css } from '@emotion/css' import Prism from 'prismjs' import 'prismjs/components/prism-markdown' import React, { useCallback, useMemo } from 'react' import { Descendant, NodeEntry, Range, Text, createEditor } from 'slate' import { withHistory } from 'slate-history' import { Editable, RenderLeafProps, Slate, withReact } from 'slate-react' import { CustomEditor } from './custom-types.d' const MarkdownPreviewExample = () => { const renderLeaf = useCallback( (props: RenderLeafProps) => , [] ) const editor = useMemo( () => withHistory(withReact(createEditor())) as CustomEditor, [] ) const decorate = useCallback(([node, path]: NodeEntry) => { const ranges: Range[] = [] if (!Text.isText(node)) { return ranges } const getLength = (token: string | Prism.Token): number => { if (typeof token === 'string') { return token.length } else if (typeof token.content === 'string') { return token.content.length } else { return (token.content as Prism.Token[]).reduce( (l, t) => l + getLength(t), 0 ) } } const tokens = Prism.tokenize(node.text, Prism.languages.markdown) let start = 0 for (const token of tokens) { const length = getLength(token) const end = start + length if (typeof token !== 'string') { ranges.push({ [token.type]: true, anchor: { path, offset: start }, focus: { path, offset: end }, }) } start = end } return ranges }, []) return ( ) } const Leaf = ({ attributes, children, leaf }: RenderLeafProps) => { return ( {children} ) } const initialValue: Descendant[] = [ { type: 'paragraph', children: [ { text: 'Slate is flexible enough to add **decorations** that can format text based on its content. For example, this editor has **Markdown** preview decorations on it, to make it _dead_ simple to make an editor with built-in Markdown previewing.', }, ], }, { type: 'paragraph', children: [{ text: '## Try it out!' }], }, { type: 'paragraph', children: [{ text: 'Try it out for yourself!' }], }, ] export default MarkdownPreviewExample