mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-27 14:59:27 +08:00
refactoring
This commit is contained in:
parent
80d5c54cb7
commit
89a5b18cae
@ -21,7 +21,9 @@
|
||||
"react-dom": "^16.13.1",
|
||||
"remark-container": "^0.1.2",
|
||||
"typescript": "^4.0.3",
|
||||
"vue-github-button": "^1.1.2"
|
||||
"vue-github-button": "^1.1.2",
|
||||
"y-webrtc": "^10.1.6",
|
||||
"yjs": "^13.3.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
|
||||
|
@ -15,8 +15,6 @@
|
||||
"@tiptap/core": "2.x"
|
||||
},
|
||||
"dependencies": {
|
||||
"y-prosemirror": "^0.3.7",
|
||||
"y-webrtc": "^10.1.6",
|
||||
"yjs": "^13.3.2"
|
||||
"y-prosemirror": "^0.3.7"
|
||||
}
|
||||
}
|
||||
|
@ -2,7 +2,6 @@ import { Extension } from '@tiptap/core'
|
||||
import {
|
||||
redo, undo, ySyncPlugin, yUndoPlugin,
|
||||
} from 'y-prosemirror'
|
||||
import { keymap } from 'prosemirror-keymap'
|
||||
|
||||
export interface CollaborationOptions {
|
||||
provider: any,
|
||||
@ -18,10 +17,12 @@ export default new Extension<CollaborationOptions>()
|
||||
.plugins(({ options }) => [
|
||||
ySyncPlugin(options.type),
|
||||
yUndoPlugin(),
|
||||
keymap({
|
||||
])
|
||||
.keys(() => {
|
||||
return {
|
||||
'Mod-z': undo,
|
||||
'Mod-y': redo,
|
||||
'Mod-Shift-z': redo,
|
||||
}),
|
||||
])
|
||||
}
|
||||
})
|
||||
.create()
|
||||
|
@ -15,8 +15,6 @@
|
||||
"@tiptap/core": "2.x"
|
||||
},
|
||||
"dependencies": {
|
||||
"y-prosemirror": "^0.3.7",
|
||||
"y-webrtc": "^10.1.6",
|
||||
"yjs": "^13.3.2"
|
||||
"y-prosemirror": "^0.3.7"
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user