mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-24 11:49:02 +08:00
fix(core): dont use selection for setContent replacement (#2934)
This commit is contained in:
parent
8bc3986f17
commit
134a4bd1fb
@ -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)
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user