mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-30 21:27:51 +08:00
92 lines
2.0 KiB
Vue
92 lines
2.0 KiB
Vue
<template>
|
|
<editor-content :editor="editor" />
|
|
</template>
|
|
|
|
<script>
|
|
import { Editor, EditorContent } from '@tiptap/vue-starter-kit'
|
|
import Document from '@tiptap/extension-document'
|
|
import Paragraph from '@tiptap/extension-paragraph'
|
|
import Text from '@tiptap/extension-text'
|
|
import Collaboration from '@tiptap/extension-collaboration'
|
|
import CollaborationCursor from '@tiptap/extension-collaboration-cursor'
|
|
import * as Y from 'yjs'
|
|
import { WebrtcProvider } from 'y-webrtc'
|
|
|
|
export default {
|
|
components: {
|
|
EditorContent,
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
documentName: 'tiptap-collaboration-cursor-extension',
|
|
ydoc: null,
|
|
provider: null,
|
|
type: null,
|
|
editor: null,
|
|
}
|
|
},
|
|
|
|
mounted() {
|
|
this.ydoc = new Y.Doc()
|
|
this.provider = new WebrtcProvider(this.documentName, this.ydoc)
|
|
this.type = this.ydoc.getXmlFragment('prosemirror')
|
|
|
|
this.editor = new Editor({
|
|
// TODO: This is added by every new user.
|
|
// content: `
|
|
// <p>Example Text</p>
|
|
// `,
|
|
extensions: [
|
|
Document(),
|
|
Paragraph(),
|
|
Text(),
|
|
Collaboration({
|
|
provider: this.provider,
|
|
type: this.type,
|
|
}),
|
|
CollaborationCursor({
|
|
provider: this.provider,
|
|
name: 'Cyndi Lauper',
|
|
color: '#f783ac',
|
|
}),
|
|
],
|
|
})
|
|
},
|
|
|
|
beforeDestroy() {
|
|
this.editor.destroy()
|
|
this.provider.destroy()
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
/* Give a remote user a caret */
|
|
.collaboration-cursor__caret {
|
|
position: relative;
|
|
margin-left: -1px;
|
|
margin-right: -1px;
|
|
border-left: 1px solid black;
|
|
border-right: 1px solid black;
|
|
word-break: normal;
|
|
pointer-events: none;
|
|
}
|
|
|
|
/* Render the username above the caret */
|
|
.collaboration-cursor__label {
|
|
position: absolute;
|
|
top: -1.4em;
|
|
left: -1px;
|
|
font-size: 13px;
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
line-height: normal;
|
|
user-select: none;
|
|
color: white;
|
|
padding: 0.1rem 0.3rem;
|
|
border-radius: 3px;
|
|
white-space: nowrap;
|
|
}
|
|
</style>
|