2022-05-04 17:09:48 +01:00
|
|
|
/*
|
2023-01-03 16:55:26 +00:00
|
|
|
Copyright 2022 New Vector Ltd
|
2022-05-04 17:09:48 +01:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2023-02-01 11:32:10 -05:00
|
|
|
import React, { ForwardedRef, forwardRef } from "react";
|
|
|
|
import { animated, SpringValue } from "@react-spring/web";
|
2022-04-07 14:22:36 -07:00
|
|
|
import classNames from "classnames";
|
2022-10-10 09:19:10 -04:00
|
|
|
import { useTranslation } from "react-i18next";
|
2023-06-02 14:49:11 +02:00
|
|
|
import { LocalParticipant, RemoteParticipant, Track } from "livekit-client";
|
2023-06-02 20:15:29 +02:00
|
|
|
import {
|
|
|
|
ConnectionQualityIndicator,
|
|
|
|
VideoTrack,
|
|
|
|
useMediaTrack,
|
|
|
|
} from "@livekit/components-react";
|
2022-08-12 19:27:34 +02:00
|
|
|
|
2022-04-07 14:22:36 -07:00
|
|
|
import styles from "./VideoTile.module.css";
|
2023-05-12 14:32:16 -04:00
|
|
|
import { ReactComponent as MicIcon } from "../icons/Mic.svg";
|
2022-04-07 14:22:36 -07:00
|
|
|
import { ReactComponent as MicMutedIcon } from "../icons/MicMuted.svg";
|
|
|
|
|
2023-06-06 13:16:36 +02:00
|
|
|
export enum TileContent {
|
|
|
|
UserMedia = "user-media",
|
|
|
|
ScreenShare = "screen-share",
|
|
|
|
}
|
|
|
|
|
2022-08-12 19:27:34 +02:00
|
|
|
interface Props {
|
|
|
|
avatar?: JSX.Element;
|
|
|
|
className?: string;
|
2023-06-06 13:16:36 +02:00
|
|
|
name: string;
|
2023-06-02 14:49:11 +02:00
|
|
|
sfuParticipant: LocalParticipant | RemoteParticipant;
|
2023-06-06 13:16:36 +02:00
|
|
|
content: TileContent;
|
2022-08-12 19:27:34 +02:00
|
|
|
showOptions?: boolean;
|
|
|
|
isLocal?: boolean;
|
|
|
|
disableSpeakingIndicator?: boolean;
|
2023-02-13 21:57:57 -05:00
|
|
|
opacity?: SpringValue<number>;
|
|
|
|
scale?: SpringValue<number>;
|
|
|
|
shadow?: SpringValue<number>;
|
2023-05-12 14:04:23 -04:00
|
|
|
shadowSpread?: SpringValue<number>;
|
2023-02-13 21:57:57 -05:00
|
|
|
zIndex?: SpringValue<number>;
|
|
|
|
x?: SpringValue<number>;
|
|
|
|
y?: SpringValue<number>;
|
|
|
|
width?: SpringValue<number>;
|
|
|
|
height?: SpringValue<number>;
|
2022-08-12 19:27:34 +02:00
|
|
|
}
|
|
|
|
|
2023-02-01 11:32:10 -05:00
|
|
|
export const VideoTile = forwardRef<HTMLElement, Props>(
|
2022-05-31 10:43:05 -04:00
|
|
|
(
|
|
|
|
{
|
2022-08-12 19:27:34 +02:00
|
|
|
name,
|
2023-06-09 17:22:34 -04:00
|
|
|
sfuParticipant,
|
|
|
|
content,
|
2022-05-31 10:43:05 -04:00
|
|
|
avatar,
|
2022-08-12 19:27:34 +02:00
|
|
|
className,
|
|
|
|
showOptions,
|
|
|
|
isLocal,
|
|
|
|
// TODO: disableSpeakingIndicator is not used atm.
|
|
|
|
disableSpeakingIndicator,
|
2023-02-01 11:32:10 -05:00
|
|
|
opacity,
|
|
|
|
scale,
|
|
|
|
shadow,
|
2023-05-12 14:04:23 -04:00
|
|
|
shadowSpread,
|
2023-02-01 11:32:10 -05:00
|
|
|
zIndex,
|
|
|
|
x,
|
|
|
|
y,
|
|
|
|
width,
|
|
|
|
height,
|
2022-05-31 10:43:05 -04:00
|
|
|
...rest
|
|
|
|
},
|
|
|
|
ref
|
|
|
|
) => {
|
2022-10-10 09:19:10 -04:00
|
|
|
const { t } = useTranslation();
|
|
|
|
|
2023-06-02 14:49:11 +02:00
|
|
|
const audioEl = React.useRef<HTMLAudioElement>(null);
|
|
|
|
const { isMuted: microphoneMuted } = useMediaTrack(
|
2023-06-06 13:16:36 +02:00
|
|
|
content === TileContent.UserMedia
|
|
|
|
? Track.Source.Microphone
|
|
|
|
: Track.Source.ScreenShareAudio,
|
2023-06-02 14:49:11 +02:00
|
|
|
sfuParticipant,
|
|
|
|
{
|
|
|
|
element: audioEl,
|
2022-09-22 17:35:23 -04:00
|
|
|
}
|
2023-06-02 14:49:11 +02:00
|
|
|
);
|
2022-10-21 17:24:56 +01:00
|
|
|
|
2022-05-31 10:43:05 -04:00
|
|
|
return (
|
|
|
|
<animated.div
|
|
|
|
className={classNames(styles.videoTile, className, {
|
2023-06-02 14:49:11 +02:00
|
|
|
[styles.isLocal]: sfuParticipant.isLocal,
|
|
|
|
[styles.speaking]: sfuParticipant.isSpeaking,
|
|
|
|
[styles.muted]: microphoneMuted,
|
2023-06-13 14:39:05 +02:00
|
|
|
[styles.screenshare]: content === TileContent.ScreenShare,
|
2022-05-31 10:43:05 -04:00
|
|
|
})}
|
2023-02-01 11:32:10 -05:00
|
|
|
style={{
|
|
|
|
opacity,
|
|
|
|
scale,
|
|
|
|
zIndex,
|
|
|
|
x,
|
|
|
|
y,
|
2023-02-13 21:57:57 -05:00
|
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
|
|
// @ts-ignore React does in fact support assigning custom properties,
|
|
|
|
// but React's types say no
|
|
|
|
"--tileWidth": width?.to((w) => `${w}px`),
|
|
|
|
"--tileHeight": height?.to((h) => `${h}px`),
|
2023-05-12 14:04:23 -04:00
|
|
|
"--tileShadow": shadow?.to((s) => `${s}px`),
|
|
|
|
"--tileShadowSpread": shadowSpread?.to((s) => `${s}px`),
|
2023-02-01 11:32:10 -05:00
|
|
|
}}
|
|
|
|
ref={ref as ForwardedRef<HTMLDivElement>}
|
2023-05-02 17:33:56 +01:00
|
|
|
data-testid="videoTile"
|
2022-05-31 10:43:05 -04:00
|
|
|
{...rest}
|
|
|
|
>
|
2023-06-02 19:12:28 +02:00
|
|
|
{!sfuParticipant.isCameraEnabled && (
|
2022-05-31 10:43:05 -04:00
|
|
|
<>
|
|
|
|
<div className={styles.videoMutedOverlay} />
|
|
|
|
{avatar}
|
|
|
|
</>
|
|
|
|
)}
|
2023-06-02 19:12:28 +02:00
|
|
|
{!false &&
|
2023-06-02 14:49:11 +02:00
|
|
|
(sfuParticipant.isScreenShareEnabled ? (
|
2022-09-14 19:05:05 -04:00
|
|
|
<div className={styles.presenterLabel}>
|
2022-10-10 09:19:10 -04:00
|
|
|
<span>{t("{{name}} is presenting", { name })}</span>
|
2022-09-14 19:05:05 -04:00
|
|
|
</div>
|
|
|
|
) : (
|
|
|
|
<div className={classNames(styles.infoBubble, styles.memberName)}>
|
2023-06-09 17:22:34 -04:00
|
|
|
{microphoneMuted ? <MicMutedIcon /> : <MicIcon />}
|
2023-06-02 20:07:15 +02:00
|
|
|
<span title={name}>{name}</span>
|
2023-06-02 20:15:29 +02:00
|
|
|
<ConnectionQualityIndicator participant={sfuParticipant} />
|
2022-09-14 19:05:05 -04:00
|
|
|
</div>
|
|
|
|
))}
|
2023-06-06 13:16:36 +02:00
|
|
|
<VideoTrack
|
|
|
|
participant={sfuParticipant}
|
|
|
|
source={
|
|
|
|
content === TileContent.UserMedia
|
|
|
|
? Track.Source.Camera
|
|
|
|
: Track.Source.ScreenShare
|
|
|
|
}
|
|
|
|
/>
|
2023-06-02 14:49:11 +02:00
|
|
|
<audio ref={audioEl} />
|
2022-05-31 10:43:05 -04:00
|
|
|
</animated.div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|