mirror of
https://github.com/vector-im/element-call.git
synced 2026-03-31 07:00:26 +00:00
Show participant ID and some encryption status message Allow encryption system to be chosen at point of room creation Send cryptoVersion platform data to Posthog Send key distribution stats to posthog Send encryption type for CallStarted and CallEnded events Update js-sdk
147 lines
4.4 KiB
TypeScript
147 lines
4.4 KiB
TypeScript
/*
|
|
Copyright 2024 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 { TrackReferenceOrPlaceholder } from "@livekit/components-core";
|
|
import { animated } from "@react-spring/web";
|
|
import { RoomMember } from "matrix-js-sdk/src/matrix";
|
|
import { ComponentProps, ReactNode, forwardRef } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import classNames from "classnames";
|
|
import { VideoTrack } from "@livekit/components-react";
|
|
import { Text, Tooltip } from "@vector-im/compound-web";
|
|
import { ErrorIcon } from "@vector-im/compound-design-tokens/assets/web/icons";
|
|
|
|
import styles from "./MediaView.module.css";
|
|
import { Avatar } from "../Avatar";
|
|
|
|
interface Props extends ComponentProps<typeof animated.div> {
|
|
className?: string;
|
|
style?: ComponentProps<typeof animated.div>["style"];
|
|
targetWidth: number;
|
|
targetHeight: number;
|
|
video: TrackReferenceOrPlaceholder;
|
|
videoFit: "cover" | "contain";
|
|
mirror: boolean;
|
|
member: RoomMember | undefined;
|
|
videoEnabled: boolean;
|
|
unencryptedWarning: boolean;
|
|
encryptionKeyMissing: boolean;
|
|
encryptionKeyInvalid: boolean;
|
|
nameTagLeadingIcon?: ReactNode;
|
|
displayName: string;
|
|
participantId: string;
|
|
primaryButton?: ReactNode;
|
|
}
|
|
|
|
export const MediaView = forwardRef<HTMLDivElement, Props>(
|
|
(
|
|
{
|
|
className,
|
|
style,
|
|
targetWidth,
|
|
targetHeight,
|
|
video,
|
|
videoFit,
|
|
mirror,
|
|
member,
|
|
videoEnabled,
|
|
unencryptedWarning,
|
|
nameTagLeadingIcon,
|
|
displayName,
|
|
primaryButton,
|
|
encryptionKeyMissing,
|
|
encryptionKeyInvalid,
|
|
participantId,
|
|
...props
|
|
},
|
|
ref,
|
|
) => {
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<animated.div
|
|
className={classNames(styles.media, className, {
|
|
[styles.mirror]: mirror,
|
|
[styles.videoMuted]:
|
|
!videoEnabled || encryptionKeyInvalid || encryptionKeyMissing,
|
|
})}
|
|
style={style}
|
|
ref={ref}
|
|
data-testid="videoTile"
|
|
data-video-fit={videoFit}
|
|
{...props}
|
|
>
|
|
<div className={styles.bg}>
|
|
<Avatar
|
|
id={member?.userId ?? displayName}
|
|
name={displayName}
|
|
size={Math.round(Math.min(targetWidth, targetHeight) / 2)}
|
|
src={member?.getMxcAvatarUrl()}
|
|
className={styles.avatar}
|
|
/>
|
|
{video.publication !== undefined && (
|
|
<VideoTrack
|
|
trackRef={video}
|
|
// There's no reason for this to be focusable
|
|
tabIndex={-1}
|
|
disablePictureInPicture
|
|
/>
|
|
)}
|
|
</div>
|
|
<div className={styles.fg}>
|
|
{encryptionKeyMissing && (
|
|
<div className={styles.status}>
|
|
<Text as="span" size="sm" weight="medium" className={styles.name}>
|
|
Encryption key missing
|
|
</Text>
|
|
</div>
|
|
)}
|
|
{encryptionKeyInvalid && (
|
|
<div className={styles.status}>
|
|
<Text as="span" size="sm" weight="medium" className={styles.name}>
|
|
Encryption key invalid
|
|
</Text>
|
|
</div>
|
|
)}
|
|
<div className={styles.nameTag} title={participantId}>
|
|
{nameTagLeadingIcon}
|
|
<Text as="span" size="sm" weight="medium" className={styles.name}>
|
|
{displayName} ({participantId})
|
|
</Text>
|
|
{unencryptedWarning && (
|
|
<Tooltip
|
|
label={t("common.unencrypted")}
|
|
placement="bottom"
|
|
isTriggerInteractive={false}
|
|
>
|
|
<ErrorIcon
|
|
width={20}
|
|
height={20}
|
|
className={styles.errorIcon}
|
|
aria-hidden
|
|
/>
|
|
</Tooltip>
|
|
)}
|
|
</div>
|
|
{primaryButton}
|
|
</div>
|
|
</animated.div>
|
|
);
|
|
},
|
|
);
|
|
|
|
MediaView.displayName = "MediaView";
|