2017-10-06 20:50:01 +08:00
|
|
|
import React from 'react';
|
2018-01-08 12:44:42 +08:00
|
|
|
import { withTracker } from 'meteor/react-meteor-data';
|
2018-09-14 02:09:30 +08:00
|
|
|
import getFromUserSettings from '/imports/ui/services/users-settings';
|
2018-11-13 06:09:04 +08:00
|
|
|
import Meetings from '/imports/api/meetings';
|
|
|
|
import Auth from '/imports/ui/services/auth';
|
2016-05-20 21:46:30 +08:00
|
|
|
import ActionsBar from './component';
|
2016-11-08 02:19:00 +08:00
|
|
|
import Service from './service';
|
2018-02-19 12:23:05 +08:00
|
|
|
import VideoService from '../video-provider/service';
|
2018-01-08 12:44:42 +08:00
|
|
|
import { shareScreen, unshareScreen, isVideoBroadcasting } from '../screenshare/service';
|
2017-05-02 03:52:57 +08:00
|
|
|
|
2018-12-15 04:16:15 +08:00
|
|
|
import MediaService, { getSwapLayout } from '../media/service';
|
|
|
|
|
2017-11-24 01:20:27 +08:00
|
|
|
const ActionsBarContainer = props => <ActionsBar {...props} />;
|
2016-04-29 03:02:51 +08:00
|
|
|
|
2018-11-13 06:09:04 +08:00
|
|
|
export default withTracker(() => {
|
|
|
|
Meetings.find({ meetingId: Auth.meetingID }).observeChanges({
|
|
|
|
changed: (id, fields) => {
|
|
|
|
if (fields.recordProp && fields.recordProp.recording) {
|
|
|
|
this.window.parent.postMessage({ response: 'recordingStarted' }, '*');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fields.recordProp && !fields.recordProp.recording) {
|
|
|
|
this.window.parent.postMessage({ response: 'recordingStopped' }, '*');
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2019-01-11 00:10:45 +08:00
|
|
|
|
2018-09-15 00:29:19 +08:00
|
|
|
return {
|
|
|
|
isUserPresenter: Service.isUserPresenter(),
|
|
|
|
isUserModerator: Service.isUserModerator(),
|
|
|
|
handleExitVideo: () => VideoService.exitVideo(),
|
|
|
|
handleJoinVideo: () => VideoService.joinVideo(),
|
|
|
|
handleShareScreen: onFail => shareScreen(onFail),
|
|
|
|
handleUnshareScreen: () => unshareScreen(),
|
|
|
|
isVideoBroadcasting: isVideoBroadcasting(),
|
|
|
|
recordSettingsList: Service.recordSettingsList(),
|
|
|
|
toggleRecording: Service.toggleRecording,
|
2018-09-25 20:44:38 +08:00
|
|
|
screenSharingCheck: getFromUserSettings('enableScreensharing', Meteor.settings.public.kurento.enableScreensharing),
|
|
|
|
enableVideo: getFromUserSettings('enableVideo', Meteor.settings.public.kurento.enableVideo),
|
2018-11-03 05:25:40 +08:00
|
|
|
createBreakoutRoom: Service.createBreakoutRoom,
|
|
|
|
meetingIsBreakout: Service.meetingIsBreakout(),
|
|
|
|
hasBreakoutRoom: Service.hasBreakoutRoom(),
|
|
|
|
meetingName: Service.meetingName(),
|
2018-11-27 20:44:22 +08:00
|
|
|
users: Service.users(),
|
2018-12-15 04:16:15 +08:00
|
|
|
isLayoutSwapped: getSwapLayout(),
|
|
|
|
toggleSwapLayout: MediaService.toggleSwapLayout,
|
2018-12-28 19:51:41 +08:00
|
|
|
sendInvitation: Service.sendInvitation,
|
2018-12-28 00:20:03 +08:00
|
|
|
getBreakouts: Service.getBreakouts,
|
|
|
|
getUsersNotAssigned: Service.getUsersNotAssigned,
|
2019-01-14 19:30:59 +08:00
|
|
|
handleTakePresenter: Service.takePresenterRole,
|
2019-02-16 01:32:03 +08:00
|
|
|
isSharingVideo: Service.isSharingVideo(),
|
2018-09-15 00:29:19 +08:00
|
|
|
};
|
2018-10-29 01:02:54 +08:00
|
|
|
})(ActionsBarContainer);
|