This should help give more context on what's going wrong in splitbrain scenarios. If users leave calls uncleanly, their tile will remain in until their member event times out, which will be an hour from when they joined the call. See https://github.com/vector-im/element-call/issues/639. Part of https://github.com/vector-im/element-call/issues/616
135 lines
3.7 KiB
TypeScript
135 lines
3.7 KiB
TypeScript
/*
|
|
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.
|
|
*/
|
|
|
|
import React, { forwardRef } from "react";
|
|
import { animated } from "@react-spring/web";
|
|
import classNames from "classnames";
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
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";
|
|
|
|
interface Props {
|
|
name: string;
|
|
hasFeed: Boolean;
|
|
speaking?: boolean;
|
|
audioMuted?: boolean;
|
|
videoMuted?: boolean;
|
|
screenshare?: boolean;
|
|
avatar?: JSX.Element;
|
|
mediaRef?: React.RefObject<MediaElement>;
|
|
onOptionsPress?: () => void;
|
|
localVolume?: number;
|
|
maximised?: boolean;
|
|
fullscreen?: boolean;
|
|
onFullscreen?: () => void;
|
|
className?: string;
|
|
showOptions?: boolean;
|
|
isLocal?: boolean;
|
|
disableSpeakingIndicator?: boolean;
|
|
}
|
|
|
|
export const VideoTile = forwardRef<HTMLDivElement, Props>(
|
|
(
|
|
{
|
|
name,
|
|
hasFeed,
|
|
speaking,
|
|
audioMuted,
|
|
videoMuted,
|
|
screenshare,
|
|
avatar,
|
|
mediaRef,
|
|
onOptionsPress,
|
|
localVolume,
|
|
maximised,
|
|
fullscreen,
|
|
onFullscreen,
|
|
className,
|
|
showOptions,
|
|
isLocal,
|
|
// TODO: disableSpeakingIndicator is not used atm.
|
|
disableSpeakingIndicator,
|
|
...rest
|
|
},
|
|
ref
|
|
) => {
|
|
const { t } = useTranslation();
|
|
|
|
const toolbarButtons: JSX.Element[] = [];
|
|
if (!isLocal) {
|
|
toolbarButtons.push(
|
|
<AudioButton
|
|
className={styles.button}
|
|
volume={localVolume}
|
|
onPress={onOptionsPress}
|
|
/>
|
|
);
|
|
|
|
if (screenshare) {
|
|
toolbarButtons.push(
|
|
<FullscreenButton
|
|
className={styles.button}
|
|
fullscreen={fullscreen}
|
|
onPress={onFullscreen}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
const caption = hasFeed ? name : t("{{name}} (Connecting...)", { name });
|
|
|
|
return (
|
|
<animated.div
|
|
className={classNames(styles.videoTile, className, {
|
|
[styles.isLocal]: isLocal,
|
|
[styles.speaking]: speaking,
|
|
[styles.muted]: audioMuted,
|
|
[styles.screenshare]: screenshare,
|
|
[styles.maximised]: maximised,
|
|
})}
|
|
ref={ref}
|
|
{...rest}
|
|
>
|
|
{toolbarButtons.length > 0 && !maximised && (
|
|
<div className={classNames(styles.toolbar)}>{toolbarButtons}</div>
|
|
)}
|
|
{videoMuted && (
|
|
<>
|
|
<div className={styles.videoMutedOverlay} />
|
|
{avatar}
|
|
</>
|
|
)}
|
|
{!maximised &&
|
|
(screenshare ? (
|
|
<div className={styles.presenterLabel}>
|
|
<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>
|
|
))}
|
|
<video ref={mediaRef} playsInline disablePictureInPicture />
|
|
</animated.div>
|
|
);
|
|
}
|
|
);
|