最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Where to store WebRTC streams when building React app with redux - Stack Overflow

programmeradmin4浏览0评论

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 ponent 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 ponent to update without putting the stream in the redux state?

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 ponent 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 ponent to update without putting the stream in the redux state?

Share Improve this question edited May 23, 2017 at 12:31 CommunityBot 11 silver badge asked Dec 7, 2015 at 15:55 ChadChad 2,2891 gold badge20 silver badges18 bronze badges 1
  • 6 Similarly - where in the app structure do you put non-serializable state objects, like instances of RTCPeerConnection or MediaStream, if not in a Redux store? – ruffrey Commented Dec 7, 2015 at 16:03
Add a ment  | 

1 Answer 1

Reset to default 6

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 municate with UI and listen for actions ing from here.

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

发布评论

评论列表(0)

  1. 暂无评论