35 lines
1.1 KiB
JavaScript
Executable File
35 lines
1.1 KiB
JavaScript
Executable File
import Deskshare from '/imports/api/deskshare';
|
|
import {vertoWatchVideo} from '/imports/api/verto';
|
|
import Auth from '/imports/ui/services/auth';
|
|
|
|
// when the meeting information has been updated check to see if it was
|
|
// desksharing. If it has changed either trigger a call to receive video
|
|
// and display it, or end the call and hide the video
|
|
function isVideoBroadcasting() {
|
|
const ds = Deskshare.findOne({});
|
|
if (ds == null || !ds.broadcasting) {
|
|
return false;
|
|
}
|
|
|
|
return (ds.broadcasting && ds.startedBy != Auth.userID);
|
|
}
|
|
|
|
// if remote deskshare has been ended disconnect and hide the video stream
|
|
function presenterDeskshareHasEnded() {
|
|
// references a functiion in the global namespace inside verto_extension.js
|
|
// that we load dynamically
|
|
vertoExitVideo();
|
|
};
|
|
|
|
// if remote deskshare has been started connect and display the video stream
|
|
function presenterDeskshareHasStarted() {
|
|
// references a functiion in the global namespace inside verto_extension.js
|
|
// that we load dynamically
|
|
vertoWatchVideo();
|
|
};
|
|
|
|
export {
|
|
isVideoBroadcasting, presenterDeskshareHasEnded, presenterDeskshareHasStarted,
|
|
};
|
|
|