/* Copyright 2021 New Vector Ltd Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ import React, { useCallback, useEffect, useMemo, useState } from "react"; import styles from "./Room.module.css"; import { useLocation, useParams } from "react-router-dom"; import { HangupButton, MicButton, VideoButton, LayoutToggleButton, ScreenshareButton, DropdownButton, } from "./RoomButton"; import { Header, LeftNav, RightNav, CenterNav } from "./Header"; import { Button } from "./Input"; import { GroupCallState } from "matrix-js-sdk/src/webrtc/groupCall"; import VideoGrid, { useVideoGridLayout, } from "matrix-react-sdk/src/components/views/voip/GroupCallView/VideoGrid"; import "matrix-react-sdk/res/css/views/voip/GroupCallView/_VideoGrid.scss"; import { useGroupCall } from "matrix-react-sdk/src/hooks/useGroupCall"; import { useCallFeed } from "matrix-react-sdk/src/hooks/useCallFeed"; import { useMediaStream } from "matrix-react-sdk/src/hooks/useMediaStream"; import { fetchGroupCall } from "./ConferenceCallManagerHooks"; import { ErrorModal } from "./ErrorModal"; function useLoadGroupCall(client, roomId) { const [state, setState] = useState({ loading: true, error: undefined, groupCall: undefined, }); useEffect(() => { setState({ loading: true }); fetchGroupCall(client, roomId, 30000) .then((groupCall) => setState({ loading: false, groupCall })) .catch((error) => setState({ loading: false, error })); }, [roomId]); return state; } export function Room({ client }) { const { roomId: maybeRoomId } = useParams(); const { hash } = useLocation(); const roomId = maybeRoomId || hash; const { loading, error, groupCall } = useLoadGroupCall(client, roomId); if (loading) { return (
); } if (error) { return (
); } return (
); } export function GroupCallView({ client, groupCall }) { const { state, error, activeSpeaker, userMediaFeeds, microphoneMuted, localVideoMuted, localCallFeed, initLocalCallFeed, enter, leave, toggleLocalVideoMuted, toggleMicrophoneMuted, toggleScreensharing, isScreensharing, localScreenshareFeed, screenshareFeeds, } = useGroupCall(groupCall); if (error) { return ; } else if (state === GroupCallState.Entered) { return ( ); } else if (state === GroupCallState.Entering) { return ; } else { return ( ); } } export function LoadingRoomView() { return ( <>

Loading room...

); } export function EnteringRoomView() { return ( <>

Entering room...

); } function RoomSetupView({ roomName, state, onInitLocalCallFeed, onEnter, localCallFeed, microphoneMuted, localVideoMuted, toggleLocalVideoMuted, toggleMicrophoneMuted, }) { const { stream } = useCallFeed(localCallFeed); const videoRef = useMediaStream(stream, true); useEffect(() => { onInitLocalCallFeed(); }, [onInitLocalCallFeed]); return ( <>

{roomName}

{state === GroupCallState.LocalCallFeedUninitialized && (

Webcam/microphone permissions needed to join the call.

)} {state === GroupCallState.InitializingLocalCallFeed && (

Accept webcam/microphone permissions to join the call.

)}
{state === GroupCallState.LocalCallFeedInitialized && (
)}
); } function useMediaHandler(client) { const [{ audioInput, videoInput, audioInputs, videoInputs }, setState] = useState({ audioInput: null, videoInput: null, audioInputs: [], videoInputs: [], }); useEffect(() => { function updateDevices() { navigator.mediaDevices.enumerateDevices().then((devices) => { const audioInputs = devices.filter( (device) => device.kind === "audioinput" ); const videoInputs = devices.filter( (device) => device.kind === "videoinput" ); setState((prevState) => ({ ...prevState, audioInputs, videoInputs, })); }); } updateDevices(); navigator.mediaDevices.addEventListener("devicechange", updateDevices); return () => { navigator.mediaDevices.removeEventListener("devicechange", updateDevices); }; }, []); const setAudioInput = useCallback( (deviceId) => { setState((prevState) => ({ ...prevState, audioInput: deviceId })); client.getMediaHandler().setAudioInput(deviceId); }, [client] ); const setVideoInput = useCallback( (deviceId) => { setState((prevState) => ({ ...prevState, videoInput: deviceId })); client.getMediaHandler().setVideoInput(deviceId); }, [client] ); return { audioInput, audioInputs, setAudioInput, videoInput, videoInputs, setVideoInput, }; } function InRoomView({ client, roomName, microphoneMuted, localVideoMuted, toggleLocalVideoMuted, toggleMicrophoneMuted, userMediaFeeds, activeSpeaker, onLeave, toggleScreensharing, isScreensharing, screenshareFeeds, }) { const [layout, toggleLayout] = useVideoGridLayout(); const { audioInput, audioInputs, setAudioInput, videoInput, videoInputs, setVideoInput, } = useMediaHandler(client); useEffect(() => { if (screenshareFeeds.length > 0 && layout === "gallery") { toggleLayout(); } }, [screenshareFeeds]); const items = useMemo(() => { const participants = []; for (const callFeed of userMediaFeeds) { participants.push({ id: callFeed.userId, callFeed, isActiveSpeaker: screenshareFeeds.length === 0 ? callFeed.userId === activeSpeaker : false, }); } for (const callFeed of screenshareFeeds) { participants.push({ id: callFeed.userId + "-screenshare", callFeed, isActiveSpeaker: true, }); } return participants; }, [userMediaFeeds, activeSpeaker, screenshareFeeds]); const onFocusTile = useCallback( (tiles, focusedTile) => { if (layout === "gallery") { return tiles.map((tile) => { if (tile === focusedTile) { return { ...tile, presenter: !tile.presenter }; } return tile; }); } else { toggleLayout(); return tiles.map((tile) => { if (tile === focusedTile) { return { ...tile, presenter: true }; } return { ...tile, presenter: false }; }); } }, [layout, toggleLayout] ); return ( <>

{roomName}

{items.length === 0 ? (

Waiting for other participants...

) : ( )}
setAudioInput(value)} options={audioInputs.map(({ label, deviceId }) => ({ label, value: deviceId, }))} > setVideoInput(value)} options={videoInputs.map(({ label, deviceId }) => ({ label, value: deviceId, }))} >
); }