import { Extension, Command } from '@tiptap/core' import { yCursorPlugin } from 'y-prosemirror' export interface CollaborationCursorOptions { provider: any, user: { [key: string]: any }, render (user: { [key: string]: any }): HTMLElement, onUpdate: (users: { clientId: string, [key: string]: any }[]) => null, } const awarenessStatesToArray = (states: Map) => { return Array.from(states.entries()).map(([key, value]) => { return { clientId: key, ...value.user, } }) } const CollaborationCursor = Extension.create({ name: 'collaborationCursor', defaultOptions: { provider: null, user: { name: null, color: null, }, render: user => { const cursor = document.createElement('span') cursor.classList.add('collaboration-cursor__caret') cursor.setAttribute('style', `border-color: ${user.color}`) const label = document.createElement('div') label.classList.add('collaboration-cursor__label') label.setAttribute('style', `background-color: ${user.color}`) label.insertBefore(document.createTextNode(user.name), null) cursor.insertBefore(label, null) return cursor }, onUpdate: () => null, }, addCommands() { return { /** * Update details of the current user */ user: (attributes: { [key: string]: any }): Command => () => { this.options.user = attributes this.options.provider.awareness.setLocalStateField('user', this.options.user) this.options.onUpdate(awarenessStatesToArray(this.options.provider.awareness.states)) return true }, } }, addProseMirrorPlugins() { return [ yCursorPlugin((() => { this.options.provider.awareness.setLocalStateField('user', this.options.user) this.options.provider.awareness.on('change', () => { this.options.onUpdate(awarenessStatesToArray(this.options.provider.awareness.states)) }) this.options.onUpdate(awarenessStatesToArray(this.options.provider.awareness.states)) return this.options.provider.awareness })(), // @ts-ignore { cursorBuilder: this.options.render, }), ] }, }) export default CollaborationCursor declare module '@tiptap/core' { interface AllExtensions { CollaborationCursor: typeof CollaborationCursor, } }