element-call/src/Room.jsx

104 lines
3 KiB
React
Raw Normal View History

2021-07-27 19:27:59 +00:00
/*
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, useRef } from "react";
import styles from "./Room.module.css";
import { useParams } from "react-router-dom";
import { useVideoRoom } from "./ConferenceCallManagerHooks";
export function Room({ manager }) {
const { roomId } = useParams();
2021-07-27 20:26:18 +00:00
const { loading, joined, room, participants, error, joinCall, leaveCall } =
useVideoRoom(manager, roomId);
2021-07-27 19:27:59 +00:00
return (
<div className={styles.room}>
{!loading && room && (
<div className={styles.header}>
<h3>{room.name}</h3>
<div className={styles.userNav}>
<h5>{manager.client.getUserId()}</h5>
</div>
</div>
)}
{loading && (
<div className={styles.centerMessage}>
<p>Loading room...</p>
</div>
)}
{error && <div className={styles.centerMessage}>{error.message}</div>}
{!loading && room && !joined && (
<div className={styles.joinRoom}>
<h3>Members:</h3>
<ul>
{room.getMembers().map((member) => (
<li key={member.userId}>{member.name}</li>
))}
</ul>
<button onClick={joinCall}>Join Call</button>
</div>
)}
{!loading && room && joined && participants.length === 0 && (
<div className={styles.centerMessage}>
<p>Waiting for other participants...</p>
</div>
)}
{!loading && room && joined && participants.length > 0 && (
<div className={styles.roomContainer}>
{participants.map((participant) => (
2021-07-27 20:26:18 +00:00
<Participant key={participant.userId} {...participant} />
2021-07-27 19:27:59 +00:00
))}
</div>
)}
2021-07-27 20:26:18 +00:00
{!loading && room && joined && (
<div className={styles.footer}>
<button className={styles.leaveButton} onClick={leaveCall}>
Leave Call
</button>
</div>
)}
2021-07-27 19:27:59 +00:00
</div>
);
}
2021-07-27 20:26:18 +00:00
function Participant({ userId, feed, muted, local }) {
2021-07-27 19:27:59 +00:00
const videoRef = useRef();
useEffect(() => {
2021-07-27 20:26:18 +00:00
if (feed) {
if (muted) {
2021-07-27 19:27:59 +00:00
videoRef.current.muted = true;
}
2021-07-27 20:26:18 +00:00
videoRef.current.srcObject = feed.stream;
2021-07-27 19:27:59 +00:00
videoRef.current.play();
2021-07-27 20:26:18 +00:00
} else {
videoRef.current.srcObject = null;
2021-07-27 19:27:59 +00:00
}
2021-07-27 20:26:18 +00:00
}, [feed]);
2021-07-27 19:27:59 +00:00
return (
<div className={styles.participant}>
<video ref={videoRef}></video>
<div className={styles.participantLabel}>
<p>
2021-07-27 20:26:18 +00:00
{userId} {local && "(You)"}
2021-07-27 19:27:59 +00:00
</p>
</div>
</div>
);
}