mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-21 15:28:09 +08:00
48 lines
949 B
TypeScript
48 lines
949 B
TypeScript
import { Command, createExtension } from '@tiptap/core'
|
|
import { history, undo, redo } from 'prosemirror-history'
|
|
|
|
export interface HistoryOptions {
|
|
depth: number,
|
|
newGroupDelay: number,
|
|
}
|
|
|
|
const History = createExtension({
|
|
defaultOptions: <HistoryOptions>{
|
|
depth: 100,
|
|
newGroupDelay: 500,
|
|
},
|
|
|
|
addCommands() {
|
|
return {
|
|
undo: (): Command => ({ state, dispatch }) => {
|
|
return undo(state, dispatch)
|
|
},
|
|
redo: (): Command => ({ state, dispatch }) => {
|
|
return redo(state, dispatch)
|
|
},
|
|
}
|
|
},
|
|
|
|
addProseMirrorPlugins() {
|
|
return [
|
|
history(this.options),
|
|
]
|
|
},
|
|
|
|
addKeyboardShortcuts() {
|
|
return {
|
|
'Mod-z': () => this.editor.undo(),
|
|
'Mod-y': () => this.editor.redo(),
|
|
'Shift-Mod-z': () => this.editor.redo(),
|
|
}
|
|
},
|
|
})
|
|
|
|
export default History
|
|
|
|
declare module '@tiptap/core/src/Editor' {
|
|
interface AllExtensions {
|
|
History: typeof History,
|
|
}
|
|
}
|