/* 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, useHistory, Link } from "react-router-dom"; import { Button, CopyButton, HangupButton, MicButton, VideoButton, ScreenshareButton, LinkButton, } from "./button"; import { Header, LeftNav, RightNav, RoomHeaderInfo } from "./Header"; import { GroupCallState } from "matrix-js-sdk/src/webrtc/groupCall"; import VideoGrid, { useVideoGridLayout, } from "matrix-react-sdk/src/components/views/voip/GroupCallView/VideoGrid"; import SimpleVideoGrid from "matrix-react-sdk/src/components/views/voip/GroupCallView/SimpleVideoGrid"; 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 { getAvatarUrl, getRoomUrl, useClient, useLoadGroupCall, useProfile, } from "./ConferenceCallManagerHooks"; import { ErrorView, LoadingView, FullScreenView } from "./FullScreenView"; import { GroupCallInspector } from "./GroupCallInspector"; import * as Sentry from "@sentry/react"; import { OverflowMenu } from "./OverflowMenu"; import { GridLayoutMenu } from "./GridLayoutMenu"; import { UserMenu } from "./UserMenu"; import classNames from "classnames"; import { Avatar } from "./Avatar"; const canScreenshare = "getDisplayMedia" in navigator.mediaDevices; // There is currently a bug in Safari our our code with cloning and sending MediaStreams // or with getUsermedia and getDisplaymedia being used within the same session. // For now we can disable screensharing in Safari. const isSafari = /^((?!chrome|android).)*safari/i.test(navigator.userAgent); export function Room() { const [registeringGuest, setRegisteringGuest] = useState(false); const [registrationError, setRegistrationError] = useState(); const { loading, isAuthenticated, error, client, registerGuest, isGuest, isPasswordlessUser, } = useClient(); useEffect(() => { if (!loading && !isAuthenticated) { setRegisteringGuest(true); registerGuest() .then(() => { setRegisteringGuest(false); }) .catch((error) => { setRegistrationError(error); setRegisteringGuest(false); }); } }, [loading, isAuthenticated]); if (loading || registeringGuest) { return ; } if (registrationError || error) { return ; } return ( ); } export function GroupCall({ client, isGuest, isPasswordlessUser }) { const { roomId: maybeRoomId } = useParams(); const { hash, search } = useLocation(); const [simpleGrid, viaServers] = useMemo(() => { const params = new URLSearchParams(search); return [params.has("simple"), params.getAll("via")]; }, [search]); const roomId = maybeRoomId || hash; const { loading, error, groupCall } = useLoadGroupCall( client, roomId, viaServers ); useEffect(() => { window.groupCall = groupCall; }, [groupCall]); if (loading) { return ; } if (error) { return ; } return ( ); } export function GroupCallView({ client, isGuest, isPasswordlessUser, roomId, groupCall, simpleGrid, }) { const [showInspector, setShowInspector] = useState(false); const { state, error, activeSpeaker, userMediaFeeds, microphoneMuted, localVideoMuted, localCallFeed, initLocalCallFeed, enter, leave, toggleLocalVideoMuted, toggleMicrophoneMuted, toggleScreensharing, isScreensharing, localScreenshareFeed, screenshareFeeds, hasLocalParticipant, } = useGroupCall(groupCall); useEffect(() => { function onHangup(call) { if (call.hangupReason === "ice_failed") { Sentry.captureException(new Error("Call hangup due to ICE failure.")); } } function onError(error) { Sentry.captureException(error); } if (groupCall) { groupCall.on("hangup", onHangup); groupCall.on("error", onError); } return () => { if (groupCall) { groupCall.removeListener("hangup", onHangup); groupCall.removeListener("error", onError); } }; }, [groupCall]); const [left, setLeft] = useState(false); const history = useHistory(); const onLeave = useCallback(() => { leave(); if (!isGuest && !isPasswordlessUser) { history.push("/"); } else { setLeft(true); } }, [leave, history, isGuest]); if (error) { return ; } else if (state === GroupCallState.Entered) { return ( ); } else if (state === GroupCallState.Entering) { return ; } else if (left) { if (isPasswordlessUser) { return ; } else { return ; } } else { return ( ); } } export function LoadingRoomView() { return (

Loading room...

); } export function EnteringRoomView() { return (

Entering room...

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

Or

Copy call link and join later
Take me Home
); } function InRoomView({ client, isGuest, groupCall, roomName, microphoneMuted, localVideoMuted, toggleLocalVideoMuted, toggleMicrophoneMuted, userMediaFeeds, activeSpeaker, onLeave, toggleScreensharing, isScreensharing, screenshareFeeds, simpleGrid, setShowInspector, showInspector, roomId, }) { const [layout, setLayout] = useVideoGridLayout(); const items = useMemo(() => { const participants = []; for (const callFeed of userMediaFeeds) { participants.push({ id: callFeed.stream.id, usermediaCallFeed: callFeed, isActiveSpeaker: screenshareFeeds.length === 0 ? callFeed.userId === activeSpeaker : false, }); } for (const callFeed of screenshareFeeds) { const participant = participants.find( (p) => p.usermediaCallFeed.userId === callFeed.userId ); if (participant) { participant.screenshareCallFeed = callFeed; } } return participants; }, [userMediaFeeds, activeSpeaker, screenshareFeeds]); const onFocusTile = useCallback( (tiles, focusedTile) => { if (layout === "freedom") { return tiles.map((tile) => { if (tile === focusedTile) { return { ...tile, presenter: !tile.presenter }; } return tile; }); } else { return tiles; } }, [layout, setLayout] ); const renderAvatar = useCallback( (roomMember, width, height) => { const avatarUrl = roomMember.user?.avatarUrl; const size = Math.round(Math.min(width, height) / 2); return ( ); }, [client] ); return (
{!isGuest && }
{items.length === 0 ? (

Waiting for other participants...

) : simpleGrid ? ( ) : ( )}
{canScreenshare && !isSafari && ( )}
); } export function GuestCallEndedScreen() { return (

Your call is now ended

Why not finish by creating an account?

You'll be able to:

  • Easily access all your previous call links
  • Set a username and avatar
Create account
Not now, return to home screen
); } export function PasswordlessUserCallEndedScreen({ client }) { const { displayName } = useProfile(client); return (

{displayName}, your call is now ended

Why not finish by setting up a password to keep your account?

You'll be able to keep your name and set an avatar for use on future calls

Create account
Not now, return to home screen
); }