2017-06-04 10:40:14 +08:00
|
|
|
import React, { Component } from 'react';
|
2018-01-08 12:44:42 +08:00
|
|
|
import { withTracker } from 'meteor/react-meteor-data';
|
2018-04-25 00:18:12 +08:00
|
|
|
import SessionStorage from '/imports/ui/services/storage/session';
|
2018-01-31 00:32:37 +08:00
|
|
|
import Settings from '/imports/ui/services/settings';
|
2018-03-09 19:20:08 +08:00
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
|
|
|
import { notify } from '/imports/ui/services/notification';
|
2018-04-10 02:28:54 +08:00
|
|
|
import VideoService from '/imports/ui/components/video-provider/service';
|
2016-05-20 21:46:30 +08:00
|
|
|
import Media from './component';
|
2018-04-10 02:48:21 +08:00
|
|
|
import MediaService, { getSwapLayout } from './service';
|
2017-02-17 05:11:46 +08:00
|
|
|
import PresentationAreaContainer from '../presentation/container';
|
2017-07-25 03:29:34 +08:00
|
|
|
import ScreenshareContainer from '../screenshare/container';
|
2017-02-14 05:08:10 +08:00
|
|
|
import DefaultContent from '../presentation/default-content/component';
|
2016-05-04 04:40:46 +08:00
|
|
|
|
2018-03-09 19:20:08 +08:00
|
|
|
const intlMessages = defineMessages({
|
|
|
|
screenshareStarted: {
|
|
|
|
id: 'app.media.screenshare.start',
|
|
|
|
description: 'toast to show when a screenshare has started',
|
|
|
|
},
|
|
|
|
screenshareEnded: {
|
|
|
|
id: 'app.media.screenshare.end',
|
|
|
|
description: 'toast to show when a screenshare has ended',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2016-05-03 06:42:54 +08:00
|
|
|
class MediaContainer extends Component {
|
2016-05-28 09:10:34 +08:00
|
|
|
componentWillReceiveProps(nextProps) {
|
2018-03-09 19:20:08 +08:00
|
|
|
const {
|
|
|
|
isScreensharing,
|
|
|
|
intl,
|
|
|
|
} = this.props;
|
|
|
|
|
|
|
|
if (isScreensharing !== nextProps.isScreensharing) {
|
|
|
|
if (nextProps.isScreensharing) {
|
|
|
|
notify(intl.formatMessage(intlMessages.screenshareStarted), 'info', 'desktop');
|
|
|
|
} else {
|
|
|
|
notify(intl.formatMessage(intlMessages.screenshareEnded), 'info', 'desktop');
|
|
|
|
}
|
|
|
|
}
|
2016-04-29 03:02:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2018-04-12 02:50:14 +08:00
|
|
|
return <Media {...this.props} />;
|
2016-04-29 03:02:51 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-08 12:44:42 +08:00
|
|
|
export default withTracker(() => {
|
2018-02-06 21:33:48 +08:00
|
|
|
const { dataSaving } = Settings;
|
2018-03-21 01:22:11 +08:00
|
|
|
const { viewParticipantsWebcams, viewScreenshare } = dataSaving;
|
2018-01-31 00:32:37 +08:00
|
|
|
|
2018-04-25 00:18:12 +08:00
|
|
|
const hidePresentation = SessionStorage.getItem('meta_html5hidepresentation') || false;
|
2016-09-15 04:25:31 +08:00
|
|
|
|
2018-04-25 00:18:12 +08:00
|
|
|
const data = {
|
|
|
|
children: <DefaultContent />,
|
|
|
|
};
|
2017-03-22 05:46:41 +08:00
|
|
|
|
2018-04-25 00:18:12 +08:00
|
|
|
if (MediaService.shouldShowWhiteboard() && !hidePresentation) {
|
|
|
|
data.currentPresentation = MediaService.getPresentationInfo();
|
2018-04-12 02:50:14 +08:00
|
|
|
data.children = <PresentationAreaContainer />;
|
2016-09-15 04:25:31 +08:00
|
|
|
}
|
|
|
|
|
2018-02-06 21:33:48 +08:00
|
|
|
if (MediaService.shouldShowScreenshare() && (viewScreenshare || MediaService.isUserPresenter())) {
|
2018-04-12 02:50:14 +08:00
|
|
|
data.children = <ScreenshareContainer />;
|
2016-09-15 04:25:31 +08:00
|
|
|
}
|
|
|
|
|
2018-04-10 02:28:54 +08:00
|
|
|
const usersVideo = VideoService.getAllUsersVideo();
|
2018-04-12 02:50:14 +08:00
|
|
|
if (MediaService.shouldShowOverlay() && usersVideo.length) {
|
2018-04-10 02:28:54 +08:00
|
|
|
data.floatingOverlay = usersVideo.length < 2;
|
|
|
|
data.hideOverlay = usersVideo.length === 0;
|
2016-09-15 04:25:31 +08:00
|
|
|
}
|
|
|
|
|
2018-03-09 19:20:08 +08:00
|
|
|
data.isScreensharing = MediaService.isVideoBroadcasting();
|
2018-04-18 01:55:07 +08:00
|
|
|
data.swapLayout = getSwapLayout();
|
2018-04-12 02:50:14 +08:00
|
|
|
data.disableVideo = !viewParticipantsWebcams;
|
2018-03-09 19:20:08 +08:00
|
|
|
|
2018-04-12 02:50:14 +08:00
|
|
|
if (data.swapLayout) {
|
|
|
|
data.floatingOverlay = true;
|
2018-04-25 00:18:12 +08:00
|
|
|
|
|
|
|
if (hidePresentation) {
|
|
|
|
data.hideOverlay = true;
|
|
|
|
}
|
2018-04-10 02:48:21 +08:00
|
|
|
}
|
|
|
|
|
2016-05-28 09:10:34 +08:00
|
|
|
return data;
|
2018-03-09 19:20:08 +08:00
|
|
|
})(injectIntl(MediaContainer));
|