refactoring

This commit is contained in:
Hans Pagel 2020-09-26 11:28:48 +02:00
parent 80d5c54cb7
commit 89a5b18cae
4 changed files with 10 additions and 11 deletions

View File

@ -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",

View File

@ -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"
}
}

View File

@ -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()

View File

@ -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"
}
}