import { css } from '@emotion/css' import imageExtensions from 'image-extensions' import isHotkey from 'is-hotkey' import isUrl from 'is-url' import React, { useMemo } from 'react' import { Transforms, createEditor } from 'slate' import { withHistory } from 'slate-history' import { Editable, ReactEditor, Slate, useFocused, useSelected, useSlateStatic, withReact, } from 'slate-react' import { Button, Icon, Toolbar } from './components' const ImagesExample = () => { const editor = useMemo( () => withImages(withHistory(withReact(createEditor()))), [] ) return ( { if (isHotkey('mod+a', event)) { event.preventDefault() Transforms.select(editor, []) } }} renderElement={props => } placeholder="Enter some text..." /> ) } const withImages = editor => { const { insertData, isVoid } = editor editor.isVoid = element => { return element.type === 'image' ? true : isVoid(element) } editor.insertData = data => { const text = data.getData('text/plain') const { files } = data if (files && files.length > 0) { Array.from(files).forEach(file => { const reader = new FileReader() const [mime] = file.type.split('/') if (mime === 'image') { reader.addEventListener('load', () => { const url = reader.result insertImage(editor, url) }) reader.readAsDataURL(file) } }) } else if (isImageUrl(text)) { insertImage(editor, text) } else { insertData(data) } } return editor } const insertImage = (editor, url) => { const text = { text: '' } const image = { type: 'image', url, children: [text] } Transforms.insertNodes(editor, image) const paragraph = { type: 'paragraph', children: [{ text: '' }], } Transforms.insertNodes(editor, paragraph) } const Element = props => { const { attributes, children, element } = props switch (element.type) { case 'image': return default: return

{children}

} } const Image = ({ attributes, children, element }) => { const editor = useSlateStatic() const path = ReactEditor.findPath(editor, element) const selected = useSelected() const focused = useFocused() return (
{children}
) } const InsertImageButton = () => { const editor = useSlateStatic() return ( ) } const isImageUrl = url => { if (!url) return false if (!isUrl(url)) return false const ext = new URL(url).pathname.split('.').pop() return imageExtensions.includes(ext) } const initialValue = [ { type: 'paragraph', children: [ { text: 'In addition to nodes that contain editable text, you can also create other types of nodes, like images or videos.', }, ], }, { type: 'image', url: 'https://source.unsplash.com/kFrdX5IeQzI', children: [{ text: '' }], }, { type: 'paragraph', children: [ { text: 'This example shows images in action. It features two ways to add images. You can either add an image via the toolbar icon above, or if you want in on a little secret, copy an image URL to your clipboard and paste it anywhere in the editor!', }, ], }, { type: 'paragraph', children: [ { text: 'You can delete images with the cross in the top left. Try deleting this sheep:', }, ], }, { type: 'image', url: 'https://source.unsplash.com/zOwZKwZOZq8', children: [{ text: '' }], }, ] export default ImagesExample