'use strict'; if (location.href.substr(0, 5) !== 'https') location.href = 'https' + location.href.substr(4, location.href.length - 4); const RoomURL = window.location.href; let swalBackground = 'radial-gradient(#393939, #000000)'; const swalImageUrl = '../images/pricing-illustration.svg'; const url = { ipLookup: 'https://extreme-ip-lookup.com/json/?key=demo2', survey: 'https://www.questionpro.com/t/AUs7VZq02P', }; const _PEER = { audioOn: '', audioOff: '', videoOn: '', videoOff: '', raiseHand: '', lowerHand: '', ejectPeer: '', sendFile: '', sendMsg: '', }; const surveyActive = true; let participantsCount = 0; let rc = null; let producer = null; let room_id = getRoomId(); let peer_name = getPeerName(); let notify = getNotify(); let peer_geo = null; let peer_info = null; let isEnumerateDevices = false; let isAudioAllowed = false; let isVideoAllowed = false; let isScreenAllowed = false; let initAudioButton = null; let initVideoButton = null; let recTimer = null; let recElapsedTime = null; const wbImageInput = 'image/*'; const wbWidth = 800; const wbHeight = 600; let wbCanvas = null; let wbIsDrawing = false; let wbIsOpen = false; let wbIsRedoing = false; let wbIsEraser = false; let wbPop = []; let isButtonsVisible = false; const socket = io(); function initClient() { if (!DetectRTC.isMobileDevice) { setTippy('shareButton', 'Share room', 'right'); setTippy('startAudioButton', 'Start the audio', 'right'); setTippy('stopAudioButton', 'Stop the audio', 'right'); setTippy('startVideoButton', 'Start the video', 'right'); setTippy('stopVideoButton', 'Stop the video', 'right'); setTippy('startScreenButton', 'Start screen share', 'right'); setTippy('stopScreenButton', 'Stop screen share', 'right'); setTippy('swapCameraButton', 'Swap the camera', 'right'); setTippy('chatButton', 'Toggle the chat', 'right'); setTippy('whiteboardButton', 'Toggle the whiteboard', 'right'); setTippy('settingsButton', 'Toggle the settings', 'right'); setTippy('exitButton', 'Leave room', 'right'); setTippy('tabDevicesBtn', 'Devices', 'top'); setTippy('tabRecordingBtn', 'Recording', 'top'); setTippy('tabRoomBtn', 'Room', 'top'); setTippy('tabYoutubeBtn', 'YouTube', 'top'); setTippy('tabAspectBtn', 'Aspect', 'top'); setTippy('tabStylingBtn', 'Styling', 'top'); setTippy('wbBackgroundColorEl', 'Background color', 'top'); setTippy('wbDrawingColorEl', 'Drawing color', 'top'); setTippy('whiteboardPencilBtn', 'Drawing mode', 'top'); setTippy('whiteboardObjectBtn', 'Object mode', 'top'); setTippy('whiteboardUndoBtn', 'Undo', 'top'); setTippy('whiteboardRedoBtn', 'Redo', 'top'); setTippy('whiteboardImgFileBtn', 'Add image file', 'top'); setTippy('whiteboardImgUrlBtn', 'Add image url', 'top'); setTippy('whiteboardTextBtn', 'Add text', 'top'); setTippy('whiteboardLineBtn', 'Add line', 'top'); setTippy('whiteboardRectBtn', 'Add rectangle', 'top'); setTippy('whiteboardCircleBtn', 'Add circle', 'top'); setTippy('whiteboardSaveBtn', 'Save', 'top'); setTippy('whiteboardEraserBtn', 'Eraser', 'top'); setTippy('whiteboardCleanBtn', 'Clear', 'top'); setTippy('participantsRefreshBtn', 'Refresh', 'top'); setTippy('chatMessage', 'Press enter to send', 'top-start'); setTippy('chatSendButton', 'Send', 'top'); setTippy('chatSpeechStartButton', 'Start speech recognition', 'top'); setTippy('chatSpeechStopButton', 'Stop speech recognition', 'top'); setTippy('chatEmojiButton', 'Emoji', 'top'); setTippy('chatCleanButton', 'Clean', 'bottom'); setTippy('chatSaveButton', 'Save', 'bottom'); setTippy('sessionTime', 'Session time', 'right'); } setupWhiteboard(); initEnumerateDevices(); } function setTippy(elem, content, placement) { tippy(document.getElementById(elem), { content: content, placement: placement, }); } // #################################################### // GET ROOM ID // #################################################### function getRoomId() { let qs = new URLSearchParams(window.location.search); let queryRoomId = qs.get('room'); let roomId = queryRoomId ? queryRoomId : location.pathname.substring(6); if (roomId == '') { roomId = makeId(12); } return roomId; } function makeId(length) { let result = ''; let characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; let charactersLength = characters.length; for (let i = 0; i < length; i++) { result += characters.charAt(Math.floor(Math.random() * charactersLength)); } return result; } // #################################################### // ENUMERATE DEVICES // #################################################### async function initEnumerateDevices() { if (isEnumerateDevices) return; console.log('01 ----> init Enumerate Devices'); // allow the audio await navigator.mediaDevices .getUserMedia({ audio: true }) .then((stream) => { enumerateAudioDevices(stream); isAudioAllowed = true; }) .catch(() => { isAudioAllowed = false; }); // allow the video await navigator.mediaDevices .getUserMedia({ video: true }) .then((stream) => { enumerateVideoDevices(stream); isVideoAllowed = true; }) .catch(() => { isVideoAllowed = false; }); if (!isAudioAllowed && !isVideoAllowed) { openURL(`/permission?room_id=${room_id}&message=Not allowed both Audio and Video`); } else { hide(loadingDiv); getPeerGeoLocation(); whoAreYou(); } } function enumerateAudioDevices(stream) { console.log('02 ----> Get Audio Devices'); navigator.mediaDevices .enumerateDevices() .then((devices) => devices.forEach((device) => { let el = null; if ('audioinput' === device.kind) { el = microphoneSelect; } else if ('audiooutput' === device.kind) { el = speakerSelect; } if (!el) return; appenChild(device, el); }), ) .then(() => { stopTracks(stream); isEnumerateDevices = true; speakerSelect.disabled = !('sinkId' in HTMLMediaElement.prototype); }); } function enumerateVideoDevices(stream) { console.log('03 ----> Get Video Devices'); navigator.mediaDevices .enumerateDevices() .then((devices) => devices.forEach((device) => { let el = null; if ('videoinput' === device.kind) { el = videoSelect; } if (!el) return; appenChild(device, el); }), ) .then(() => { stopTracks(stream); isEnumerateDevices = true; }); } function stopTracks(stream) { stream.getTracks().forEach((track) => { track.stop(); }); } function appenChild(device, el) { let option = document.createElement('option'); option.value = device.deviceId; option.innerText = device.label; el.appendChild(option); } // #################################################### // API CHECK // #################################################### function getNotify() { let qs = new URLSearchParams(window.location.search); let notify = qs.get('notify'); if (notify) { let queryNotify = notify === '1' || notify === 'true'; if (queryNotify != null) return queryNotify; } return true; } function getPeerName() { let qs = new URLSearchParams(window.location.search); return qs.get('name'); } // #################################################### // SOME PEER INFO // #################################################### function getPeerInfo() { peer_info = { detect_rtc_version: DetectRTC.version, is_webrtc_supported: DetectRTC.isWebRTCSupported, is_mobile_device: DetectRTC.isMobileDevice, os_name: DetectRTC.osName, os_version: DetectRTC.osVersion, browser_name: DetectRTC.browser.name, browser_version: DetectRTC.browser.version, peer_id: socket.id, peer_name: peer_name, peer_audio: isAudioAllowed, peer_video: isVideoAllowed, peer_screen: isScreenAllowed, peer_hand: false, }; } function getPeerGeoLocation() { fetch(url.ipLookup) .then((res) => res.json()) .then((outJson) => { peer_geo = outJson; }) .catch((ex) => console.warn('IP Lookup', ex)); } // #################################################### // ENTER YOUR NAME | Enable/Disable AUDIO/VIDEO // #################################################### function whoAreYou() { console.log('04 ----> Who are you'); if (peer_name) { checkMedia(); getPeerInfo(); notify ? shareRoom() : sound('joined'); joinRoom(peer_name, room_id); return; } Swal.fire({ allowOutsideClick: false, allowEscapeKey: false, background: swalBackground, input: 'text', inputPlaceholder: 'Enter your name', html: `
`, confirmButtonText: `Join meeting`, showClass: { popup: 'animate__animated animate__fadeInDown', }, hideClass: { popup: 'animate__animated animate__fadeOutUp', }, inputValidator: (name) => { if (!name) return 'Please enter your name'; peer_name = name; }, }).then(() => { getPeerInfo(); notify ? shareRoom() : sound('joined'); joinRoom(peer_name, room_id); }); if (!DetectRTC.isMobileDevice) { setTippy('initAudioButton', 'Toggle the audio', 'left'); setTippy('initVideoButton', 'Toggle the video', 'right'); } initAudioButton = document.getElementById('initAudioButton'); initVideoButton = document.getElementById('initVideoButton'); if (!isAudioAllowed) initAudioButton.className = 'hidden'; if (!isVideoAllowed) initVideoButton.className = 'hidden'; } function handleAudio(e) { isAudioAllowed = isAudioAllowed ? false : true; e.target.className = 'fas fa-microphone' + (isAudioAllowed ? '' : '-slash'); setColor(e.target, isAudioAllowed ? 'white' : 'red'); setColor(startAudioButton, isAudioAllowed ? 'white' : 'red'); } function handleVideo(e) { isVideoAllowed = isVideoAllowed ? false : true; e.target.className = 'fas fa-video' + (isVideoAllowed ? '' : '-slash'); setColor(e.target, isVideoAllowed ? 'white' : 'red'); setColor(startVideoButton, isVideoAllowed ? 'white' : 'red'); } function checkMedia() { let qs = new URLSearchParams(window.location.search); let audio = qs.get('audio'); let video = qs.get('video'); if (audio) { audio = audio.toLowerCase(); let queryPeerAudio = audio === '1' || audio === 'true'; if (queryPeerAudio != null) isAudioAllowed = queryPeerAudio; } if (video) { video = video.toLowerCase(); let queryPeerVideo = video === '1' || video === 'true'; if (queryPeerVideo != null) isVideoAllowed = queryPeerVideo; } } // #################################################### // SHARE ROOM // #################################################### async function shareRoom(useNavigator = false) { if (navigator.share && useNavigator) { try { await navigator.share({ url: RoomURL }); userLog('info', 'Room Shared successfully', 'top-end'); } catch (err) { share(); } } else { share(); } function share() { sound('open'); Swal.fire({ background: swalBackground, position: 'center', title: 'Hello ' + peer_name + '', html: `


Invite others to join. Share this meeting link.

` + RoomURL + `

`, showDenyButton: true, showCancelButton: true, confirmButtonText: `Copy URL`, denyButtonText: `Email invite`, cancelButtonText: `Close`, showClass: { popup: 'animate__animated animate__fadeInUp', }, hideClass: { popup: 'animate__animated animate__fadeOutUp', }, }).then((result) => { if (result.isConfirmed) { copyRoomURL(); } else if (result.isDenied) { let message = { email: '', subject: 'Please join our MiroTalkSfu Video Chat Meeting', body: 'Click to join: ' + RoomURL, }; shareRoomByEmail(message); } }); makeRoomQR(); } } // #################################################### // ROOM UTILITY // #################################################### function makeRoomQR() { let qrSize = DetectRTC.isMobileDevice ? 128 : 256; let qr = new QRious({ element: document.getElementById('qrRoom'), value: RoomURL, }); qr.set({ size: qrSize, }); } function copyRoomURL() { let tmpInput = document.createElement('input'); document.body.appendChild(tmpInput); tmpInput.value = RoomURL; tmpInput.select(); tmpInput.setSelectionRange(0, 99999); // For mobile devices navigator.clipboard.writeText(tmpInput.value); document.body.removeChild(tmpInput); userLog('info', 'Meeting URL copied to clipboard 👍', 'top-end'); } function shareRoomByEmail(message) { let email = message.email; let subject = message.subject; let emailBody = message.body; document.location = 'mailto:' + email + '?subject=' + subject + '&body=' + emailBody; } // #################################################### // JOIN ROOM // #################################################### function joinRoom(peer_name, room_id) { if (rc && rc.isConnected()) { console.log('Already connected to a room'); } else { console.log('05 ----> join Room ' + room_id); rc = new RoomClient( remoteAudios, videoMediaContainer, window.mediasoupClient, socket, room_id, peer_name, peer_geo, peer_info, isAudioAllowed, isVideoAllowed, roomIsReady, ); handleRoomClientEvents(); } } function roomIsReady() { show(exitButton); show(shareButton); show(startRecButton); show(chatButton); show(chatSendButton); show(chatEmojiButton); if (isWebkitSpeechRecognitionSupported) { show(chatSpeechStartButton); } if (DetectRTC.isMobileDevice) { show(swapCameraButton); setChatSize(); } else { rc.makeDraggable(chatRoom, chatHeader); rc.makeDraggable(mySettings, mySettingsHeader); rc.makeDraggable(participants, participantsHeader); rc.makeDraggable(whiteboard, whiteboardHeader); rc.makeDraggable(sendFileDiv, imgShareSend); rc.makeDraggable(receiveFileDiv, imgShareReceive); if (navigator.getDisplayMedia || navigator.mediaDevices.getDisplayMedia) { show(startScreenButton); } } if (DetectRTC.browser.name != 'Safari') { document.onfullscreenchange = () => { if (!document.fullscreenElement) rc.isDocumentOnFullScreen = false; }; show(fullScreenButton); } show(whiteboardButton); show(settingsButton); show(raiseHandButton); isAudioAllowed ? show(stopAudioButton) : show(startAudioButton); isVideoAllowed ? show(stopVideoButton) : show(startVideoButton); show(fileShareButton); show(participantsButton); show(lockRoomButton); show(aboutButton); handleButtons(); handleSelects(); handleInputs(); startSessionTimer(); document.body.addEventListener('mousemove', (e) => { showButtons(); }); } function hide(elem) { elem.className = 'hidden'; } function show(elem) { elem.className = ''; } function setColor(elem, color) { elem.style.color = color; } // #################################################### // SET CHAT MOBILE // #################################################### function setChatSize() { document.documentElement.style.setProperty('--msger-width', '99%'); document.documentElement.style.setProperty('--msger-height', '99%'); } // #################################################### // SESSION TIMER // #################################################### function startSessionTimer() { sessionTime.style.display = 'inline'; let callStartTime = Date.now(); setInterval(function printTime() { let callElapsedTime = Date.now() - callStartTime; sessionTime.innerHTML = ' ' + getTimeToString(callElapsedTime); }, 1000); } function getTimeToString(time) { let diffInHrs = time / 3600000; let hh = Math.floor(diffInHrs); let diffInMin = (diffInHrs - hh) * 60; let mm = Math.floor(diffInMin); let diffInSec = (diffInMin - mm) * 60; let ss = Math.floor(diffInSec); let formattedHH = hh.toString().padStart(2, '0'); let formattedMM = mm.toString().padStart(2, '0'); let formattedSS = ss.toString().padStart(2, '0'); return `${formattedHH}:${formattedMM}:${formattedSS}`; } // #################################################### // RECORDING TIMER // #################################################### function secondsToHms(d) { d = Number(d); let h = Math.floor(d / 3600); let m = Math.floor((d % 3600) / 60); let s = Math.floor((d % 3600) % 60); let hDisplay = h > 0 ? h + 'h' : ''; let mDisplay = m > 0 ? m + 'm' : ''; let sDisplay = s > 0 ? s + 's' : ''; return hDisplay + ' ' + mDisplay + ' ' + sDisplay; } function startRecordingTimer() { recElapsedTime = 0; recTimer = setInterval(function printTime() { if (rc.isRecording()) { recElapsedTime++; recordingStatus.innerHTML = '🔴 REC ' + secondsToHms(recElapsedTime); } }, 1000); } function stopRecordingTimer() { clearInterval(recTimer); } // #################################################### // HTML BUTTONS // #################################################### function handleButtons() { exitButton.onclick = () => { rc.exitRoom(); }; shareButton.onclick = () => { shareRoom(true); }; settingsButton.onclick = () => { rc.toggleMySettings(); }; mySettingsCloseBtn.onclick = () => { rc.toggleMySettings(); }; tabDevicesBtn.onclick = (e) => { rc.openTab(e, 'tabDevices'); }; tabRecordingBtn.onclick = (e) => { rc.openTab(e, 'tabRecording'); }; tabRoomBtn.onclick = (e) => { rc.openTab(e, 'tabRoom'); }; tabYoutubeBtn.onclick = (e) => { rc.openTab(e, 'tabYoutube'); }; tabAspectBtn.onclick = (e) => { rc.openTab(e, 'tabAspect'); }; tabStylingBtn.onclick = (e) => { rc.openTab(e, 'tabStyling'); }; chatButton.onclick = () => { rc.toggleChat(); }; chatCleanButton.onclick = () => { rc.chatClean(); }; chatSaveButton.onclick = () => { rc.chatSave(); }; chatCloseButton.onclick = () => { rc.toggleChat(); }; chatSendButton.onclick = () => { rc.sendMessage(); }; chatEmojiButton.onclick = () => { rc.toggleChatEmoji(); }; chatSpeechStartButton.onclick = () => { startSpeech(true); }; chatSpeechStopButton.onclick = () => { startSpeech(false); }; fullScreenButton.onclick = () => { rc.toggleFullScreen(); }; startRecButton.onclick = () => { rc.startRecording(); }; stopRecButton.onclick = () => { rc.stopRecording(); }; pauseRecButton.onclick = () => { rc.pauseRecording(); }; resumeRecButton.onclick = () => { rc.resumeRecording(); }; swapCameraButton.onclick = () => { rc.closeThenProduce(RoomClient.mediaType.video, null, true); }; raiseHandButton.onclick = () => { rc.updatePeerInfo(peer_name, rc.peer_id, 'hand', true); }; lowerHandButton.onclick = () => { rc.updatePeerInfo(peer_name, rc.peer_id, 'hand', false); }; startAudioButton.onclick = () => { rc.produce(RoomClient.mediaType.audio, microphoneSelect.value); rc.updatePeerInfo(peer_name, rc.peer_id, 'audio', true); // rc.resumeProducer(RoomClient.mediaType.audio); }; stopAudioButton.onclick = () => { rc.closeProducer(RoomClient.mediaType.audio); rc.updatePeerInfo(peer_name, rc.peer_id, 'audio', false); // rc.pauseProducer(RoomClient.mediaType.audio); }; startVideoButton.onclick = () => { rc.produce(RoomClient.mediaType.video, videoSelect.value); // rc.resumeProducer(RoomClient.mediaType.video); }; stopVideoButton.onclick = () => { rc.closeProducer(RoomClient.mediaType.video); // rc.pauseProducer(RoomClient.mediaType.video); }; startScreenButton.onclick = () => { rc.produce(RoomClient.mediaType.screen); }; stopScreenButton.onclick = () => { rc.closeProducer(RoomClient.mediaType.screen); }; fileShareButton.onclick = () => { rc.selectFileToShare(rc.peer_id); }; youTubeShareButton.onclick = () => { rc.youTubeShareVideo(); }; youTubeCloseBtn.onclick = () => { rc.closeYouTube(true); }; sendAbortBtn.onclick = () => { rc.abortFileTransfer(); }; receiveHideBtn.onclick = () => { rc.hideFileTransfer(); }; whiteboardButton.onclick = () => { toggleWhiteboard(); }; whiteboardPencilBtn.onclick = () => { whiteboardIsDrawingMode(true); }; whiteboardObjectBtn.onclick = () => { whiteboardIsDrawingMode(false); }; whiteboardUndoBtn.onclick = () => { whiteboardAction(getWhiteboardAction('undo')); }; whiteboardRedoBtn.onclick = () => { whiteboardAction(getWhiteboardAction('redo')); }; whiteboardSaveBtn.onclick = () => { wbCanvasSaveImg(); }; whiteboardImgFileBtn.onclick = () => { whiteboardAddObj('imgFile'); }; whiteboardImgUrlBtn.onclick = () => { whiteboardAddObj('imgUrl'); }; whiteboardTextBtn.onclick = () => { whiteboardAddObj('text'); }; whiteboardLineBtn.onclick = () => { whiteboardAddObj('line'); }; whiteboardRectBtn.onclick = () => { whiteboardAddObj('rect'); }; whiteboardCircleBtn.onclick = () => { whiteboardAddObj('circle'); }; whiteboardEraserBtn.onclick = () => { whiteboardIsEraser(true); }; whiteboardCleanBtn.onclick = () => { confirmClearBoard(); }; whiteboardCloseBtn.onclick = () => { whiteboardAction(getWhiteboardAction('close')); }; participantsButton.onclick = () => { rc.toggleMySettings(); getRoomParticipants(); }; participantsRefreshBtn.onclick = () => { getRoomParticipants(true); }; participantsCloseBtn.onclick = () => { toggleParticipants(); }; lockRoomButton.onclick = () => { rc.roomAction('lock'); }; unlockRoomButton.onclick = () => { rc.roomAction('unlock'); }; aboutButton.onclick = () => { showAbout(); }; } // #################################################### // HTML SELECTS // #################################################### function handleSelects() { // devices options microphoneSelect.onchange = () => { rc.closeThenProduce(RoomClient.mediaType.audio, microphoneSelect.value); }; speakerSelect.onchange = () => { rc.attachSinkId(rc.myVideoEl, speakerSelect.value); }; videoSelect.onchange = () => { rc.closeThenProduce(RoomClient.mediaType.video, videoSelect.value); }; // styling BtnsAspectRatio.onchange = () => { setAspectRatio(BtnsAspectRatio.value); }; BtnVideoObjectFit.onchange = () => { handleVideoObjectFit(BtnVideoObjectFit.value); }; // cover BtnVideoObjectFit.selectedIndex = 2; selectTheme.onchange = () => { setTheme(selectTheme.value); }; BtnsBarPosition.onchange = () => { rc.changeBtnsBarPosition(BtnsBarPosition.value); }; // whiteboard options wbDrawingColorEl.onchange = () => { wbCanvas.freeDrawingBrush.color = wbDrawingColorEl.value; whiteboardIsDrawingMode(true); }; wbBackgroundColorEl.onchange = () => { let data = { peer_name: peer_name, action: 'bgcolor', color: wbBackgroundColorEl.value, }; whiteboardAction(data); }; } // #################################################### // HTML INPUTS // #################################################### function handleInputs() { chatMessage.onkeyup = (e) => { if (e.keyCode === 13) { e.preventDefault(); chatSendButton.click(); } }; chatMessage.oninput = function () { let chatInputEmoji = { '<3': '\u2764\uFE0F', ' { chatMessage.value += e.detail.emoji.unicode; rc.toggleChatEmoji(); }); } // #################################################### // ROOM CLIENT EVENT LISTNERS // #################################################### function handleRoomClientEvents() { rc.on(RoomClient.EVENTS.startRec, () => { console.log('Room Client start recoding'); hide(startRecButton); show(stopRecButton); show(pauseRecButton); startRecordingTimer(); }); rc.on(RoomClient.EVENTS.pauseRec, () => { console.log('Room Client pause recoding'); hide(pauseRecButton); show(resumeRecButton); }); rc.on(RoomClient.EVENTS.resumeRec, () => { console.log('Room Client resume recoding'); hide(resumeRecButton); show(pauseRecButton); }); rc.on(RoomClient.EVENTS.stopRec, () => { console.log('Room Client stop recoding'); hide(stopRecButton); hide(pauseRecButton); hide(resumeRecButton); show(startRecButton); stopRecordingTimer(); }); rc.on(RoomClient.EVENTS.raiseHand, () => { console.log('Room Client raise hand'); hide(raiseHandButton); show(lowerHandButton); setColor(lowerHandButton, 'green'); }); rc.on(RoomClient.EVENTS.lowerHand, () => { console.log('Room Client lower hand'); hide(lowerHandButton); show(raiseHandButton); }); rc.on(RoomClient.EVENTS.startAudio, () => { console.log('Room Client start audio'); hide(startAudioButton); show(stopAudioButton); setColor(startAudioButton, 'red'); }); rc.on(RoomClient.EVENTS.pauseAudio, () => { console.log('Room Client pause audio'); hide(stopAudioButton); show(startAudioButton); }); rc.on(RoomClient.EVENTS.resumeAudio, () => { console.log('Room Client resume audio'); hide(startAudioButton); show(stopAudioButton); }); rc.on(RoomClient.EVENTS.stopAudio, () => { console.log('Room Client stop audio'); hide(stopAudioButton); show(startAudioButton); }); rc.on(RoomClient.EVENTS.startVideo, () => { console.log('Room Client start video'); hide(startVideoButton); show(stopVideoButton); setColor(startVideoButton, 'red'); }); rc.on(RoomClient.EVENTS.pauseVideo, () => { console.log('Room Client pause video'); hide(stopVideoButton); show(startVideoButton); }); rc.on(RoomClient.EVENTS.resumeVideo, () => { console.log('Room Client resume video'); hide(startVideoButton); show(stopVideoButton); }); rc.on(RoomClient.EVENTS.stopVideo, () => { console.log('Room Client stop audio'); hide(stopVideoButton); show(startVideoButton); }); rc.on(RoomClient.EVENTS.startScreen, () => { console.log('Room Client start screen'); hide(startScreenButton); show(stopScreenButton); }); rc.on(RoomClient.EVENTS.pauseScreen, () => { console.log('Room Client pause screen'); }); rc.on(RoomClient.EVENTS.resumeScreen, () => { console.log('Room Client resume screen'); }); rc.on(RoomClient.EVENTS.stopScreen, () => { console.log('Room Client stop screen'); hide(stopScreenButton); show(startScreenButton); }); rc.on(RoomClient.EVENTS.roomLock, () => { console.log('Room Client lock room'); hide(lockRoomButton); show(unlockRoomButton); setColor(unlockRoomButton, 'red'); }); rc.on(RoomClient.EVENTS.roomUnlock, () => { console.log('Room Client unlock room'); hide(unlockRoomButton); show(lockRoomButton); }); rc.on(RoomClient.EVENTS.exitRoom, () => { console.log('Room Client leave room'); if (surveyActive) { openURL(url.survey); } else { openURL('/newroom'); } }); } // #################################################### // UTILITY // #################################################### function userLog(icon, message, position, timer = 3000) { const Toast = Swal.mixin({ background: swalBackground, toast: true, position: position, showConfirmButton: false, timer: timer, }); Toast.fire({ icon: icon, title: message, }); } function saveDataToFile(dataURL, fileName) { const a = document.createElement('a'); a.style.display = 'none'; a.href = dataURL; a.download = fileName; document.body.appendChild(a); a.click(); setTimeout(() => { document.body.removeChild(a); window.URL.revokeObjectURL(dataURL); }, 100); } function getDataTimeString() { const d = new Date(); const date = d.toISOString().split('T')[0]; const time = d.toTimeString().split(' ')[0]; return `${date}-${time}`; } function showButtons() { if (isButtonsVisible || (rc.isMobileDevice && rc.isChatOpen) || (rc.isMobileDevice && rc.isMySettingsOpen)) return; control.style.display = 'flex'; isButtonsVisible = true; setTimeout(() => { control.style.display = 'none'; isButtonsVisible = false; }, 10000); } // #################################################### // UTILITY // #################################################### async function sound(name) { let sound = '../sounds/' + name + '.wav'; let audio = new Audio(sound); try { await audio.play(); } catch (err) { return false; } } function isImageURL(url) { return url.match(/\.(jpeg|jpg|gif|png|tiff|bmp)$/) != null; } function openURL(url, blank = false) { blank ? window.open(url, '_blank') : (window.location.href = url); } // #################################################### // HANDLE WHITEBOARD // #################################################### function toggleWhiteboard() { if (!wbIsOpen) rc.sound('open'); let whiteboard = rc.getId('whiteboard'); whiteboard.classList.toggle('show'); whiteboard.style.top = '50%'; whiteboard.style.left = '50%'; wbIsOpen = wbIsOpen ? false : true; } function setupWhiteboard() { setupWhiteboardCanvas(); setupWhiteboardCanvasSize(); setupWhiteboardLocalListners(); } function setupWhiteboardCanvas() { wbCanvas = new fabric.Canvas('wbCanvas'); wbCanvas.freeDrawingBrush.color = '#FFFFFF'; wbCanvas.freeDrawingBrush.width = 3; whiteboardIsDrawingMode(true); } function setupWhiteboardCanvasSize() { let optimalSize = [wbWidth, wbHeight]; let scaleFactorX = window.innerWidth / optimalSize[0]; let scaleFactorY = window.innerHeight / optimalSize[1]; if (scaleFactorX < scaleFactorY && scaleFactorX < 1) { wbCanvas.setWidth(optimalSize[0] * scaleFactorX); wbCanvas.setHeight(optimalSize[1] * scaleFactorX); wbCanvas.setZoom(scaleFactorX); setWhiteboardSize(optimalSize[0] * scaleFactorX, optimalSize[1] * scaleFactorX); } else if (scaleFactorX > scaleFactorY && scaleFactorY < 1) { wbCanvas.setWidth(optimalSize[0] * scaleFactorY); wbCanvas.setHeight(optimalSize[1] * scaleFactorY); wbCanvas.setZoom(scaleFactorY); setWhiteboardSize(optimalSize[0] * scaleFactorY, optimalSize[1] * scaleFactorY); } else { wbCanvas.setWidth(optimalSize[0]); wbCanvas.setHeight(optimalSize[1]); wbCanvas.setZoom(1); setWhiteboardSize(optimalSize[0], optimalSize[1]); } wbCanvas.calcOffset(); wbCanvas.renderAll(); } function setWhiteboardSize(w, h) { document.documentElement.style.setProperty('--wb-width', w); document.documentElement.style.setProperty('--wb-height', h); } function whiteboardIsDrawingMode(status) { wbCanvas.isDrawingMode = status; if (status) { setColor(whiteboardPencilBtn, 'green'); setColor(whiteboardObjectBtn, 'white'); setColor(whiteboardEraserBtn, 'white'); wbIsEraser = false; } else { setColor(whiteboardPencilBtn, 'white'); setColor(whiteboardObjectBtn, 'green'); } } function whiteboardIsEraser(status) { whiteboardIsDrawingMode(false); wbIsEraser = status; setColor(whiteboardEraserBtn, wbIsEraser ? 'green' : 'white'); } function whiteboardAddObj(type) { switch (type) { case 'imgUrl': Swal.fire({ background: swalBackground, title: 'Image URL', input: 'text', showCancelButton: true, confirmButtonText: 'OK', }).then((result) => { if (result.isConfirmed) { let wbCanvasImgURL = result.value; if (isImageURL(wbCanvasImgURL)) { fabric.Image.fromURL(wbCanvasImgURL, function (myImg) { addWbCanvasObj(myImg); }); } else { userLog('error', 'The URL is not a valid image', 'top-end'); } } }); break; case 'imgFile': Swal.fire({ allowOutsideClick: false, background: swalBackground, position: 'center', title: 'Select the image', input: 'file', inputAttributes: { accept: wbImageInput, 'aria-label': 'Select the image', }, showDenyButton: true, confirmButtonText: `OK`, denyButtonText: `Cancel`, }).then((result) => { if (result.isConfirmed) { let wbCanvasImg = result.value; if (wbCanvasImg && wbCanvasImg.size > 0) { let reader = new FileReader(); reader.onload = function (event) { let imgObj = new Image(); imgObj.src = event.target.result; imgObj.onload = function () { let image = new fabric.Image(imgObj); image.set({ top: 0, left: 0 }).scale(0.3); addWbCanvasObj(image); }; }; reader.readAsDataURL(wbCanvasImg); } else { userLog('error', 'File not selected or empty', 'top-end'); } } }); break; case 'text': Swal.fire({ background: swalBackground, title: 'Enter the text', input: 'text', showCancelButton: true, confirmButtonText: 'OK', }).then((result) => { if (result.isConfirmed) { let wbCanvasText = result.value; if (wbCanvasText) { const text = new fabric.Text(wbCanvasText, { top: 0, left: 0, fontFamily: 'Comfortaa', fill: wbCanvas.freeDrawingBrush.color, strokeWidth: wbCanvas.freeDrawingBrush.width, stroke: wbCanvas.freeDrawingBrush.color, }); addWbCanvasObj(text); } } }); break; case 'line': const line = new fabric.Line([50, 100, 200, 200], { top: 0, left: 0, fill: wbCanvas.freeDrawingBrush.color, strokeWidth: wbCanvas.freeDrawingBrush.width, stroke: wbCanvas.freeDrawingBrush.color, }); addWbCanvasObj(line); break; case 'circle': const circle = new fabric.Circle({ radius: 50, fill: 'transparent', stroke: wbCanvas.freeDrawingBrush.color, strokeWidth: wbCanvas.freeDrawingBrush.width, }); addWbCanvasObj(circle); break; case 'rect': const rect = new fabric.Rect({ top: 0, left: 0, width: 150, height: 100, fill: 'transparent', stroke: wbCanvas.freeDrawingBrush.color, strokeWidth: wbCanvas.freeDrawingBrush.width, }); addWbCanvasObj(rect); break; } } function addWbCanvasObj(obj) { if (obj) { wbCanvas.add(obj); whiteboardIsDrawingMode(false); wbCanvasToJson(); } } function setupWhiteboardLocalListners() { wbCanvas.on('mouse:down', function (e) { mouseDown(e); }); wbCanvas.on('mouse:up', function () { mouseUp(); }); wbCanvas.on('mouse:move', function () { mouseMove(); }); wbCanvas.on('object:added', function () { objectAdded(); }); } function mouseDown(e) { wbIsDrawing = true; if (wbIsEraser && e.target) { wbCanvas.remove(e.target); return; } } function mouseUp() { wbIsDrawing = false; wbCanvasToJson(); } function mouseMove() { if (wbIsEraser) { wbCanvas.hoverCursor = 'not-allowed'; return; } else { wbCanvas.hoverCursor = 'move'; } if (!wbIsDrawing) return; } function objectAdded() { if (!wbIsRedoing) wbPop = []; wbIsRedoing = false; } function wbCanvasBackgroundColor(color) { document.documentElement.style.setProperty('--wb-bg', color); wbBackgroundColorEl.value = color; wbCanvas.setBackgroundColor(color); wbCanvas.renderAll(); } function wbCanvasUndo() { if (wbCanvas._objects.length > 0) { wbPop.push(wbCanvas._objects.pop()); wbCanvas.renderAll(); } } function wbCanvasRedo() { if (wbPop.length > 0) { wbIsRedoing = true; wbCanvas.add(wbPop.pop()); } } function wbCanvasSaveImg() { const dataURL = wbCanvas.toDataURL({ width: wbCanvas.getWidth(), height: wbCanvas.getHeight(), left: 0, top: 0, format: 'png', }); const dataNow = getDataTimeString(); const fileName = `whiteboard-${dataNow}.png`; saveDataToFile(dataURL, fileName); } function wbCanvasToJson() { if (rc.thereIsParticipants()) { let wbCanvasJson = JSON.stringify(wbCanvas.toJSON()); rc.socket.emit('wbCanvasToJson', wbCanvasJson); } } function JsonToWbCanvas(json) { if (!wbIsOpen) toggleWhiteboard(); wbCanvas.loadFromJSON(json); wbCanvas.renderAll(); } function getWhiteboardAction(action) { return { peer_name: peer_name, action: action, }; } function confirmClearBoard() { Swal.fire({ background: swalBackground, imageUrl: image.delete, position: 'center', title: 'Clean the board', text: 'Are you sure you want to clean the board?', showDenyButton: true, confirmButtonText: `Yes`, denyButtonText: `No`, showClass: { popup: 'animate__animated animate__fadeInDown', }, hideClass: { popup: 'animate__animated animate__fadeOutUp', }, }).then((result) => { if (result.isConfirmed) { whiteboardAction(getWhiteboardAction('clear')); } }); } function whiteboardAction(data, emit = true) { if (emit) { if (rc.thereIsParticipants()) { rc.socket.emit('whiteboardAction', data); } } else { userLog( 'info', `${data.peer_name} whiteboard action: ${data.action}`, 'top-end', ); } switch (data.action) { case 'bgcolor': wbCanvasBackgroundColor(data.color); break; case 'undo': wbCanvasUndo(); break; case 'redo': wbCanvasRedo(); break; case 'clear': wbCanvas.clear(); break; case 'close': if (wbIsOpen) toggleWhiteboard(); break; //... } } // #################################################### // HANDLE PARTICIPANTS // #################################################### function toggleParticipants() { let participants = rc.getId('participants'); participants.classList.toggle('show'); participants.style.top = '50%'; participants.style.left = '50%'; } async function getRoomParticipants(refresh = false) { let room_info = await rc.getRoomInfo(); let peers = new Map(JSON.parse(room_info.peers)); let table = await getParticipantsTable(peers); participantsCount = peers.size; roomParticipants.innerHTML = table; refreshParticipantsCount(participantsCount); if (!refresh) { toggleParticipants(); sound('open'); } } async function getParticipantsTable(peers) { let table = `
`; table += ` `; for (let peer of Array.from(peers.keys())) { let peer_info = peers.get(peer).peer_info; let peer_name = peer_info.peer_name; let peer_audio = peer_info.peer_audio ? _PEER.audioOn : _PEER.audioOff; let peer_video = peer_info.peer_video ? _PEER.videoOn : _PEER.videoOff; let peer_hand = peer_info.peer_hand ? _PEER.raiseHand : _PEER.lowerHand; let peer_eject = _PEER.ejectPeer; let peer_sendFile = _PEER.sendFile; let peer_sendMsg = _PEER.sendMsg; let peer_id = peer_info.peer_id; let avatarImg = getParticipantAvatar(peer_name); if (rc.peer_id === peer_id) { table += ` `; } else { table += ` `; } } table += `
   all
  ${peer_name} (me)
  ${peer_name}
`; return table; } function refreshParticipantsCount(count) { participantsTitle.innerHTML = ` Participants ( ${count} )`; adaptAspectRatio(count); } function getParticipantAvatar(peerName) { return cfg.msgAvatar + '?name=' + peerName + '&size=32' + '&background=random&rounded=true'; } // #################################################### // HANDLE VIDEO OBJ FIT // #################################################### function handleVideoObjectFit(value) { document.documentElement.style.setProperty('--videoObjFit', value); } // #################################################### // SET THEME // #################################################### function setTheme(theme) { switch (theme) { case 'dark': swalBackground = 'radial-gradient(#393939, #000000)'; document.documentElement.style.setProperty('--body-bg', 'radial-gradient(#393939, #000000)'); document.documentElement.style.setProperty('--msger-bg', 'radial-gradient(#393939, #000000)'); document.documentElement.style.setProperty('--wb-bg', 'radial-gradient(#393939, #000000)'); break; case 'grey': swalBackground = 'radial-gradient(#666, #333)'; document.documentElement.style.setProperty('--body-bg', 'radial-gradient(#666, #333)'); document.documentElement.style.setProperty('--msger-bg', 'radial-gradient(#666, #333)'); document.documentElement.style.setProperty('--wb-bg', 'radial-gradient(#797979, #000)'); break; //... } } // #################################################### // HANDLE ASPECT RATIO // #################################################### function handleAspectRatio() { if (participantsCount > 1) { adaptAspectRatio(videoMediaContainer.childElementCount); } else { resizeVideoMedia(); } } function adaptAspectRatio(participantsCount) { /* ['0:0', '4:3', '16:9', '1:1', '1:2']; */ let desktop, mobile = 1; // desktop aspect ratio switch (participantsCount) { case 1: case 3: case 4: case 7: case 9: desktop = 2; // (16:9) break; case 5: case 6: case 10: case 11: desktop = 1; // (4:3) break; case 2: case 8: desktop = 3; // (1:1) break; default: desktop = 0; // (0:0) } // mobile aspect ratio switch (participantsCount) { case 3: case 9: case 10: mobile = 2; // (16:9) break; case 2: case 7: case 8: case 11: mobile = 1; // (4:3) break; case 1: case 4: case 5: case 6: mobile = 3; // (1:1) break; default: mobile = 3; // (1:1) } if (participantsCount > 11) { desktop = 1; // (4:3) mobile = 3; // (1:1) } BtnsAspectRatio.selectedIndex = DetectRTC.isMobileDevice ? mobile : desktop; setAspectRatio(BtnsAspectRatio.selectedIndex); } // #################################################### // ABOUT // #################################################### function showAbout() { sound('open'); Swal.fire({ background: swalBackground, imageUrl: swalImageUrl, imageWidth: 300, imageHeight: 150, position: 'center', html: `
Open Source project on

mirotalksfu-github




Contact: Miroslav Pejic
`, showClass: { popup: 'animate__animated animate__fadeInUp', }, hideClass: { popup: 'animate__animated animate__fadeOutUp', }, }); }