Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where to store WebRTC streams when building React app with redux

I'm building a React.js application that interacts with the WebRTC apis to do audio/video calling. When a call is successfully established, an 'onaddstream' event is fired on the RTCPeerConnection instance, which contains the stream that I as a developer am supposed to connect to a video element to display the remote video to the user.

Problem I'm having is understanding the best way to get the stream from the event to the React component for rendering. I have it successfully working by just dumping the stream into my redux state, but in this other answer, the creator of redux Dan Abramov mentioned this:

[...] don’t use classes inside the state. They are not serializable as is. [...] Just use plain objects and arrays.

Which leaves me wondering, if I shouldn't put these streams in the redux state, is there a better way to react to the 'onaddstream' event and get the React component to update without putting the stream in the redux state?

like image 425
Chad Avatar asked Dec 07 '15 15:12

Chad


1 Answers

In my experience things like socket connections and, as in your case, webrtc things, are well-suited for living inside their own middlewares hand-written for your application. You can wire up all connection management here, fire actions to communicate with UI and listen for actions coming from here.

Another solution would be to look on redux saga, which seems to be quite a nice option for handling complex effects as sockets and webrtc.

like image 163
Victor Suzdalev Avatar answered Nov 02 '22 10:11

Victor Suzdalev