fix(core): dont use selection for setContent replacement (#2934)

This commit is contained in:
Dominik 2022-07-06 12:59:16 +02:00 committed by GitHub
parent 8bc3986f17
commit 134a4bd1fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,4 @@
import { ParseOptions } from 'prosemirror-model'
import { TextSelection } from 'prosemirror-state'
import { createDocument } from '../helpers/createDocument'
import { Content, RawCommands } from '../types'
@ -22,11 +21,9 @@ declare module '@tiptap/core' {
export const setContent: RawCommands['setContent'] = (content, emitUpdate = false, parseOptions = {}) => ({ tr, editor, dispatch }) => {
const { doc } = tr
const document = createDocument(content, editor.schema, parseOptions)
const selection = TextSelection.create(doc, 0, doc.content.size)
if (dispatch) {
tr.setSelection(selection)
.replaceSelectionWith(document, false)
tr.replaceWith(0, doc.content.size, document)
.setMeta('preventUpdate', !emitUpdate)
}