|
|
import { deepEquals } from '@react-page/editor'; |
|
|
import type { FC, PropsWithChildren } from 'react'; |
|
|
|
|
|
import React, { useCallback, useEffect, useMemo } from 'react'; |
|
|
import { createEditor, Transforms } from 'slate'; |
|
|
import { ReactEditor, Slate, withReact } from 'slate-react'; |
|
|
import withInline from '../slateEnhancer/withInline'; |
|
|
import withPaste from '../slateEnhancer/withPaste'; |
|
|
import type { SlateProps } from '../types/component'; |
|
|
import DialogVisibleProvider from './DialogVisibleProvider'; |
|
|
|
|
|
const SlateProvider: FC<PropsWithChildren<SlateProps>> = (props) => { |
|
|
const { data, plugins, children, defaultPluginType } = props; |
|
|
const editor = useMemo( |
|
|
() => |
|
|
withPaste( |
|
|
plugins, |
|
|
defaultPluginType |
|
|
)(withReact(withInline(plugins)(createEditor()))), |
|
|
[] |
|
|
); |
|
|
|
|
|
|
|
|
useMemo(() => { |
|
|
|
|
|
editor.children = data?.slate; |
|
|
}, [data?.slate]); |
|
|
|
|
|
useEffect(() => { |
|
|
try { |
|
|
|
|
|
ReactEditor.focus(editor); |
|
|
} catch (e) { |
|
|
|
|
|
} |
|
|
if (data.selection) { |
|
|
|
|
|
Transforms.select(editor, data.selection); |
|
|
} else { |
|
|
|
|
|
Transforms.deselect(editor); |
|
|
} |
|
|
}, [data?.slate, data?.selection]); |
|
|
|
|
|
const onChange = useCallback(() => { |
|
|
const dataEqual = deepEquals(editor.children, data?.slate); |
|
|
const selectionEqual = deepEquals(editor.selection, data?.selection); |
|
|
|
|
|
if (!dataEqual || !selectionEqual) |
|
|
props.onChange( |
|
|
{ |
|
|
slate: editor.children, |
|
|
selection: editor.selection, |
|
|
}, |
|
|
{ |
|
|
|
|
|
|
|
|
notUndoable: dataEqual, |
|
|
} |
|
|
); |
|
|
}, [data?.slate, props.onChange]); |
|
|
|
|
|
const initialValue = data?.slate; |
|
|
|
|
|
return ( |
|
|
<DialogVisibleProvider> |
|
|
<Slate |
|
|
editor={editor} |
|
|
value={ |
|
|
initialValue /* |
|
|
this is confusingly only for the initial value since slate 0.70something, see https://github.com/ianstormtaylor/slate/issues/4992 |
|
|
*/ |
|
|
} |
|
|
onChange={onChange} |
|
|
> |
|
|
{children} |
|
|
</Slate> |
|
|
</DialogVisibleProvider> |
|
|
); |
|
|
}; |
|
|
|
|
|
export default SlateProvider; |
|
|
|