Hey guys, hope you are all fine.
I’m currently implementing a data sharing functionality within my dash app. Essentially, the user can choose some data and then share with some other people. I implemented all the communications using web sockets, specifically Flask-SocketIO..
The data is received by the user using the socket.io JS implementation in a custom JS file in the assets folder. The transmitting-receiving data is already working, but I was wondering if it is possible to put this data in the dcc.Store using the client-side JS code. Is this even doable? Has anyone stumbled with this before?
I know that dash-extensions has a WebSocket component, but using it would require declaring a web socket endpoint and thus I would loose things like rooms implemented in Flask-SocketIO.