bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/actions-bar/container.jsx
prlanzarin e96fc385f1 Handling HTML5 screensharing stop
The action bar stop button is temporary
2017-11-06 15:39:55 +00:00

51 lines
1.5 KiB
JavaScript
Executable File

import React, { Component } from 'react';
import { createContainer } from 'meteor/react-meteor-data';
import { withModalMounter } from '/imports/ui/components/modal/service';
import ActionsBar from './component';
import Service from './service';
import AudioService from '../audio/service';
import VideoService from '../video-dock/service';
import ScreenshareService from '../screenshare/service';
import AudioModal from '../audio/audio-modal/component';
class ActionsBarContainer extends Component {
constructor(props) {
super(props);
}
render() {
return (
<ActionsBar
{...this.props}
>
{this.props.children}
</ActionsBar>
);
}
}
export default withModalMounter(createContainer(({ mountModal }) => {
const isPresenter = Service.isUserPresenter();
const handleExitAudio = () => AudioService.exitAudio();
const handleOpenJoinAudio = () =>
mountModal(<AudioModal handleJoinListenOnly={AudioService.joinListenOnly} />);
const handleExitVideo = () => VideoService.exitVideo();
const handleJoinVideo = () => VideoService.joinVideo();
const handleShareScreen = () => ScreenshareService.shareScreen();
const handleUnshareScreen = () => ScreenshareService.unshareScreen();
const isVideoBroadcasting = () => ScreenshareService.isVideoBroadcasting();
return {
isUserPresenter: isPresenter,
handleExitAudio,
handleOpenJoinAudio,
handleExitVideo,
handleJoinVideo,
handleShareScreen,
handleUnshareScreen,
isVideoBroadcasting
};
}, ActionsBarContainer));