| import { objIsNode } from '@react-page/editor'; |
| import type { Editor } from 'slate'; |
| import { Transforms } from 'slate'; |
|
|
| import { HtmlToSlate } from '../htmlToSlate'; |
| import type { SlatePlugin } from '../types/SlatePlugin'; |
|
|
| const withPaste = |
| (plugins: SlatePlugin[], defaultPluginType: string) => (editor: Editor) => { |
| const { insertData } = editor; |
| const htmlToSlate = HtmlToSlate({ plugins }); |
| editor.insertData = async (data) => { |
| const slateData = data.getData('application/x-slate-fragment'); |
| if (slateData) { |
| insertData(data); |
| return; |
| } |
|
|
| const html = data.getData('text/html'); |
| if (html) { |
| const { slate } = await htmlToSlate(html); |
|
|
| Transforms.insertFragment(editor, slate); |
| return; |
| } |
|
|
| const text = data.getData('text/plain'); |
| if (text) { |
| |
| try { |
| const node = JSON.parse(text); |
| if (objIsNode(node)) { |
| return; |
| } |
| } catch (e) { |
| |
| } |
| |
| const lines = text.split('\n'); |
| let nextWillbeParagraph = false; |
| for (let i = 0; i < lines.length; i++) { |
| const thisLine = lines[i]; |
| const nextLine = lines[i + 1]; |
| |
| const nextIsEmpty = !nextLine || !nextLine.trim(); |
|
|
| const thisLineText = thisLine + (nextIsEmpty ? '' : '\n'); |
| if (!thisLine.trim()) { |
| |
| nextWillbeParagraph = true; |
| } else if (nextWillbeParagraph) { |
| Transforms.insertNodes(editor, { |
| type: defaultPluginType, |
| children: [{ text: thisLineText }], |
| }); |
| nextWillbeParagraph = false; |
| } else { |
| Transforms.insertText(editor, thisLineText); |
| nextWillbeParagraph = false; |
| } |
| } |
| return; |
| } |
|
|
| insertData(data); |
| }; |
| return editor; |
| }; |
|
|
| export default withPaste; |
|
|