mirror of
https://github.com/ianstormtaylor/slate.git
synced 2025-02-22 08:02:25 +01:00
49 lines
1.4 KiB
TypeScript
49 lines
1.4 KiB
TypeScript
import ReactDOM from 'react-dom'
|
|
import React, { useState, useMemo, useRef, useEffect } from 'react'
|
|
import { createEditor, Descendant } from 'slate'
|
|
import { Slate, Editable, withReact } from 'slate-react'
|
|
import { withHistory } from 'slate-history'
|
|
|
|
const ShadowDOM = () => {
|
|
const container = useRef<HTMLDivElement>(null)
|
|
|
|
useEffect(() => {
|
|
if (container.current!.shadowRoot) return
|
|
|
|
// Create a shadow DOM
|
|
const outerShadowRoot = container.current!.attachShadow({ mode: 'open' })
|
|
const host = document.createElement('div')
|
|
outerShadowRoot.appendChild(host)
|
|
|
|
// Create a nested shadow DOM
|
|
const innerShadowRoot = host.attachShadow({ mode: 'open' })
|
|
const reactRoot = document.createElement('div')
|
|
innerShadowRoot.appendChild(reactRoot)
|
|
|
|
// Render the editor within the nested shadow DOM
|
|
ReactDOM.render(<ShadowEditor />, reactRoot)
|
|
})
|
|
|
|
return <div ref={container} data-cy="outer-shadow-root" />
|
|
}
|
|
|
|
const ShadowEditor = () => {
|
|
const [value, setValue] = useState<Descendant[]>(initialValue)
|
|
const editor = useMemo(() => withHistory(withReact(createEditor())), [])
|
|
|
|
return (
|
|
<Slate editor={editor} value={value} onChange={value => setValue(value)}>
|
|
<Editable placeholder="Enter some plain text..." />
|
|
</Slate>
|
|
)
|
|
}
|
|
|
|
const initialValue: Descendant[] = [
|
|
{
|
|
type: 'paragraph',
|
|
children: [{ text: 'This Editor is rendered within a nested Shadow DOM.' }],
|
|
},
|
|
]
|
|
|
|
export default ShadowDOM
|