/* Copyright 2022-2023 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 { FC, useCallback, useState } from "react"; import { useTranslation } from "react-i18next"; import { MatrixClient } from "matrix-js-sdk/src/matrix"; import { Button, Link } from "@vector-im/compound-web"; import classNames from "classnames"; import { useHistory } from "react-router-dom"; import inCallStyles from "./InCallView.module.css"; import styles from "./LobbyView.module.css"; import { Header, LeftNav, RightNav, RoomHeaderInfo } from "../Header"; import { useLocationNavigation } from "../useLocationNavigation"; import { MatrixInfo, VideoPreview } from "./VideoPreview"; import { MuteStates } from "./MuteStates"; import { InviteButton } from "../button/InviteButton"; import { HangupButton, MicButton, SettingsButton, VideoButton, } from "../button/Button"; import { SettingsModal, defaultSettingsTab } from "../settings/SettingsModal"; import { useMediaQuery } from "../useMediaQuery"; import { E2eeType } from "../e2ee/e2eeType"; interface Props { client: MatrixClient; matrixInfo: MatrixInfo; muteStates: MuteStates; onEnter: () => void; enterLabel?: JSX.Element | string; confineToRoom: boolean; hideHeader: boolean; participantCount: number | null; onShareClick: (() => void) | null; waitingForInvite?: boolean; } export const LobbyView: FC = ({ client, matrixInfo, muteStates, onEnter, enterLabel, confineToRoom, hideHeader, participantCount, onShareClick, waitingForInvite, }) => { const { t } = useTranslation(); useLocationNavigation(); const onAudioPress = useCallback( () => muteStates.audio.setEnabled?.((e) => !e), [muteStates], ); const onVideoPress = useCallback( () => muteStates.video.setEnabled?.((e) => !e), [muteStates], ); const [settingsModalOpen, setSettingsModalOpen] = useState(false); const [settingsTab, setSettingsTab] = useState(defaultSettingsTab); const openSettings = useCallback( () => setSettingsModalOpen(true), [setSettingsModalOpen], ); const closeSettings = useCallback( () => setSettingsModalOpen(false), [setSettingsModalOpen], ); const history = useHistory(); const onLeaveClick = useCallback(() => history.push("/"), [history]); const recentsButtonInFooter = useMediaQuery("(max-height: 500px)"); const recentsButton = !confineToRoom && ( {t("lobby.leave_button")} ); // TODO: Unify this component with InCallView, so we can get slick joining // animations and don't have to feel bad about reusing its CSS return ( <>
{!hideHeader && (
{onShareClick !== null && }
)}
{!recentsButtonInFooter && recentsButton}
{recentsButtonInFooter && recentsButton}
{!confineToRoom && }
{client && ( )} ); };