You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

152 lines
3.1 KiB

3 years ago
import React, { HTMLProps } from 'react'
import ReactDOM, { flushSync } from 'react-dom'
import { Editor } from './Editor'
import { ReactRenderer } from './ReactRenderer'
const Portals: React.FC<{ renderers: Record<string, ReactRenderer> }> = ({ renderers }) => {
return (
<>
{Object.entries(renderers).map(([key, renderer]) => {
return ReactDOM.createPortal(
renderer.reactElement,
renderer.element,
key,
)
})}
</>
)
}
export interface EditorContentProps extends HTMLProps<HTMLDivElement> {
editor: Editor | null,
}
export interface EditorContentState {
renderers: Record<string, ReactRenderer>
}
export class PureEditorContent extends React.Component<EditorContentProps, EditorContentState> {
editorContentRef: React.RefObject<any>
initialized: boolean
constructor(props: EditorContentProps) {
super(props)
this.editorContentRef = React.createRef()
this.initialized = false
this.state = {
renderers: {},
}
}
componentDidMount() {
this.init()
}
componentDidUpdate() {
this.init()
}
init() {
const { editor } = this.props
if (editor && editor.options.element) {
if (editor.contentComponent) {
return
}
const element = this.editorContentRef.current
element.append(...editor.options.element.childNodes)
editor.setOptions({
element,
})
editor.contentComponent = this
editor.createNodeViews()
this.initialized = true
}
}
maybeFlushSync(fn: () => void) {
// Avoid calling flushSync until the editor is initialized.
// Initialization happens during the componentDidMount or componentDidUpdate
// lifecycle methods, and React doesn't allow calling flushSync from inside
// a lifecycle method.
if (this.initialized) {
flushSync(fn)
} else {
fn()
}
}
setRenderer(id: string, renderer: ReactRenderer) {
this.maybeFlushSync(() => {
this.setState(({ renderers }) => ({
renderers: {
...renderers,
[id]: renderer,
},
}))
})
}
removeRenderer(id: string) {
this.maybeFlushSync(() => {
this.setState(({ renderers }) => {
const nextRenderers = { ...renderers }
delete nextRenderers[id]
return { renderers: nextRenderers }
})
})
}
componentWillUnmount() {
const { editor } = this.props
if (!editor) {
return
}
if (!editor.isDestroyed) {
editor.view.setProps({
nodeViews: {},
})
}
editor.contentComponent = null
if (!editor.options.element.firstChild) {
return
}
const newElement = document.createElement('div')
newElement.append(...editor.options.element.childNodes)
editor.setOptions({
element: newElement,
})
}
render() {
const { editor, ...rest } = this.props
return (
<>
<div ref={this.editorContentRef} {...rest} />
<Portals renderers={this.state.renderers} />
</>
)
}
}
export const EditorContent = React.memo(PureEditorContent)