39 lines
1.1 KiB
JavaScript
39 lines
1.1 KiB
JavaScript
import React from 'react';
|
|
import { withTracker } from 'meteor/react-meteor-data';
|
|
import { Session } from 'meteor/session';
|
|
import { getVideoUrl } from './service';
|
|
import ExternalVideoComponent from './component';
|
|
import { layoutSelectInput, layoutSelectOutput, layoutDispatch } from '../layout/context';
|
|
import MediaService, { getSwapLayout } from '/imports/ui/components/media/service';
|
|
|
|
const ExternalVideoContainer = (props) => {
|
|
const externalVideo = layoutSelectOutput((i) => i.externalVideo);
|
|
const cameraDock = layoutSelectInput((i) => i.cameraDock);
|
|
const { isResizing } = cameraDock;
|
|
const layoutContextDispatch = layoutDispatch();
|
|
|
|
return (
|
|
<ExternalVideoComponent
|
|
{
|
|
...{
|
|
layoutContextDispatch,
|
|
...props,
|
|
...externalVideo,
|
|
isResizing,
|
|
}
|
|
}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default withTracker(({ isPresenter }) => {
|
|
const inEchoTest = Session.get('inEchoTest');
|
|
return {
|
|
inEchoTest,
|
|
isPresenter,
|
|
videoUrl: getVideoUrl(),
|
|
getSwapLayout,
|
|
toggleSwapLayout: MediaService.toggleSwapLayout,
|
|
};
|
|
})(ExternalVideoContainer);
|