32 lines
831 B
TypeScript
32 lines
831 B
TypeScript
import { ParseOptions } from 'prosemirror-model'
|
|
|
|
import { createDocument } from '../helpers/createDocument'
|
|
import { Content, RawCommands } from '../types'
|
|
|
|
declare module '@tiptap/core' {
|
|
interface Commands<ReturnType> {
|
|
setContent: {
|
|
/**
|
|
* Replace the whole document with new content.
|
|
*/
|
|
setContent: (
|
|
content: Content,
|
|
emitUpdate?: boolean,
|
|
parseOptions?: ParseOptions,
|
|
) => ReturnType,
|
|
}
|
|
}
|
|
}
|
|
|
|
export const setContent: RawCommands['setContent'] = (content, emitUpdate = false, parseOptions = {}) => ({ tr, editor, dispatch }) => {
|
|
const { doc } = tr
|
|
const document = createDocument(content, editor.schema, parseOptions)
|
|
|
|
if (dispatch) {
|
|
tr.replaceWith(0, doc.content.size, document)
|
|
.setMeta('preventUpdate', !emitUpdate)
|
|
}
|
|
|
|
return true
|
|
}
|