104 lines
4.0 KiB
JavaScript
Executable File
104 lines
4.0 KiB
JavaScript
Executable File
import React from 'react';
|
|
import { withTracker } from 'meteor/react-meteor-data';
|
|
import { withModalMounter } from '/imports/ui/components/common/modal/service';
|
|
import browserInfo from '/imports/utils/browserInfo';
|
|
import getFromUserSettings from '/imports/ui/services/users-settings';
|
|
import AudioModal from './component';
|
|
import Meetings from '/imports/api/meetings';
|
|
import Auth from '/imports/ui/services/auth';
|
|
import lockContextContainer from '/imports/ui/components/lock-viewers/context/container';
|
|
import AudioError from '/imports/ui/services/audio-manager/error-codes';
|
|
import AppService from '/imports/ui/components/app/service';
|
|
import {
|
|
joinMicrophone,
|
|
closeModal,
|
|
joinListenOnly,
|
|
leaveEchoTest,
|
|
} from './service';
|
|
import Storage from '/imports/ui/services/storage/session';
|
|
import Service from '../service';
|
|
|
|
const AudioModalContainer = (props) => <AudioModal {...props} />;
|
|
|
|
const APP_CONFIG = Meteor.settings.public.app;
|
|
|
|
const invalidDialNumbers = ['0', '613-555-1212', '613-555-1234', '0000'];
|
|
const isRTL = document.documentElement.getAttribute('dir') === 'rtl';
|
|
|
|
export default lockContextContainer(withModalMounter(withTracker(({ userLocks }) => {
|
|
const listenOnlyMode = getFromUserSettings('bbb_listen_only_mode', APP_CONFIG.listenOnlyMode);
|
|
const forceListenOnly = getFromUserSettings('bbb_force_listen_only', APP_CONFIG.forceListenOnly);
|
|
const skipCheck = getFromUserSettings('bbb_skip_check_audio', APP_CONFIG.skipCheck);
|
|
const skipCheckOnJoin = getFromUserSettings('bbb_skip_check_audio_on_first_join', APP_CONFIG.skipCheckOnJoin);
|
|
const autoJoin = getFromUserSettings('bbb_auto_join_audio', APP_CONFIG.autoJoin);
|
|
const meeting = Meetings.findOne({ meetingId: Auth.meetingID }, { fields: { voiceProp: 1 } });
|
|
const getEchoTest = Storage.getItem('getEchoTest');
|
|
|
|
let formattedDialNum = '';
|
|
let formattedTelVoice = '';
|
|
let combinedDialInNum = '';
|
|
if (meeting && meeting.voiceProp) {
|
|
const { dialNumber, telVoice } = meeting.voiceProp;
|
|
if (invalidDialNumbers.indexOf(dialNumber) < 0) {
|
|
formattedDialNum = dialNumber;
|
|
formattedTelVoice = telVoice;
|
|
combinedDialInNum = `${dialNumber.replace(/\D+/g, '')},,,${telVoice.replace(/\D+/g, '')}`;
|
|
}
|
|
}
|
|
|
|
const meetingIsBreakout = AppService.meetingIsBreakout();
|
|
|
|
const joinFullAudioImmediately = (
|
|
autoJoin
|
|
&& (
|
|
skipCheck
|
|
|| (skipCheckOnJoin && !getEchoTest)
|
|
))
|
|
|| (
|
|
skipCheck
|
|
|| (skipCheckOnJoin && !getEchoTest)
|
|
);
|
|
|
|
const forceListenOnlyAttendee = forceListenOnly && !Service.isUserModerator();
|
|
|
|
const { isIe } = browserInfo;
|
|
|
|
return ({
|
|
meetingIsBreakout,
|
|
closeModal,
|
|
joinMicrophone: (skipEchoTest) => joinMicrophone(skipEchoTest || skipCheck || skipCheckOnJoin),
|
|
joinListenOnly,
|
|
leaveEchoTest,
|
|
changeInputDevice: (inputDeviceId) => Service
|
|
.changeInputDevice(inputDeviceId),
|
|
changeInputStream: (inputStream) => Service.changeInputStream(inputStream),
|
|
changeOutputDevice: (outputDeviceId, isLive) => Service
|
|
.changeOutputDevice(outputDeviceId, isLive),
|
|
joinEchoTest: () => Service.joinEchoTest(),
|
|
exitAudio: () => Service.exitAudio(),
|
|
isConnecting: Service.isConnecting(),
|
|
isConnected: Service.isConnected(),
|
|
isUsingAudio: Service.isUsingAudio(),
|
|
isEchoTest: Service.isEchoTest(),
|
|
inputDeviceId: Service.inputDeviceId(),
|
|
outputDeviceId: Service.outputDeviceId(),
|
|
showPermissionsOvelay: Service.isWaitingPermissions(),
|
|
showVolumeMeter: Service.showVolumeMeter,
|
|
localEchoEnabled: Service.localEchoEnabled,
|
|
listenOnlyMode,
|
|
formattedDialNum,
|
|
formattedTelVoice,
|
|
combinedDialInNum,
|
|
audioLocked: userLocks.userMic,
|
|
joinFullAudioImmediately,
|
|
forceListenOnlyAttendee,
|
|
isMobileNative: navigator.userAgent.toLowerCase().includes('bbbnative'),
|
|
isIE: isIe,
|
|
autoplayBlocked: Service.autoplayBlocked(),
|
|
handleAllowAutoplay: () => Service.handleAllowAutoplay(),
|
|
notify: Service.notify,
|
|
isRTL,
|
|
AudioError,
|
|
});
|
|
})(AudioModalContainer)));
|