Files
element-call/src/room/InCallView.tsx
T

551 lines
16 KiB
TypeScript
Raw Normal View History

2022-05-04 17:09:48 +01:00
/*
2024-07-12 14:01:32 -04:00
Copyright 2022 - 2024 New Vector Ltd
2022-05-04 17:09:48 +01:00
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 {
RoomAudioRenderer,
RoomContext,
useLocalParticipant,
} from "@livekit/components-react";
2023-06-05 20:51:01 +02:00
import { usePreventScroll } from "@react-aria/overlays";
2024-06-07 17:29:48 -04:00
import { ConnectionState, Room } from "livekit-client";
2023-06-05 20:51:01 +02:00
import { MatrixClient } from "matrix-js-sdk/src/client";
2023-09-22 18:05:13 -04:00
import {
FC,
PropsWithoutRef,
2024-05-02 18:44:36 -04:00
forwardRef,
2023-09-22 18:05:13 -04:00
useCallback,
useEffect,
useMemo,
useRef,
useState,
} from "react";
2023-06-05 20:51:01 +02:00
import useMeasure from "react-use-measure";
2023-08-16 18:41:27 +01:00
import { MatrixRTCSession } from "matrix-js-sdk/src/matrixrtc/MatrixRTCSession";
import classNames from "classnames";
2024-05-17 16:38:00 -04:00
import { BehaviorSubject, map } from "rxjs";
2024-05-16 15:23:10 -04:00
import { useObservableEagerState } from "observable-hooks";
2022-08-02 00:46:16 +02:00
2023-09-27 19:06:10 -04:00
import LogoMark from "../icons/LogoMark.svg?react";
import LogoType from "../icons/LogoType.svg?react";
import type { IWidgetApiRequest } from "matrix-widget-api";
2022-01-05 15:06:51 -08:00
import {
HangupButton,
MicButton,
VideoButton,
ScreenshareButton,
2023-05-05 11:44:35 +02:00
SettingsButton,
2022-01-05 15:06:51 -08:00
} from "../button";
2023-08-16 18:41:27 +01:00
import { Header, LeftNav, RightNav, RoomHeaderInfo } from "../Header";
2022-10-14 16:17:50 +02:00
import { useUrlParams } from "../UrlParams";
2023-06-05 20:51:01 +02:00
import { useCallViewKeyboardShortcuts } from "../useCallViewKeyboardShortcuts";
import { ElementWidgetActions, widget } from "../widget";
import styles from "./InCallView.module.css";
2024-05-02 18:44:36 -04:00
import { GridTile } from "../tile/GridTile";
2023-03-16 14:41:55 +00:00
import { OTelGroupCallMembership } from "../otel/OTelGroupCallMembership";
2023-12-01 17:43:09 -05:00
import { SettingsModal, defaultSettingsTab } from "../settings/SettingsModal";
2023-05-22 15:30:29 -04:00
import { useRageshakeRequestModal } from "../settings/submit-rageshake";
import { RageshakeRequestModal } from "./RageshakeRequestModal";
2024-04-23 15:15:13 +02:00
import { useLiveKit } from "../livekit/useLiveKit";
import { useFullscreen } from "./useFullscreen";
2023-07-21 00:51:07 -04:00
import { useWakeLock } from "../useWakeLock";
2023-08-02 15:29:37 -04:00
import { useMergedRefs } from "../useMergedRefs";
import { MuteStates } from "./MuteStates";
import { MatrixInfo } from "./VideoPreview";
2023-09-27 15:17:04 -04:00
import { InviteButton } from "../button/InviteButton";
import { LayoutToggle } from "./LayoutToggle";
import { ECConnectionState } from "../livekit/useECConnectionState";
import { useOpenIDSFU } from "../livekit/openIDSFU";
2024-06-07 17:29:48 -04:00
import { GridMode, Layout, useCallViewModel } from "../state/CallViewModel";
2024-05-02 18:44:36 -04:00
import { Grid, TileProps } from "../grid/Grid";
import { useObservable } from "../state/useObservable";
import { useInitial } from "../useInitial";
import { SpotlightTile } from "../tile/SpotlightTile";
2024-04-23 15:15:13 +02:00
import { EncryptionSystem } from "../e2ee/sharedKeyManagement";
import { E2eeType } from "../e2ee/e2eeType";
2024-05-17 16:38:00 -04:00
import { makeGridLayout } from "../grid/GridLayout";
import { makeSpotlightLayout } from "../grid/SpotlightLayout";
2024-06-07 16:59:56 -04:00
import {
CallLayout,
TileModel,
defaultPipAlignment,
defaultSpotlightAlignment,
} from "../grid/CallLayout";
import { makeOneOnOneLayout } from "../grid/OneOnOneLayout";
2022-01-05 15:06:51 -08:00
const canScreenshare = "getDisplayMedia" in (navigator.mediaDevices ?? {});
2024-05-02 18:44:36 -04:00
export interface ActiveCallProps
extends Omit<InCallViewProps, "livekitRoom" | "connState"> {
2024-04-23 15:15:13 +02:00
e2eeSystem: EncryptionSystem;
2023-06-16 18:07:13 +02:00
}
2023-09-22 18:05:13 -04:00
export const ActiveCall: FC<ActiveCallProps> = (props) => {
const sfuConfig = useOpenIDSFU(props.client, props.rtcSession);
const { livekitRoom, connState } = useLiveKit(
props.rtcSession,
props.muteStates,
sfuConfig,
2024-04-23 15:15:13 +02:00
props.e2eeSystem,
);
useEffect(() => {
2024-06-04 11:20:25 -04:00
return (): void => {
livekitRoom?.disconnect();
};
// eslint-disable-next-line react-hooks/exhaustive-deps
}, []);
if (!livekitRoom) return null;
2023-06-30 16:43:28 +01:00
return (
<RoomContext.Provider value={livekitRoom}>
<InCallView {...props} livekitRoom={livekitRoom} connState={connState} />
2023-06-30 16:43:28 +01:00
</RoomContext.Provider>
);
2023-09-22 18:05:13 -04:00
};
export interface InCallViewProps {
2022-08-02 00:46:16 +02:00
client: MatrixClient;
matrixInfo: MatrixInfo;
2023-08-16 18:41:27 +01:00
rtcSession: MatrixRTCSession;
2023-06-16 18:07:13 +02:00
livekitRoom: Room;
2023-08-02 15:29:37 -04:00
muteStates: MuteStates;
participantCount: number;
onLeave: (error?: Error) => void;
hideHeader: boolean;
2023-06-30 16:43:28 +01:00
otelGroupCallMembership?: OTelGroupCallMembership;
connState: ECConnectionState;
onShareClick: (() => void) | null;
2022-08-02 00:46:16 +02:00
}
2022-08-08 20:01:58 +02:00
2024-05-16 15:23:10 -04:00
export const InCallView: FC<InCallViewProps> = ({
client,
matrixInfo,
rtcSession,
livekitRoom,
muteStates,
participantCount,
onLeave,
hideHeader,
connState,
onShareClick,
}) => {
usePreventScroll();
useWakeLock();
useEffect(() => {
if (connState === ConnectionState.Disconnected) {
// annoyingly we don't get the disconnection reason this way,
// only by listening for the emitted event
onLeave(new Error("Disconnected from call server"));
}
}, [connState, onLeave]);
2022-10-14 09:40:21 -04:00
2024-05-16 15:23:10 -04:00
const containerRef1 = useRef<HTMLDivElement | null>(null);
const [containerRef2, bounds] = useMeasure();
const boundsValid = bounds.height > 0;
// Merge the refs so they can attach to the same element
const containerRef = useMergedRefs(containerRef1, containerRef2);
2024-05-16 15:23:10 -04:00
const { hideScreensharing, showControls } = useUrlParams();
const { isScreenShareEnabled, localParticipant } = useLocalParticipant({
room: livekitRoom,
});
const toggleMicrophone = useCallback(
() => muteStates.audio.setEnabled?.((e) => !e),
[muteStates],
);
const toggleCamera = useCallback(
() => muteStates.video.setEnabled?.((e) => !e),
[muteStates],
);
// This function incorrectly assumes that there is a camera and microphone, which is not always the case.
// TODO: Make sure that this module is resilient when it comes to camera/microphone availability!
useCallViewKeyboardShortcuts(
containerRef1,
toggleMicrophone,
toggleCamera,
(muted) => muteStates.audio.setEnabled?.(!muted),
);
2024-05-16 15:23:10 -04:00
const mobile = boundsValid && bounds.width <= 660;
const reducedControls = boundsValid && bounds.width <= 340;
const noControls = reducedControls && bounds.height <= 400;
2024-05-16 15:23:10 -04:00
const vm = useCallViewModel(
rtcSession.room,
livekitRoom,
matrixInfo.e2eeSystem.kind !== E2eeType.NONE,
connState,
);
const layout = useObservableEagerState(vm.layout);
2024-06-07 17:29:48 -04:00
const gridMode = useObservableEagerState(vm.gridMode);
2024-05-16 15:23:10 -04:00
const hasSpotlight = layout.spotlight !== undefined;
const fullscreenItems = useMemo(
2024-06-07 17:29:48 -04:00
() => (hasSpotlight ? ["spotlight"] : []),
[hasSpotlight],
2024-05-16 15:23:10 -04:00
);
const { fullscreenItem, toggleFullscreen, exitFullscreen } =
useFullscreen(fullscreenItems);
const toggleSpotlightFullscreen = useCallback(
() => toggleFullscreen("spotlight"),
[toggleFullscreen],
);
2024-05-16 15:23:10 -04:00
// The maximised participant: either the participant that the user has
2024-06-07 17:29:48 -04:00
// manually put in fullscreen, or (TODO) the spotlight if the window is too
// small to show everyone
const maximisedParticipant = fullscreenItem;
2024-05-02 18:44:36 -04:00
2024-05-16 15:23:10 -04:00
const [settingsModalOpen, setSettingsModalOpen] = useState(false);
const [settingsTab, setSettingsTab] = useState(defaultSettingsTab);
2024-05-02 18:44:36 -04:00
2024-05-16 15:23:10 -04:00
const openSettings = useCallback(
() => setSettingsModalOpen(true),
[setSettingsModalOpen],
);
const closeSettings = useCallback(
() => setSettingsModalOpen(false),
[setSettingsModalOpen],
);
2024-05-02 18:44:36 -04:00
2024-05-16 15:23:10 -04:00
const openProfile = useCallback(() => {
setSettingsTab("profile");
setSettingsModalOpen(true);
}, [setSettingsTab, setSettingsModalOpen]);
const [headerRef, headerBounds] = useMeasure();
const [footerRef, footerBounds] = useMeasure();
2024-05-17 16:38:00 -04:00
2024-05-16 15:23:10 -04:00
const gridBounds = useMemo(
() => ({
width: footerBounds.width,
height: bounds.height - headerBounds.height - footerBounds.height,
}),
[
footerBounds.width,
bounds.height,
headerBounds.height,
footerBounds.height,
],
);
const gridBoundsObservable = useObservable(gridBounds);
2024-05-17 16:38:00 -04:00
2024-06-07 16:59:56 -04:00
const spotlightAlignment = useInitial(
() => new BehaviorSubject(defaultSpotlightAlignment),
);
const pipAlignment = useInitial(
() => new BehaviorSubject(defaultPipAlignment),
2024-05-16 15:23:10 -04:00
);
2024-05-17 16:38:00 -04:00
const layoutSystem = useObservableEagerState(
useInitial(() =>
vm.layout.pipe(
map((l) => {
let makeLayout: CallLayout<Layout>;
2024-06-07 12:27:13 -04:00
if (l.type === "grid")
2024-05-17 16:38:00 -04:00
makeLayout = makeGridLayout as CallLayout<Layout>;
else if (l.type === "spotlight")
makeLayout = makeSpotlightLayout as CallLayout<Layout>;
2024-06-07 16:59:56 -04:00
else if (l.type === "one-on-one")
makeLayout = makeOneOnOneLayout as CallLayout<Layout>;
2024-06-07 17:29:48 -04:00
else throw new Error(`Unimplemented layout: ${l.type}`);
2024-05-17 16:38:00 -04:00
return makeLayout({
minBounds: gridBoundsObservable,
2024-06-07 16:59:56 -04:00
spotlightAlignment,
pipAlignment,
2024-05-17 16:38:00 -04:00
});
}),
),
),
2024-05-16 15:23:10 -04:00
);
2022-08-07 19:09:45 +02:00
2024-05-16 15:23:10 -04:00
const setGridMode = useCallback(
2024-06-07 17:29:48 -04:00
(mode: GridMode) => vm.setGridMode(mode),
[vm],
2024-05-16 15:23:10 -04:00
);
2024-05-02 18:44:36 -04:00
2024-06-07 17:29:48 -04:00
useEffect(() => {
widget?.api.transport.send(
gridMode === "grid"
? ElementWidgetActions.TileLayout
: ElementWidgetActions.SpotlightLayout,
{},
);
}, [gridMode]);
useEffect(() => {
if (widget) {
const onTileLayout = (ev: CustomEvent<IWidgetApiRequest>): void => {
setGridMode("grid");
widget!.api.transport.reply(ev.detail, {});
};
const onSpotlightLayout = (ev: CustomEvent<IWidgetApiRequest>): void => {
setGridMode("spotlight");
widget!.api.transport.reply(ev.detail, {});
};
widget.lazyActions.on(ElementWidgetActions.TileLayout, onTileLayout);
widget.lazyActions.on(
ElementWidgetActions.SpotlightLayout,
onSpotlightLayout,
);
return (): void => {
widget!.lazyActions.off(ElementWidgetActions.TileLayout, onTileLayout);
widget!.lazyActions.off(
ElementWidgetActions.SpotlightLayout,
onSpotlightLayout,
);
};
}
}, [setGridMode]);
const showSpotlightIndicators = useObservable(layout.type === "spotlight");
const showSpeakingIndicators = useObservable(
2024-05-16 15:23:10 -04:00
layout.type === "spotlight" ||
(layout.type === "grid" && layout.grid.length > 2),
);
2024-05-16 15:23:10 -04:00
const Tile = useMemo(
2024-05-16 15:23:10 -04:00
() =>
forwardRef<
HTMLDivElement,
PropsWithoutRef<TileProps<TileModel, HTMLDivElement>>
>(function Tile(
{ className, style, targetWidth, targetHeight, model },
ref,
) {
const showSpeakingIndicatorsValue = useObservableEagerState(
showSpeakingIndicators,
);
const showSpotlightIndicatorsValue = useObservableEagerState(
showSpotlightIndicators,
);
return model.type === "grid" ? (
<GridTile
ref={ref}
vm={model.vm}
maximised={false}
fullscreen={false}
onToggleFullscreen={toggleFullscreen}
onOpenProfile={openProfile}
targetWidth={targetWidth}
targetHeight={targetHeight}
className={classNames(className, styles.tile)}
style={style}
showSpeakingIndicators={showSpeakingIndicatorsValue}
/>
) : (
<SpotlightTile
ref={ref}
vms={model.vms}
maximised={model.maximised}
fullscreen={false}
onToggleFullscreen={toggleSpotlightFullscreen}
targetWidth={targetWidth}
targetHeight={targetHeight}
showIndicators={showSpotlightIndicatorsValue}
className={classNames(className, styles.tile)}
style={style}
/>
);
}),
[
toggleFullscreen,
toggleSpotlightFullscreen,
openProfile,
showSpeakingIndicators,
showSpotlightIndicators,
],
2024-05-16 15:23:10 -04:00
);
2024-05-16 15:23:10 -04:00
const renderContent = (): JSX.Element => {
if (maximisedParticipant !== null) {
const fullscreen = maximisedParticipant === fullscreenItem;
2024-06-07 17:29:48 -04:00
if (maximisedParticipant === "spotlight") {
return (
2024-05-16 15:23:10 -04:00
<SpotlightTile
className={classNames(styles.tile, styles.maximised)}
2024-05-16 15:23:10 -04:00
vms={layout.spotlight!}
maximised
2024-05-02 18:44:36 -04:00
fullscreen={fullscreen}
2024-05-16 15:23:10 -04:00
onToggleFullscreen={toggleSpotlightFullscreen}
targetWidth={gridBounds.height}
targetHeight={gridBounds.width}
showIndicators={false}
/>
);
}
2024-05-16 15:23:10 -04:00
}
2024-06-07 17:29:48 -04:00
return (
<>
<Grid
className={styles.scrollingGrid}
model={layout}
Layout={layoutSystem.scrolling}
Tile={Tile}
2024-05-17 16:38:00 -04:00
/>
2024-06-07 17:29:48 -04:00
<Grid
className={styles.fixedGrid}
style={{
insetBlockStart: headerBounds.bottom,
height: gridBounds.height,
}}
model={layout}
Layout={layoutSystem.fixed}
Tile={Tile}
/>
</>
);
2024-05-16 15:23:10 -04:00
};
2023-09-04 12:46:06 +01:00
2024-05-16 15:23:10 -04:00
const rageshakeRequestModalProps = useRageshakeRequestModal(
rtcSession.room.roomId,
);
2024-05-16 15:23:10 -04:00
const toggleScreensharing = useCallback(async () => {
exitFullscreen();
await localParticipant.setScreenShareEnabled(!isScreenShareEnabled, {
audio: true,
selfBrowserSurface: "include",
surfaceSwitching: "include",
systemAudio: "include",
});
}, [localParticipant, isScreenShareEnabled, exitFullscreen]);
let footer: JSX.Element | null;
if (noControls) {
footer = null;
} else {
const buttons: JSX.Element[] = [];
buttons.push(
<MicButton
key="1"
muted={!muteStates.audio.enabled}
onPress={toggleMicrophone}
disabled={muteStates.audio.setEnabled === null}
data-testid="incall_mute"
/>,
<VideoButton
key="2"
muted={!muteStates.video.enabled}
onPress={toggleCamera}
disabled={muteStates.video.setEnabled === null}
data-testid="incall_videomute"
/>,
);
if (!reducedControls) {
if (canScreenshare && !hideScreensharing) {
buttons.push(
<ScreenshareButton
key="3"
enabled={isScreenShareEnabled}
onPress={toggleScreensharing}
data-testid="incall_screenshare"
/>,
);
}
buttons.push(<SettingsButton key="4" onPress={openSettings} />);
2023-09-04 12:46:06 +01:00
}
2024-05-16 15:23:10 -04:00
buttons.push(
<HangupButton
key="6"
onPress={function (): void {
onLeave();
}}
data-testid="incall_leave"
/>,
);
footer = (
<div
ref={footerRef}
className={classNames(
showControls
? styles.footer
: hideHeader
? [styles.footer, styles.footerHidden]
: [styles.footer, styles.footerThin],
)}
2024-05-16 15:23:10 -04:00
>
{!mobile && !hideHeader && (
<div className={styles.logo}>
<LogoMark width={24} height={24} aria-hidden />
<LogoType
width={80}
height={11}
aria-label={import.meta.env.VITE_PRODUCT_NAME || "Element Call"}
/>
</div>
)}
{showControls && <div className={styles.buttons}>{buttons}</div>}
{!mobile && !hideHeader && showControls && (
<LayoutToggle
className={styles.layout}
2024-06-07 17:29:48 -04:00
layout={gridMode}
2024-05-16 15:23:10 -04:00
setLayout={setGridMode}
/>
)}
</div>
);
2024-05-16 15:23:10 -04:00
}
return (
<div className={styles.inRoom} ref={containerRef}>
{!hideHeader && maximisedParticipant === null && (
<Header className={styles.header} ref={headerRef}>
<LeftNav>
<RoomHeaderInfo
id={matrixInfo.roomId}
name={matrixInfo.roomName}
avatarUrl={matrixInfo.roomAvatar}
encrypted={matrixInfo.e2eeSystem.kind !== E2eeType.NONE}
participantCount={participantCount}
/>
</LeftNav>
<RightNav>
{!reducedControls && showControls && onShareClick !== null && (
<InviteButton onClick={onShareClick} />
)}
</RightNav>
</Header>
)}
<RoomAudioRenderer />
{renderContent()}
{footer}
{!noControls && <RageshakeRequestModal {...rageshakeRequestModalProps} />}
<SettingsModal
client={client}
roomId={rtcSession.room.roomId}
open={settingsModalOpen}
onDismiss={closeSettings}
tab={settingsTab}
onTabChange={setSettingsTab}
/>
</div>
);
};