bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/video-provider/container.jsx

17 lines
629 B
React
Raw Normal View History

2020-06-09 11:09:46 +08:00
import React from 'react';
2018-02-17 03:18:53 +08:00
import { withTracker } from 'meteor/react-meteor-data';
import VideoProvider from './component';
import VideoService from './service';
2020-06-05 07:01:17 +08:00
import { withLayoutContext } from '/imports/ui/components/layout/context';
2018-02-17 03:18:53 +08:00
2018-12-18 06:19:26 +08:00
const VideoProviderContainer = ({ children, ...props }) => {
2020-06-09 11:09:46 +08:00
const { streams } = props;
2019-11-28 21:13:06 +08:00
return (!streams.length ? null : <VideoProvider {...props}>{children}</VideoProvider>);
2018-12-18 06:19:26 +08:00
};
2018-02-17 03:18:53 +08:00
export default withTracker(props => ({
swapLayout: props.swapLayout,
2019-11-28 21:13:06 +08:00
streams: VideoService.getVideoStreams(),
isUserLocked: VideoService.isUserLocked(),
2020-06-05 07:01:17 +08:00
}))(withLayoutContext(VideoProviderContainer));