File size: 11,374 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 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 |
import { css } from '@emotion/css'
import { isKeyHotkey } from 'is-hotkey'
import isUrl from 'is-url'
import React, { MouseEvent, useMemo } from 'react'
import {
createEditor,
Descendant,
Editor,
Element as SlateElement,
Range,
Transforms,
} from 'slate'
import { withHistory } from 'slate-history'
import {
Editable,
RenderElementProps,
RenderLeafProps,
useSelected,
useSlate,
withReact,
} from 'slate-react'
import * as SlateReact from 'slate-react'
import { Button, Icon, Toolbar } from './components'
import {
BadgeElement,
ButtonElement,
CustomEditor,
CustomElement,
LinkElement,
RenderElementPropsFor,
} from './custom-types.d'
const initialValue: Descendant[] = [
{
type: 'paragraph',
children: [
{
text: 'In addition to block nodes, you can create inline nodes. Here is a ',
},
{
type: 'link',
url: 'https://en.wikipedia.org/wiki/Hypertext',
children: [{ text: 'hyperlink' }],
},
{
text: ', and here is a more unusual inline: an ',
},
{
type: 'button',
children: [{ text: 'editable button' }],
},
{
text: '! Here is a read-only inline: ',
},
{
type: 'badge',
children: [{ text: 'Approved' }],
},
{
text: '.',
},
],
},
{
type: 'paragraph',
children: [
{
text: 'There are two ways to add links. You can either add a link via the toolbar icon above, or if you want in on a little secret, copy a URL to your keyboard and paste it while a range of text is selected. ',
},
// The following is an example of an inline at the end of a block.
// This is an edge case that can cause issues.
{
type: 'link',
url: 'https://twitter.com/JustMissEmma/status/1448679899531726852',
children: [{ text: 'Finally, here is our favorite dog video.' }],
},
{ text: '' },
],
},
]
const InlinesExample = () => {
const editor = useMemo(
() => withInlines(withHistory(withReact(createEditor()))) as CustomEditor,
[]
)
const onKeyDown: React.KeyboardEventHandler<HTMLInputElement> = event => {
const { selection } = editor
// Default left/right behavior is unit:'character'.
// This fails to distinguish between two cursor positions, such as
// <inline>foo<cursor/></inline> vs <inline>foo</inline><cursor/>.
// Here we modify the behavior to unit:'offset'.
// This lets the user step into and out of the inline without stepping over characters.
// You may wish to customize this further to only use unit:'offset' in specific cases.
if (selection && Range.isCollapsed(selection)) {
const { nativeEvent } = event
if (isKeyHotkey('left', nativeEvent)) {
event.preventDefault()
Transforms.move(editor, { unit: 'offset', reverse: true })
return
}
if (isKeyHotkey('right', nativeEvent)) {
event.preventDefault()
Transforms.move(editor, { unit: 'offset' })
return
}
}
}
return (
<SlateReact.Slate editor={editor} initialValue={initialValue}>
<Toolbar>
<AddLinkButton />
<RemoveLinkButton />
<ToggleEditableButtonButton />
</Toolbar>
<Editable
renderElement={props => <Element {...props} />}
renderLeaf={props => <Text {...props} />}
placeholder="Enter some text..."
onKeyDown={onKeyDown}
/>
</SlateReact.Slate>
)
}
const withInlines = (editor: CustomEditor) => {
const { insertData, insertText, isInline, isElementReadOnly, isSelectable } =
editor
editor.isInline = (element: CustomElement) =>
['link', 'button', 'badge'].includes(element.type) || isInline(element)
editor.isElementReadOnly = (element: CustomElement) =>
element.type === 'badge' || isElementReadOnly(element)
editor.isSelectable = (element: CustomElement) =>
element.type !== 'badge' && isSelectable(element)
editor.insertText = text => {
if (text && isUrl(text)) {
wrapLink(editor, text)
} else {
insertText(text)
}
}
editor.insertData = data => {
const text = data.getData('text/plain')
if (text && isUrl(text)) {
wrapLink(editor, text)
} else {
insertData(data)
}
}
return editor
}
const insertLink = (editor: CustomEditor, url: string) => {
if (editor.selection) {
wrapLink(editor, url)
}
}
const insertButton = (editor: CustomEditor) => {
if (editor.selection) {
wrapButton(editor)
}
}
const isLinkActive = (editor: CustomEditor): boolean => {
const [link] = Editor.nodes(editor, {
match: n =>
!Editor.isEditor(n) && SlateElement.isElement(n) && n.type === 'link',
})
return !!link
}
const isButtonActive = (editor: CustomEditor): boolean => {
const [button] = Editor.nodes(editor, {
match: n =>
!Editor.isEditor(n) && SlateElement.isElement(n) && n.type === 'button',
})
return !!button
}
const unwrapLink = (editor: CustomEditor) => {
Transforms.unwrapNodes(editor, {
match: n =>
!Editor.isEditor(n) && SlateElement.isElement(n) && n.type === 'link',
})
}
const unwrapButton = (editor: CustomEditor) => {
Transforms.unwrapNodes(editor, {
match: n =>
!Editor.isEditor(n) && SlateElement.isElement(n) && n.type === 'button',
})
}
const wrapLink = (editor: CustomEditor, url: string) => {
if (isLinkActive(editor)) {
unwrapLink(editor)
}
const { selection } = editor
const isCollapsed = selection && Range.isCollapsed(selection)
const link: LinkElement = {
type: 'link',
url,
children: isCollapsed ? [{ text: url }] : [],
}
if (isCollapsed) {
Transforms.insertNodes(editor, link)
} else {
Transforms.wrapNodes(editor, link, { split: true })
Transforms.collapse(editor, { edge: 'end' })
}
}
const wrapButton = (editor: CustomEditor) => {
if (isButtonActive(editor)) {
unwrapButton(editor)
}
const { selection } = editor
const isCollapsed = selection && Range.isCollapsed(selection)
const button: ButtonElement = {
type: 'button',
children: isCollapsed ? [{ text: 'Edit me!' }] : [],
}
if (isCollapsed) {
Transforms.insertNodes(editor, button)
} else {
Transforms.wrapNodes(editor, button, { split: true })
Transforms.collapse(editor, { edge: 'end' })
}
}
// Put this at the start and end of an inline component to work around this Chromium bug:
// https://bugs.chromium.org/p/chromium/issues/detail?id=1249405
const InlineChromiumBugfix = () => (
<span
contentEditable={false}
className={css`
font-size: 0;
`}
>
{String.fromCodePoint(160) /* Non-breaking space */}
</span>
)
const allowedSchemes = ['http:', 'https:', 'mailto:', 'tel:']
const LinkComponent = ({
attributes,
children,
element,
}: RenderElementPropsFor<LinkElement>) => {
const selected = useSelected()
const safeUrl = useMemo(() => {
let parsedUrl: URL | null = null
try {
parsedUrl = new URL(element.url)
// eslint-disable-next-line no-empty
} catch {}
if (parsedUrl && allowedSchemes.includes(parsedUrl.protocol)) {
return parsedUrl.href
}
return 'about:blank'
}, [element.url])
return (
<a
{...attributes}
href={safeUrl}
className={
selected
? css`
box-shadow: 0 0 0 3px #ddd;
`
: ''
}
>
<InlineChromiumBugfix />
{children}
<InlineChromiumBugfix />
</a>
)
}
const EditableButtonComponent = ({
attributes,
children,
}: RenderElementProps) => {
return (
/*
Note that this is not a true button, but a span with button-like CSS.
True buttons are display:inline-block, but Chrome and Safari
have a bad bug with display:inline-block inside contenteditable:
- https://bugs.webkit.org/show_bug.cgi?id=105898
- https://bugs.chromium.org/p/chromium/issues/detail?id=1088403
Worse, one cannot override the display property: https://github.com/w3c/csswg-drafts/issues/3226
The only current workaround is to emulate the appearance of a display:inline button using CSS.
*/
<span
{...attributes}
onClick={ev => ev.preventDefault()}
// Margin is necessary to clearly show the cursor adjacent to the button
className={css`
margin: 0 0.1em;
background-color: #efefef;
padding: 2px 6px;
border: 1px solid #767676;
border-radius: 2px;
font-size: 0.9em;
`}
>
<InlineChromiumBugfix />
{children}
<InlineChromiumBugfix />
</span>
)
}
const BadgeComponent = ({
attributes,
children,
element,
}: RenderElementProps) => {
const selected = useSelected()
return (
<span
{...attributes}
contentEditable={false}
className={css`
background-color: green;
color: white;
padding: 2px 6px;
border-radius: 2px;
font-size: 0.9em;
${selected && 'box-shadow: 0 0 0 3px #ddd;'}
`}
data-playwright-selected={selected}
>
<InlineChromiumBugfix />
{children}
<InlineChromiumBugfix />
</span>
)
}
const Element = (props: RenderElementProps) => {
const { attributes, children, element } = props
switch (element.type) {
case 'link':
return <LinkComponent {...props} />
case 'button':
return <EditableButtonComponent {...props} />
case 'badge':
return <BadgeComponent {...props} />
default:
return <p {...attributes}>{children}</p>
}
}
const Text = (props: RenderLeafProps) => {
const { attributes, children, leaf } = props
return (
<span
// The following is a workaround for a Chromium bug where,
// if you have an inline at the end of a block,
// clicking the end of a block puts the cursor inside the inline
// instead of inside the final {text: ''} node
// https://github.com/ianstormtaylor/slate/issues/4704#issuecomment-1006696364
className={
leaf.text === ''
? css`
padding-left: 0.1px;
`
: undefined
}
{...attributes}
>
{children}
</span>
)
}
const AddLinkButton = () => {
const editor = useSlate()
return (
<Button
active={isLinkActive(editor)}
onMouseDown={(event: MouseEvent) => {
event.preventDefault()
const url = window.prompt('Enter the URL of the link:')
if (!url) return
insertLink(editor, url)
}}
>
<Icon>link</Icon>
</Button>
)
}
const RemoveLinkButton = () => {
const editor = useSlate()
return (
<Button
active={isLinkActive(editor)}
onMouseDown={(event: MouseEvent) => {
if (isLinkActive(editor)) {
unwrapLink(editor)
}
}}
>
<Icon>link_off</Icon>
</Button>
)
}
const ToggleEditableButtonButton = () => {
const editor = useSlate()
return (
<Button
active
onMouseDown={(event: MouseEvent) => {
event.preventDefault()
if (isButtonActive(editor)) {
unwrapButton(editor)
} else {
insertButton(editor)
}
}}
>
<Icon>smart_button</Icon>
</Button>
)
}
export default InlinesExample
|