From 37b8e537929c4abfa9c19e9dbdb52b559849f1d6 Mon Sep 17 00:00:00 2001 From: chris <kokosias@yahoo.gr> Date: Sun, 21 Apr 2024 13:37:11 +0300 Subject: [PATCH] cleanup --- .../src/CommentsService/CommentsService.js | 6 ------ .../src/CommentsService/plugins/CommentPlugin.js | 2 -- .../src/CommentsService/plugins/CommentState.js | 5 +---- wax-prosemirror-services/src/YjsService/YjsService.js | 1 - 4 files changed, 1 insertion(+), 13 deletions(-) diff --git a/wax-prosemirror-services/src/CommentsService/CommentsService.js b/wax-prosemirror-services/src/CommentsService/CommentsService.js index ea97c9596..60668775b 100644 --- a/wax-prosemirror-services/src/CommentsService/CommentsService.js +++ b/wax-prosemirror-services/src/CommentsService/CommentsService.js @@ -1,20 +1,14 @@ import { Service } from 'wax-prosemirror-core'; -import * as Y from 'yjs'; import CommentBubbleComponent from './components/ui/comments/CommentBubbleComponent'; import RightArea from './components/RightArea'; import commentMark from './schema/commentMark'; import CommentPlugin from './plugins/CommentPlugin'; -// import CopyPasteCommentPlugin from './plugins/CopyPasteCommentPlugin'; import { CommentDecorationPlugin } from './plugins/CommentDecorationPlugin'; import './comments.css'; export default class CommentsService extends Service { allCommentsFromStates = []; boot() { - // this.app.PmPlugins.add( - // 'copyPasteCommentPlugin', - // CopyPasteCommentPlugin('copyPasteCommentPlugin', this.app.context), - // ); const commentsConfig = this.app.config.get('config.CommentsService'); this.app.PmPlugins.add( diff --git a/wax-prosemirror-services/src/CommentsService/plugins/CommentPlugin.js b/wax-prosemirror-services/src/CommentsService/plugins/CommentPlugin.js index 9d8a21466..7a6c99c92 100644 --- a/wax-prosemirror-services/src/CommentsService/plugins/CommentPlugin.js +++ b/wax-prosemirror-services/src/CommentsService/plugins/CommentPlugin.js @@ -16,7 +16,6 @@ const getComment = (state, context) => { ); commentData = sortBy(commentData, ['data.pmFrom']); - console.log(commentData, comments); if (commentData.length > 0) { if ( (state.selection.from !== state.selection.to && @@ -24,7 +23,6 @@ const getComment = (state, context) => { (state.selection.from === state.selection.to && last(commentData).data.conversation.length !== 0) ) { - console.log('hereee? acitve'); return last(commentData); } return undefined; diff --git a/wax-prosemirror-services/src/CommentsService/plugins/CommentState.js b/wax-prosemirror-services/src/CommentsService/plugins/CommentState.js index 67664c1ca..5697fcaf2 100644 --- a/wax-prosemirror-services/src/CommentsService/plugins/CommentState.js +++ b/wax-prosemirror-services/src/CommentsService/plugins/CommentState.js @@ -59,13 +59,10 @@ export default class CommentState { const ystate = ySyncPluginKey.getState(state); - const { map } = this.options; - if (ystate?.binding) { const { doc, type, binding } = ystate; - map.forEach((annotation, id) => { - console.log('in map', annotation); + this.allCommentsList().forEach((annotation, id) => { if (typeof annotation.data.yjsFrom === 'number') { annotation.data.yjsFrom = absolutePositionToRelativePosition( annotation.data.yjsFrom, diff --git a/wax-prosemirror-services/src/YjsService/YjsService.js b/wax-prosemirror-services/src/YjsService/YjsService.js index 6957191ab..8efdbc131 100644 --- a/wax-prosemirror-services/src/YjsService/YjsService.js +++ b/wax-prosemirror-services/src/YjsService/YjsService.js @@ -22,7 +22,6 @@ class YjsService extends Service { if (!configProvider || !configYdoc) { ydoc = new Y.Doc(); provider = new WebsocketProvider(connectionUrl, docIdentifier, ydoc); - console.log(this.app.context); this.app.context.setOption({ currentYdoc: ydoc }); } -- GitLab