Files
element-call/src/tile/MediaView.tsx
T

189 lines
6.0 KiB
TypeScript
Raw Normal View History

2024-05-02 18:44:36 -04:00
/*
Copyright 2024 New Vector Ltd.
2024-05-02 18:44:36 -04:00
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
Please see LICENSE in the repository root for full details.
2024-05-02 18:44:36 -04:00
*/
import { type TrackReferenceOrPlaceholder } from "@livekit/components-core";
2024-05-02 18:44:36 -04:00
import { animated } from "@react-spring/web";
2025-03-13 13:58:43 +01:00
import { type RoomMember } from "matrix-js-sdk";
2025-06-23 22:48:37 -04:00
import { type FC, type ComponentProps, type ReactNode } from "react";
2024-05-02 18:44:36 -04:00
import { useTranslation } from "react-i18next";
import classNames from "classnames";
import { VideoTrack } from "@livekit/components-react";
import { Text, Tooltip } from "@vector-im/compound-web";
2025-05-28 18:04:29 -04:00
import { ErrorSolidIcon } from "@vector-im/compound-design-tokens/assets/web/icons";
2024-05-02 18:44:36 -04:00
import styles from "./MediaView.module.css";
import { Avatar } from "../Avatar";
import { type EncryptionStatus } from "../state/MediaViewModel";
2024-11-04 08:54:13 -01:00
import { RaisedHandIndicator } from "../reactions/RaisedHandIndicator";
import { showHandRaisedTimer, useSetting } from "../settings/settings";
import { type ReactionOption } from "../reactions";
2024-11-08 17:36:40 +00:00
import { ReactionIndicator } from "../reactions/ReactionIndicator";
import { RTCConnectionStats } from "../RTCConnectionStats";
2024-05-02 18:44:36 -04:00
interface Props extends ComponentProps<typeof animated.div> {
className?: string;
style?: ComponentProps<typeof animated.div>["style"];
targetWidth: number;
targetHeight: number;
video: TrackReferenceOrPlaceholder | undefined;
2024-05-02 18:44:36 -04:00
videoFit: "cover" | "contain";
mirror: boolean;
member: RoomMember;
2024-05-02 18:44:36 -04:00
videoEnabled: boolean;
unencryptedWarning: boolean;
encryptionStatus: EncryptionStatus;
2024-05-02 18:44:36 -04:00
nameTagLeadingIcon?: ReactNode;
displayName: string;
focusable: boolean;
2024-05-02 18:44:36 -04:00
primaryButton?: ReactNode;
2024-11-04 08:54:13 -01:00
raisedHandTime?: Date;
2024-11-08 17:36:40 +00:00
currentReaction?: ReactionOption;
raisedHandOnClick?: () => void;
localParticipant: boolean;
audioStreamStats?: RTCInboundRtpStreamStats | RTCOutboundRtpStreamStats;
videoStreamStats?: RTCInboundRtpStreamStats | RTCOutboundRtpStreamStats;
2024-05-02 18:44:36 -04:00
}
2025-06-23 22:48:37 -04:00
export const MediaView: FC<Props> = ({
ref,
className,
style,
targetWidth,
targetHeight,
video,
videoFit,
mirror,
member,
videoEnabled,
unencryptedWarning,
nameTagLeadingIcon,
displayName,
focusable,
2025-06-23 22:48:37 -04:00
primaryButton,
encryptionStatus,
raisedHandTime,
currentReaction,
raisedHandOnClick,
localParticipant,
audioStreamStats,
videoStreamStats,
...props
}) => {
const { t } = useTranslation();
const [handRaiseTimerVisible] = useSetting(showHandRaisedTimer);
2024-11-04 08:54:13 -01:00
2025-06-23 22:48:37 -04:00
const avatarSize = Math.round(Math.min(targetWidth, targetHeight) / 2);
2024-05-02 18:44:36 -04:00
2025-06-23 22:48:37 -04:00
return (
<animated.div
className={classNames(styles.media, className, {
[styles.mirror]: mirror,
})}
style={style}
ref={ref}
data-testid="videoTile"
data-video-fit={videoFit}
{...props}
>
<div className={styles.bg}>
<Avatar
id={member?.userId ?? displayName}
name={displayName}
size={avatarSize}
src={member?.getMxcAvatarUrl()}
className={styles.avatar}
style={{ display: video && videoEnabled ? "none" : "initial" }}
/>
{video?.publication !== undefined && (
<VideoTrack
trackRef={video}
// There's no reason for this to be focusable
tabIndex={-1}
disablePictureInPicture
style={{ display: video && videoEnabled ? "block" : "none" }}
data-testid="video"
2024-05-02 18:44:36 -04:00
/>
2025-06-23 22:48:37 -04:00
)}
</div>
<div className={styles.fg}>
<div className={styles.reactions}>
<RaisedHandIndicator
raisedHandTime={raisedHandTime}
miniature={avatarSize < 96}
showTimer={handRaiseTimerVisible}
onClick={raisedHandOnClick}
tabIndex={focusable ? undefined : -1}
2025-06-23 22:48:37 -04:00
/>
{currentReaction && (
<ReactionIndicator
miniature={avatarSize < 96}
emoji={currentReaction.emoji}
2024-05-02 18:44:36 -04:00
/>
)}
</div>
2025-06-23 22:48:37 -04:00
{!video && !localParticipant && (
<div className={styles.status}>
{t("video_tile.waiting_for_media")}
2024-11-08 17:36:40 +00:00
</div>
2025-06-23 22:48:37 -04:00
)}
{(audioStreamStats || videoStreamStats) && (
<RTCConnectionStats
audio={audioStreamStats}
video={videoStreamStats}
/>
)}
{/* TODO: Bring this back once encryption status is less broken */}
{/*encryptionStatus !== EncryptionStatus.Okay && (
<div className={styles.status}>
<Text as="span" size="sm" weight="medium" className={styles.name}>
{encryptionStatus === EncryptionStatus.Connecting &&
t("e2ee_encryption_status.connecting")}
{encryptionStatus === EncryptionStatus.KeyMissing &&
t("e2ee_encryption_status.key_missing")}
{encryptionStatus === EncryptionStatus.KeyInvalid &&
t("e2ee_encryption_status.key_invalid")}
{encryptionStatus === EncryptionStatus.PasswordInvalid &&
t("e2ee_encryption_status.password_invalid")}
</Text>
</div>
2024-11-08 09:29:20 -05:00
)*/}
2025-06-23 22:48:37 -04:00
<div className={styles.nameTag}>
{nameTagLeadingIcon}
<Text
as="span"
size="sm"
weight="medium"
className={styles.name}
data-testid="name_tag"
>
{displayName}
</Text>
{unencryptedWarning && (
<Tooltip
label={t("common.unencrypted")}
placement="bottom"
isTriggerInteractive={false}
nonInteractiveTriggerTabIndex={focusable ? undefined : -1}
>
2025-06-23 22:48:37 -04:00
<ErrorSolidIcon
width={20}
height={20}
className={styles.errorIcon}
role="img"
aria-label={t("common.unencrypted")}
/>
</Tooltip>
)}
2024-05-02 18:44:36 -04:00
</div>
2025-06-23 22:48:37 -04:00
{primaryButton}
</div>
</animated.div>
);
};
2024-05-02 18:44:36 -04:00
MediaView.displayName = "MediaView";