File size: 7,707 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 |
import { css } from '@emotion/css'
import React, { useCallback, useMemo } from 'react'
import { Descendant, Transforms, createEditor } from 'slate'
import { withHistory } from 'slate-history'
import { jsx } from 'slate-hyperscript'
import {
Editable,
RenderElementProps,
RenderLeafProps,
Slate,
useFocused,
useSelected,
withReact,
} from 'slate-react'
import {
CustomEditor,
CustomElement,
CustomElementType,
ImageElement as ImageElementType,
RenderElementPropsFor,
} from './custom-types.d'
interface ElementAttributes {
type: CustomElementType
url?: string
}
const ELEMENT_TAGS: Record<string, (el: HTMLElement) => ElementAttributes> = {
A: el => ({ type: 'link', url: el.getAttribute('href')! }),
BLOCKQUOTE: () => ({ type: 'block-quote' }),
H1: () => ({ type: 'heading-one' }),
H2: () => ({ type: 'heading-two' }),
H3: () => ({ type: 'heading-three' }),
H4: () => ({ type: 'heading-four' }),
H5: () => ({ type: 'heading-five' }),
H6: () => ({ type: 'heading-six' }),
IMG: el => ({ type: 'image', url: el.getAttribute('src')! }),
LI: () => ({ type: 'list-item' }),
OL: () => ({ type: 'numbered-list' }),
P: () => ({ type: 'paragraph' }),
PRE: () => ({ type: 'code-block' }),
UL: () => ({ type: 'bulleted-list' }),
}
// COMPAT: `B` is omitted here because Google Docs uses `<b>` in weird ways.
interface TextAttributes {
code?: boolean
strikethrough?: boolean
italic?: boolean
bold?: boolean
underline?: boolean
}
const TEXT_TAGS: Record<string, () => TextAttributes> = {
CODE: () => ({ code: true }),
DEL: () => ({ strikethrough: true }),
EM: () => ({ italic: true }),
I: () => ({ italic: true }),
S: () => ({ strikethrough: true }),
STRONG: () => ({ bold: true }),
U: () => ({ underline: true }),
}
export const deserialize = (el: HTMLElement | ChildNode): any => {
if (el.nodeType === 3) {
return el.textContent
} else if (el.nodeType !== 1) {
return null
} else if (el.nodeName === 'BR') {
return '\n'
}
const { nodeName } = el
let parent = el
if (
nodeName === 'PRE' &&
el.childNodes[0] &&
el.childNodes[0].nodeName === 'CODE'
) {
parent = el.childNodes[0]
}
let children = Array.from(parent.childNodes).map(deserialize).flat()
if (children.length === 0) {
children = [{ text: '' }]
}
if (el.nodeName === 'BODY') {
return jsx('fragment', {}, children)
}
if (ELEMENT_TAGS[nodeName]) {
const attrs = ELEMENT_TAGS[nodeName](el as HTMLElement)
return jsx('element', attrs, children)
}
if (TEXT_TAGS[nodeName]) {
const attrs = TEXT_TAGS[nodeName]()
return children.map(child => jsx('text', attrs, child))
}
return children
}
const PasteHtmlExample = () => {
const renderElement = useCallback(
(props: RenderElementProps) => <Element {...props} />,
[]
)
const renderLeaf = useCallback(
(props: RenderLeafProps) => <Leaf {...props} />,
[]
)
const editor = useMemo(
() => withHtml(withReact(withHistory(createEditor()))) as CustomEditor,
[]
)
return (
<Slate editor={editor} initialValue={initialValue}>
<Editable
renderElement={renderElement}
renderLeaf={renderLeaf}
placeholder="Paste in some HTML..."
/>
</Slate>
)
}
const withHtml = (editor: CustomEditor) => {
const { insertData, isInline, isVoid } = editor
editor.isInline = (element: CustomElement) => {
return element.type === 'link' ? true : isInline(element)
}
editor.isVoid = (element: CustomElement) => {
return element.type === 'image' ? true : isVoid(element)
}
editor.insertData = data => {
const html = data.getData('text/html')
if (html) {
const parsed = new DOMParser().parseFromString(html, 'text/html')
const fragment = deserialize(parsed.body)
Transforms.insertFragment(editor, fragment)
return
}
insertData(data)
}
return editor
}
const Element = (props: RenderElementProps) => {
const { attributes, children, element } = props
switch (element.type) {
default:
return <p {...attributes}>{children}</p>
case 'block-quote':
return <blockquote {...attributes}>{children}</blockquote>
case 'code-block':
return (
<pre>
<code {...attributes}>{children}</code>
</pre>
)
case 'bulleted-list':
return <ul {...attributes}>{children}</ul>
case 'heading-one':
return <h1 {...attributes}>{children}</h1>
case 'heading-two':
return <h2 {...attributes}>{children}</h2>
case 'heading-three':
return <h3 {...attributes}>{children}</h3>
case 'heading-four':
return <h4 {...attributes}>{children}</h4>
case 'heading-five':
return <h5 {...attributes}>{children}</h5>
case 'heading-six':
return <h6 {...attributes}>{children}</h6>
case 'list-item':
return <li {...attributes}>{children}</li>
case 'numbered-list':
return <ol {...attributes}>{children}</ol>
case 'link':
return (
<SafeLink href={element.url} attributes={attributes}>
{children}
</SafeLink>
)
case 'image':
return <ImageElement {...props} />
}
}
const allowedSchemes = ['http:', 'https:', 'mailto:', 'tel:']
interface SafeLinkProps {
attributes: Record<string, unknown>
children: React.ReactNode
href: string
}
const SafeLink = ({ children, href, attributes }: SafeLinkProps) => {
const safeHref = useMemo(() => {
let parsedUrl: URL | null = null
try {
parsedUrl = new URL(href)
// eslint-disable-next-line no-empty
} catch {}
if (parsedUrl && allowedSchemes.includes(parsedUrl.protocol)) {
return parsedUrl.href
}
return 'about:blank'
}, [href])
return (
<a href={safeHref} {...attributes}>
{children}
</a>
)
}
const ImageElement = ({
attributes,
children,
element,
}: RenderElementPropsFor<ImageElementType>) => {
const selected = useSelected()
const focused = useFocused()
return (
<div {...attributes}>
{children}
<img
src={element.url}
className={css`
display: block;
max-width: 100%;
max-height: 20em;
box-shadow: ${selected && focused ? '0 0 0 2px blue;' : 'none'};
`}
/>
</div>
)
}
const Leaf = ({ attributes, children, leaf }: RenderLeafProps) => {
if (leaf.bold) {
children = <strong>{children}</strong>
}
if (leaf.code) {
children = <code>{children}</code>
}
if (leaf.italic) {
children = <em>{children}</em>
}
if (leaf.underline) {
children = <u>{children}</u>
}
if (leaf.strikethrough) {
children = <del>{children}</del>
}
return <span {...attributes}>{children}</span>
}
const initialValue: Descendant[] = [
{
type: 'paragraph',
children: [
{
text: "By default, pasting content into a Slate editor will use the clipboard's ",
},
{ text: "'text/plain'", code: true },
{
text: " data. That's okay for some use cases, but sometimes you want users to be able to paste in content and have it maintain its formatting. To do this, your editor needs to handle ",
},
{ text: "'text/html'", code: true },
{ text: ' data. ' },
],
},
{
type: 'paragraph',
children: [{ text: 'This is an example of doing exactly that!' }],
},
{
type: 'paragraph',
children: [
{
text: "Try it out for yourself! Copy and paste some rendered HTML rich text content (not the source code) from another site into this editor and it's formatting should be preserved.",
},
],
},
]
export default PasteHtmlExample
|