element-call/src/room/InCallView.tsx

364 lines
11 KiB
TypeScript
Raw Normal View History

2022-05-04 16:09:48 +00: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.
*/
import React, { useEffect, useCallback, useMemo, useRef } from "react";
2022-08-01 22:46:16 +00:00
import { usePreventScroll } from "@react-aria/overlays";
import useMeasure from "react-use-measure";
import { ResizeObserver } from "@juggle/resize-observer";
2022-08-12 20:46:53 +00:00
import { MatrixClient } from "matrix-js-sdk/src/client";
import { RoomMember } from "matrix-js-sdk/src/models/room-member";
import { GroupCall } from "matrix-js-sdk/src/webrtc/groupCall";
2022-08-01 22:46:16 +00:00
import { CallFeed } from "matrix-js-sdk/src/webrtc/callFeed";
import classNames from "classnames";
2022-10-10 13:19:10 +00:00
import { useTranslation } from "react-i18next";
2022-08-01 22:46:16 +00:00
import type { IWidgetApiRequest } from "matrix-widget-api";
2022-01-05 23:06:51 +00:00
import styles from "./InCallView.module.css";
import {
HangupButton,
MicButton,
VideoButton,
ScreenshareButton,
} from "../button";
import {
Header,
LeftNav,
RightNav,
RoomHeaderInfo,
VersionMismatchWarning,
} from "../Header";
2022-04-07 21:22:36 +00:00
import { VideoGrid, useVideoGridLayout } from "../video-grid/VideoGrid";
import { VideoTileContainer } from "../video-grid/VideoTileContainer";
2022-01-06 00:58:55 +00:00
import { GroupCallInspector } from "./GroupCallInspector";
2022-01-06 00:55:41 +00:00
import { OverflowMenu } from "./OverflowMenu";
2022-01-06 00:58:55 +00:00
import { GridLayoutMenu } from "./GridLayoutMenu";
2022-01-05 23:06:51 +00:00
import { Avatar } from "../Avatar";
import { UserMenuContainer } from "../UserMenuContainer";
2022-04-07 21:22:36 +00:00
import { useRageshakeRequestModal } from "../settings/submit-rageshake";
2022-02-05 00:55:57 +00:00
import { RageshakeRequestModal } from "./RageshakeRequestModal";
import { useMediaHandler } from "../settings/useMediaHandler";
import { useShowInspector, useSpatialAudio } from "../settings/useSetting";
import { useModalTriggerState } from "../Modal";
import { useAudioContext } from "../video-grid/useMediaStream";
import { useFullscreen } from "../video-grid/useFullscreen";
import { AudioContainer } from "../video-grid/AudioContainer";
import { useAudioOutputDevice } from "../video-grid/useAudioOutputDevice";
import { widget, ElementWidgetActions } from "../widget";
2022-01-05 23:06:51 +00:00
const canScreenshare = "getDisplayMedia" in (navigator.mediaDevices ?? {});
2022-01-05 23:06:51 +00:00
// There is currently a bug in Safari our our code with cloning and sending MediaStreams
// or with getUsermedia and getDisplaymedia being used within the same session.
// For now we can disable screensharing in Safari.
const isSafari = /^((?!chrome|android).)*safari/i.test(navigator.userAgent);
2022-08-01 22:46:16 +00:00
interface Props {
client: MatrixClient;
groupCall: GroupCall;
roomName: string;
avatarUrl: string;
microphoneMuted: boolean;
localVideoMuted: boolean;
toggleLocalVideoMuted: () => void;
toggleMicrophoneMuted: () => void;
toggleScreensharing: () => void;
userMediaFeeds: CallFeed[];
activeSpeaker: string;
onLeave: () => void;
isScreensharing: boolean;
screenshareFeeds: CallFeed[];
localScreenshareFeed: CallFeed;
2022-08-05 20:16:59 +00:00
roomIdOrAlias: string;
2022-08-01 22:46:16 +00:00
unencryptedEventsFromUsers: Set<string>;
hideHeader: boolean;
2022-08-01 22:46:16 +00:00
}
export interface Participant {
2022-08-01 22:46:16 +00:00
id: string;
focused: boolean;
presenter: boolean;
2022-08-12 17:27:34 +00:00
callFeed?: CallFeed;
isLocal?: boolean;
2022-08-01 22:46:16 +00:00
}
2022-01-05 23:06:51 +00:00
export function InCallView({
client,
groupCall,
roomName,
2022-05-18 23:00:59 +00:00
avatarUrl,
2022-01-05 23:06:51 +00:00
microphoneMuted,
localVideoMuted,
toggleLocalVideoMuted,
toggleMicrophoneMuted,
userMediaFeeds,
activeSpeaker,
onLeave,
toggleScreensharing,
isScreensharing,
screenshareFeeds,
2022-08-01 22:46:16 +00:00
localScreenshareFeed,
roomIdOrAlias,
unencryptedEventsFromUsers,
hideHeader,
2022-08-01 22:46:16 +00:00
}: Props) {
2022-10-10 13:19:10 +00:00
const { t } = useTranslation();
2022-02-16 19:17:33 +00:00
usePreventScroll();
const containerRef1 = useRef<HTMLDivElement | null>(null);
const [containerRef2, bounds] = useMeasure({ polyfill: ResizeObserver });
// Merge the refs so they can attach to the same element
const containerRef = useCallback(
(el: HTMLDivElement) => {
containerRef1.current = el;
containerRef2(el);
},
[containerRef1, containerRef2]
);
2022-08-12 17:27:34 +00:00
const { layout, setLayout } = useVideoGridLayout(screenshareFeeds.length > 0);
const { toggleFullscreen, fullscreenParticipant } =
useFullscreen(containerRef1);
2022-01-05 23:06:51 +00:00
const [spatialAudio] = useSpatialAudio();
const [audioContext, audioDestination, audioRef] = useAudioContext();
const { audioOutput } = useMediaHandler();
2022-05-31 14:43:05 +00:00
const [showInspector] = useShowInspector();
const { modalState: feedbackModalState, modalProps: feedbackModalProps } =
useModalTriggerState();
useAudioOutputDevice(audioRef, audioOutput);
useEffect(() => {
widget?.api.transport.send(
layout === "freedom"
? ElementWidgetActions.TileLayout
: ElementWidgetActions.SpotlightLayout,
{}
);
}, [layout]);
useEffect(() => {
if (widget) {
const onTileLayout = async (ev: CustomEvent<IWidgetApiRequest>) => {
setLayout("freedom");
await widget.api.transport.reply(ev.detail, {});
};
const onSpotlightLayout = async (ev: CustomEvent<IWidgetApiRequest>) => {
setLayout("spotlight");
await widget.api.transport.reply(ev.detail, {});
};
widget.lazyActions.on(ElementWidgetActions.TileLayout, onTileLayout);
widget.lazyActions.on(
ElementWidgetActions.SpotlightLayout,
onSpotlightLayout
);
return () => {
widget.lazyActions.off(ElementWidgetActions.TileLayout, onTileLayout);
widget.lazyActions.off(
ElementWidgetActions.SpotlightLayout,
onSpotlightLayout
);
};
}
}, [setLayout]);
2022-01-05 23:06:51 +00:00
const items = useMemo(() => {
2022-08-01 22:46:16 +00:00
const participants: Participant[] = [];
2022-01-05 23:06:51 +00:00
for (const callFeed of userMediaFeeds) {
participants.push({
id: callFeed.stream.id,
2022-01-07 19:42:36 +00:00
callFeed,
2022-02-04 01:28:10 +00:00
focused:
screenshareFeeds.length === 0 && callFeed.userId === activeSpeaker,
2022-02-26 00:26:21 +00:00
isLocal: callFeed.isLocal(),
2022-08-01 22:46:16 +00:00
presenter: false,
2022-01-05 23:06:51 +00:00
});
}
for (const callFeed of screenshareFeeds) {
2022-02-03 00:05:15 +00:00
const userMediaItem = participants.find(
2022-01-07 19:42:36 +00:00
(item) => item.callFeed.userId === callFeed.userId
2022-01-05 23:06:51 +00:00
);
2022-01-07 19:42:36 +00:00
if (userMediaItem) {
userMediaItem.presenter = true;
2022-01-05 23:06:51 +00:00
}
2022-01-07 19:42:36 +00:00
2022-02-03 00:05:15 +00:00
participants.push({
2022-01-07 19:42:36 +00:00
id: callFeed.stream.id,
callFeed,
focused: true,
2022-02-26 00:26:21 +00:00
isLocal: callFeed.isLocal(),
2022-08-01 22:46:16 +00:00
presenter: false,
2022-01-07 19:42:36 +00:00
});
2022-01-05 23:06:51 +00:00
}
return participants;
}, [userMediaFeeds, activeSpeaker, screenshareFeeds]);
// The maximised participant: either the participant that the user has
// manually put in fullscreen, or the focused (active) participant if the
// window is too small to show everyone
const maximisedParticipant = useMemo(
() =>
fullscreenParticipant ?? (bounds.height <= 400 && bounds.width <= 400)
? items.find((item) => item.focused) ??
items.find((item) => item.callFeed) ??
null
: null,
[fullscreenParticipant, bounds, items]
);
2022-01-05 23:06:51 +00:00
const reducedControls = bounds.width <= 400;
2022-08-12 17:27:34 +00:00
const renderAvatar = useCallback(
(roomMember: RoomMember, width: number, height: number) => {
const avatarUrl = roomMember.user?.avatarUrl;
const size = Math.round(Math.min(width, height) / 2);
2022-08-01 22:46:16 +00:00
2022-08-12 17:27:34 +00:00
return (
<Avatar
key={roomMember.userId}
size={size}
src={avatarUrl}
fallback={roomMember.name.slice(0, 1).toUpperCase()}
className={styles.avatar}
/>
);
},
[]
);
2022-01-05 23:06:51 +00:00
const renderContent = (): JSX.Element => {
if (items.length === 0) {
return (
<div className={styles.centerMessage}>
2022-10-10 13:19:10 +00:00
<p>{t("Waiting for other participants…")}</p>
</div>
);
}
if (maximisedParticipant) {
return (
<VideoTileContainer
height={bounds.height}
width={bounds.width}
key={maximisedParticipant.id}
item={maximisedParticipant}
getAvatar={renderAvatar}
audioContext={audioContext}
audioDestination={audioDestination}
disableSpeakingIndicator={true}
maximised={Boolean(maximisedParticipant)}
fullscreen={maximisedParticipant === fullscreenParticipant}
onFullscreen={toggleFullscreen}
/>
);
}
return (
<VideoGrid items={items} layout={layout} disableAnimations={isSafari}>
{({ item, ...rest }: { item: Participant; [x: string]: unknown }) => (
<VideoTileContainer
key={item.id}
item={item}
getAvatar={renderAvatar}
audioContext={audioContext}
audioDestination={audioDestination}
disableSpeakingIndicator={items.length < 3}
maximised={false}
fullscreen={false}
onFullscreen={toggleFullscreen}
{...rest}
/>
)}
</VideoGrid>
);
};
2022-02-05 00:55:57 +00:00
const {
modalState: rageshakeRequestModalState,
modalProps: rageshakeRequestModalProps,
} = useRageshakeRequestModal(groupCall.room.roomId);
const containerClasses = classNames(styles.inRoom, {
[styles.maximised]: maximisedParticipant,
});
2022-01-05 23:06:51 +00:00
return (
<div className={containerClasses} ref={containerRef}>
<audio ref={audioRef} />
{(!spatialAudio || maximisedParticipant) && (
<AudioContainer
items={items}
audioContext={audioContext}
audioDestination={audioDestination}
/>
)}
{!hideHeader && !maximisedParticipant && (
<Header>
<LeftNav>
<RoomHeaderInfo roomName={roomName} avatarUrl={avatarUrl} />
<VersionMismatchWarning
users={unencryptedEventsFromUsers}
room={groupCall.room}
2022-01-08 00:20:55 +00:00
/>
</LeftNav>
<RightNav>
<GridLayoutMenu layout={layout} setLayout={setLayout} />
<UserMenuContainer preventNavigation />
</RightNav>
</Header>
2022-01-05 23:06:51 +00:00
)}
{renderContent()}
<div className={styles.footer}>
2022-01-05 23:06:51 +00:00
<MicButton muted={microphoneMuted} onPress={toggleMicrophoneMuted} />
<VideoButton muted={localVideoMuted} onPress={toggleLocalVideoMuted} />
{canScreenshare && !isSafari && !reducedControls && (
2022-01-05 23:06:51 +00:00
<ScreenshareButton
enabled={isScreensharing}
onPress={toggleScreensharing}
/>
)}
{!reducedControls && (
<OverflowMenu
inCall
2022-08-09 13:03:02 +00:00
roomIdOrAlias={roomIdOrAlias}
groupCall={groupCall}
showInvite={true}
feedbackModalState={feedbackModalState}
feedbackModalProps={feedbackModalProps}
/>
)}
2022-01-05 23:06:51 +00:00
<HangupButton onPress={onLeave} />
</div>
<GroupCallInspector
client={client}
groupCall={groupCall}
show={showInspector}
/>
2022-02-05 00:55:57 +00:00
{rageshakeRequestModalState.isOpen && (
<RageshakeRequestModal
{...rageshakeRequestModalProps}
roomIdOrAlias={roomIdOrAlias}
/>
2022-02-05 00:55:57 +00:00
)}
2022-01-05 23:06:51 +00:00
</div>
);
}