mirror of https://github.com/fantasticit/think.git
tiptap: fix paste slice
This commit is contained in:
parent
2452b7fdc3
commit
8feab3a0a7
|
@ -151,24 +151,18 @@ export const Paste = Extension.create<IPasteOptions>({
|
||||||
// compatability is to just use the HTML parser, regardless of
|
// compatability is to just use the HTML parser, regardless of
|
||||||
// whether it "looks" like Markdown, see: outline/outline#2416
|
// whether it "looks" like Markdown, see: outline/outline#2416
|
||||||
if (html?.includes('data-pm-slice')) {
|
if (html?.includes('data-pm-slice')) {
|
||||||
const domNode = document.createElement('div');
|
let domNode = document.createElement('div');
|
||||||
domNode.innerHTML = html;
|
domNode.innerHTML = html;
|
||||||
const doc = DOMParser.fromSchema(editor.schema).parse(domNode).toJSON();
|
const slice = DOMParser.fromSchema(editor.schema).parseSlice(domNode);
|
||||||
|
|
||||||
if (hasTitle) {
|
debug(() => {
|
||||||
if (doc.content && doc.content[0] && doc.content[0].type === 'title') {
|
console.log('html', domNode, html, slice);
|
||||||
doc.content = doc.content.slice(1);
|
});
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let tr = view.state.tr;
|
let tr = view.state.tr;
|
||||||
const selection = tr.selection;
|
tr = tr.replaceSelection(slice);
|
||||||
view.state.doc.nodesBetween(selection.from, selection.to, (node, position) => {
|
|
||||||
const startPosition = hasTitle ? Math.min(position, selection.from) : 0;
|
|
||||||
const endPosition = Math.min(position + node.nodeSize, selection.to);
|
|
||||||
tr = tr.replaceWith(startPosition, endPosition, view.state.schema.nodeFromJSON(doc));
|
|
||||||
});
|
|
||||||
view.dispatch(tr.scrollIntoView());
|
view.dispatch(tr.scrollIntoView());
|
||||||
|
domNode = null;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue