Fixes to performance. Moved volume out to new component to optimize rerenders.

This commit is contained in:
Håvar Aambø Fosstveit
2019-04-04 00:03:57 +02:00
parent e84af94544
commit abca6645a9
16 changed files with 359 additions and 200 deletions
+11 -1
View File
@@ -66,7 +66,17 @@ const mapDispatchToProps = (dispatch) =>
const VideoWindowContainer = connect(
mapStateToProps,
mapDispatchToProps
mapDispatchToProps,
null,
{
areStatesEqual : (next, prev) =>
{
return (
prev.consumers[prev.room.windowConsumer] ===
next.consumers[next.room.windowConsumer]
);
}
}
)(VideoWindow);
export default VideoWindowContainer;