/* 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, { useEffect, useMemo, useState } from "react"; import styles from "./Room.module.css"; import { useParams } from "react-router-dom"; import { HangupButton, MicButton, VideoButton, LayoutToggleButton, } from "./RoomButton"; import { Header, LeftNav, RightNav, CenterNav } from "./Header"; import { Button, ErrorMessage } 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"; 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 } = useParams(); const { loading, error, groupCall } = useLoadGroupCall(client, roomId); if (loading) { return (
Loading room...
Entering room...
Webcam permissions needed to join the call.
)} {state === GroupCallState.InitializingLocalCallFeed && (Accept Webcam permissions to join the call.
)}Waiting for other participants...