react-code-dataset
/
react-page
/packages
/plugins
/content
/slate
/src
/slateEnhancer
/withPaste.ts
| 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) { | |
| // check if its a react-page data | |
| try { | |
| const node = JSON.parse(text); | |
| if (objIsNode(node)) { | |
| return; | |
| } | |
| } catch (e) { | |
| //ignore | |
| } | |
| // if there are two subsequent line breks, insert paragraph, otherway insert soft line break | |
| 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]; | |
| // add a \n, unless the next line is empty, then its either the last entry or the following wil be a paragraph | |
| const nextIsEmpty = !nextLine || !nextLine.trim(); | |
| const thisLineText = thisLine + (nextIsEmpty ? '' : '\n'); | |
| if (!thisLine.trim()) { | |
| // this line is empty, | |
| 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; | |