mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-25 12:39:03 +08:00
62 lines
1.0 KiB
TypeScript
62 lines
1.0 KiB
TypeScript
import { Extension, CommandSpec } from '@tiptap/core'
|
|
import {
|
|
history,
|
|
undo,
|
|
redo,
|
|
undoDepth,
|
|
redoDepth,
|
|
} from 'prosemirror-history'
|
|
|
|
declare module '@tiptap/core/src/Editor' {
|
|
interface Editor {
|
|
undo(): Editor,
|
|
redo(): Editor,
|
|
}
|
|
}
|
|
|
|
interface HistoryOptions {
|
|
historyPluginOptions?: Object,
|
|
}
|
|
|
|
export default class History extends Extension {
|
|
|
|
name = 'history'
|
|
|
|
constructor(options?: HistoryOptions) {
|
|
super(options)
|
|
}
|
|
|
|
defaultOptions(): HistoryOptions {
|
|
return {
|
|
historyPluginOptions: {},
|
|
}
|
|
}
|
|
|
|
commands(): CommandSpec {
|
|
return {
|
|
undo: (next, { view }) => () => {
|
|
undo(view.state, view.dispatch)
|
|
next()
|
|
},
|
|
redo: (next, { view }) => () => {
|
|
redo(view.state, view.dispatch)
|
|
next()
|
|
},
|
|
}
|
|
}
|
|
|
|
keys() {
|
|
return {
|
|
'Mod-z': () => this.editor.undo(),
|
|
'Mod-y': () => this.editor.redo(),
|
|
'Shift-Mod-z': () => this.editor.redo(),
|
|
}
|
|
}
|
|
|
|
plugins() {
|
|
return [
|
|
history(this.options.historyPluginOptions)
|
|
]
|
|
}
|
|
|
|
} |