20 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
0
answers
55
views
How to get entire Ydoc state in byte[] in c# using YDotNet package?
The application I am working on is basically a collaborative editor, where the react clients (Slate+Yjs) will be connect to the backend sever dotnet web api using signalR, The thing is I need to ...
0
votes
0
answers
21
views
React - syncedstore + JsonForms
I'm using json forms to generate forms from a json description. I'm trying to have cooperative filling (multiple users can work on one form at a time, and see changes in real time).
const store = ...
0
votes
0
answers
58
views
Remirror + Yjs: "Cannot read properties of undefined (reading 'state')" when using YjsExtension
I'm building a collaborative text editor in React using Remirror and Yjs, but I get the following error when I add the YjsExtension:
remirror-core.js:4315 Uncaught TypeError: Cannot read properties of ...
0
votes
0
answers
33
views
how to bind the yjs subdocument update handler
I am using Yjs https://yjs.dev/ to sync the online editors content, in the Yjs root document, defined the update handler like this:
/**
* @param {Uint8Array} update
* @param {any} _origin
* @param {...
1
vote
1
answer
458
views
Why is my setup for 'Collaborative Editing' for milkdown plain working and not for Crepe (Vue 3)?
I've got the editor working with the vanilla setup and following milkdowns guide: milkdown setup with collab-plugin api: collab-plugin.
Collaborative Editing Guide Collaborative Editing.
Using: Vue 3, ...
0
votes
0
answers
32
views
the yjs newest insert Item left was GC
I am using yjs https://github.com/yjs/yjs to implement a collaborate editor(v13.6.24), now I found the newest insert item did not append to the Doc. Then I tried to tracing the newest insert element
...
0
votes
0
answers
37
views
Name label in yjs code-mirror editor taking full width
I am trying to implement the collaborative code-editor, using yjs and code mirror, here the problem i am facing is the name label of the editor it takes full width, this makes the text to shift to ...
3
votes
0
answers
398
views
How to save Lexical Editor content from Yjs message in NestJS backend? [closed]
I'm working on a project using Lexical editor with Yjs for real-time collaboration, and my backend is built with NestJS. I’m trying to figure out how to get the content from the Lexical editor when ...
1
vote
0
answers
214
views
How to persist yDoc from Y.js in MongoDB and reuse it?
I am using TipTap collaboration extension and its working fine. What I want is to store the yDoc and retrieve it from mongoDB database. As nature of my application needs persistant data.
I have tried ...
2
votes
0
answers
492
views
Syncing Yjs docs through websocket
So in a nextjs project Im working on, the client connects to a websocket server as such
useEffect(() => {
async function fetchDocument(tableId: string) {
try {
const ydoc = new Y....
1
vote
1
answer
696
views
Real-time collaborative editing with editor.js
I'm working on a project involving collaborative text editing with Editor.js and could use some help with a couple of issues:
I'm trying to integrate Editor.js with libraries like Yjs or ShareDB for ...
0
votes
1
answer
195
views
Using Cypress to test React app with Yjs Websocket server backend
Hi I am developing a collaborative tool using react and Yjs. The tool in question is a spreadsheet and I wanted to do some E2E testing to prove the correctness. I intented to use cypress to do this ...
1
vote
0
answers
109
views
Having trouble connecting/saving data from Yjs Quill document to Mongodb - Angular
I'm having trouble saving data from my Quill document to my mongodb instance. I can cache the data to my browser with y-indexeddb but it won't save to my mongodb instance using the provided y-mongodb-...
0
votes
1
answer
782
views
Duplicated Content Issue in Collaborative Editing with Yjs
Description:
I am implementing collaborative editing functionality using Yjs for a script editor in my React application. The collaborative editing works well, but I'm encountering an issue when ...
0
votes
1
answer
180
views
start command to simultaneously run next and yjs websocket in production
I implemented tldraw and yjs in nextjs and the command and the dev command I use to run it in development is
"concurrently "next" "HOST=localhost PORT=1234 npx y-websocket" --...