element-call/src/video-grid/VideoTile.tsx

150 lines
4.2 KiB
TypeScript
Raw Normal View History

2022-05-04 17:09:48 +01:00
/*
Copyright 2022 Matrix.org Foundation C.I.C.
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.
*/
2022-05-31 10:43:05 -04:00
import React, { forwardRef } from "react";
2022-04-07 14:22:36 -07:00
import { animated } from "@react-spring/web";
import classNames from "classnames";
2022-10-10 09:19:10 -04:00
import { useTranslation } from "react-i18next";
2022-08-12 19:27:34 +02:00
2022-04-07 14:22:36 -07:00
import styles from "./VideoTile.module.css";
import { ReactComponent as MicMutedIcon } from "../icons/MicMuted.svg";
import { ReactComponent as VideoMutedIcon } from "../icons/VideoMuted.svg";
import { AudioButton, FullscreenButton } from "../button/Button";
import { ConnectionState } from "../room/useGroupCall";
2022-04-07 14:22:36 -07:00
2022-08-12 19:27:34 +02:00
interface Props {
name: string;
connectionState: ConnectionState;
2022-08-12 19:27:34 +02:00
speaking?: boolean;
audioMuted?: boolean;
videoMuted?: boolean;
screenshare?: boolean;
avatar?: JSX.Element;
mediaRef?: React.RefObject<MediaElement>;
onOptionsPress?: () => void;
localVolume?: number;
maximised?: boolean;
fullscreen?: boolean;
2022-08-12 19:27:34 +02:00
onFullscreen?: () => void;
className?: string;
showOptions?: boolean;
isLocal?: boolean;
disableSpeakingIndicator?: boolean;
}
export const VideoTile = forwardRef<HTMLDivElement, Props>(
2022-05-31 10:43:05 -04:00
(
{
2022-08-12 19:27:34 +02:00
name,
connectionState,
2022-05-31 10:43:05 -04:00
speaking,
audioMuted,
videoMuted,
screenshare,
avatar,
mediaRef,
onOptionsPress,
localVolume,
maximised,
fullscreen,
onFullscreen,
2022-08-12 19:27:34 +02:00
className,
showOptions,
isLocal,
// TODO: disableSpeakingIndicator is not used atm.
disableSpeakingIndicator,
2022-05-31 10:43:05 -04:00
...rest
},
ref
) => {
2022-10-10 09:19:10 -04:00
const { t } = useTranslation();
const toolbarButtons: JSX.Element[] = [];
2022-11-16 10:45:49 +00:00
if (connectionState == ConnectionState.Connected && !isLocal) {
toolbarButtons.push(
<AudioButton
2022-11-02 12:15:32 -04:00
key="localVolume"
className={styles.button}
volume={localVolume}
onPress={onOptionsPress}
/>
);
if (screenshare) {
toolbarButtons.push(
<FullscreenButton
2022-11-02 12:15:32 -04:00
key="fullscreen"
className={styles.button}
fullscreen={fullscreen}
onPress={onFullscreen}
/>
);
}
}
let caption: string;
switch (connectionState) {
2022-11-16 10:45:49 +00:00
case ConnectionState.EstablishingCall:
caption = t("{{name}} (Connecting...)", { name });
break;
2022-11-16 10:45:49 +00:00
case ConnectionState.WaitMedia:
// not strictly true, but probably easier to understand than, "Waiting for media"
caption = t("{{name}} (Waiting for video...)", { name });
break;
2022-11-16 10:45:49 +00:00
case ConnectionState.Connected:
caption = name;
break;
}
2022-05-31 10:43:05 -04:00
return (
<animated.div
className={classNames(styles.videoTile, className, {
[styles.isLocal]: isLocal,
[styles.speaking]: speaking,
[styles.muted]: audioMuted,
[styles.screenshare]: screenshare,
[styles.maximised]: maximised,
2022-05-31 10:43:05 -04:00
})}
ref={ref}
{...rest}
>
{toolbarButtons.length > 0 && !maximised && (
<div className={classNames(styles.toolbar)}>{toolbarButtons}</div>
)}
{videoMuted && (
2022-05-31 10:43:05 -04:00
<>
<div className={styles.videoMutedOverlay} />
{avatar}
</>
)}
{!maximised &&
(screenshare ? (
<div className={styles.presenterLabel}>
2022-10-10 09:19:10 -04:00
<span>{t("{{name}} is presenting", { name })}</span>
</div>
) : (
<div className={classNames(styles.infoBubble, styles.memberName)}>
{audioMuted && !videoMuted && <MicMutedIcon />}
{videoMuted && <VideoMutedIcon />}
<span title={caption}>{caption}</span>
</div>
))}
2022-05-31 10:43:05 -04:00
<video ref={mediaRef} playsInline disablePictureInPicture />
</animated.div>
);
}
);