* chore: add precommit hook for eslint fixes, fix linting issues * chore: add eslint import sort plugin
106 lines
2.2 KiB
Vue
106 lines
2.2 KiB
Vue
<template>
|
||
<editor-content :editor="editor" />
|
||
</template>
|
||
|
||
<script>
|
||
import Collaboration from '@tiptap/extension-collaboration'
|
||
import CollaborationCursor from '@tiptap/extension-collaboration-cursor'
|
||
import Document from '@tiptap/extension-document'
|
||
import Paragraph from '@tiptap/extension-paragraph'
|
||
import Placeholder from '@tiptap/extension-placeholder'
|
||
import Text from '@tiptap/extension-text'
|
||
import { Editor, EditorContent } from '@tiptap/vue-3'
|
||
import { WebrtcProvider } from 'y-webrtc'
|
||
import * as Y from 'yjs'
|
||
|
||
export default {
|
||
components: {
|
||
EditorContent,
|
||
},
|
||
|
||
data() {
|
||
return {
|
||
editor: null,
|
||
provider: null,
|
||
}
|
||
},
|
||
|
||
mounted() {
|
||
const ydoc = new Y.Doc()
|
||
|
||
this.provider = new WebrtcProvider('tiptap-collaboration-cursor-extension', ydoc)
|
||
|
||
this.editor = new Editor({
|
||
extensions: [
|
||
Document,
|
||
Paragraph,
|
||
Text,
|
||
Collaboration.configure({
|
||
document: ydoc,
|
||
}),
|
||
CollaborationCursor.configure({
|
||
provider: this.provider,
|
||
user: {
|
||
name: 'Cyndi Lauper',
|
||
color: '#f783ac',
|
||
},
|
||
}),
|
||
Placeholder.configure({
|
||
placeholder: 'Write something … It’ll be shared with everyone else looking at this example.',
|
||
}),
|
||
],
|
||
})
|
||
},
|
||
|
||
beforeUnmount() {
|
||
this.editor.destroy()
|
||
this.provider.destroy()
|
||
},
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss">
|
||
/* Basic editor styles */
|
||
.ProseMirror {
|
||
> * + * {
|
||
margin-top: 0.75em;
|
||
}
|
||
}
|
||
|
||
/* Placeholder (at the top) */
|
||
.ProseMirror p.is-editor-empty:first-child::before {
|
||
content: attr(data-placeholder);
|
||
float: left;
|
||
color: #adb5bd;
|
||
pointer-events: none;
|
||
height: 0;
|
||
}
|
||
|
||
/* Give a remote user a caret */
|
||
.collaboration-cursor__caret {
|
||
position: relative;
|
||
margin-left: -1px;
|
||
margin-right: -1px;
|
||
border-left: 1px solid #0D0D0D;
|
||
border-right: 1px solid #0D0D0D;
|
||
word-break: normal;
|
||
pointer-events: none;
|
||
}
|
||
|
||
/* Render the username above the caret */
|
||
.collaboration-cursor__label {
|
||
position: absolute;
|
||
top: -1.4em;
|
||
left: -1px;
|
||
font-size: 12px;
|
||
font-style: normal;
|
||
font-weight: 600;
|
||
line-height: normal;
|
||
user-select: none;
|
||
color: #0D0D0D;
|
||
padding: 0.1rem 0.3rem;
|
||
border-radius: 3px 3px 3px 0;
|
||
white-space: nowrap;
|
||
}
|
||
</style>
|