You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am developing a real time collaborative diagram editor. At the moment I am trying to implement the use case when a user sees a node is moved by another user. I thought that the EventListener positionChanged would be a nice fit for this use case. The Code looks like this:
When adding a node i add an EventListener. In there i change the state of serializedModel.
I am developing a real time collaborative diagram editor. At the moment I am trying to implement the use case when a user sees a node is moved by another user. I thought that the EventListener positionChanged would be a nice fit for this use case. The Code looks like this:
When adding a node i add an EventListener. In there i change the state of
serializedModel
.serializedModel
is just the return value ofmodel.serialize()
.Then there is this
useEffect
:In here a just send a message to my backend to synchronize with the other users.
The Problem right now is that the EventListener only works for a few seconds:
But when i do not set a state in the EventListener. So something likes this:
It works
The text was updated successfully, but these errors were encountered: