This commit is contained in:
Philipp Kühn
2020-03-27 22:04:02 +01:00
parent 8b02b6c2c4
commit 42853fc583
18 changed files with 637 additions and 764 deletions

View File

@@ -0,0 +1,48 @@
import Editor, { Extension } from '@tiptap/core'
import {
history,
undo,
redo,
undoDepth,
redoDepth,
} from 'prosemirror-history'
declare module '@tiptap/core/src/Editor' {
interface Editor {
undo(): Editor,
undo(): Editor,
}
}
export default class History extends Extension {
name = 'history'
created() {
this.editor.registerCommand('undo', (next, { view }) => {
undo(view.state, view.dispatch)
next()
})
this.editor.registerCommand('redo', (next, { view }) => {
redo(view.state, view.dispatch)
next()
})
}
get plugins() {
return [
history()
]
}
// commands() {
// return {
// undo: () => undo,
// redo: () => redo,
// undoDepth: () => undoDepth,
// redoDepth: () => redoDepth,
// }
// }
}