diff --git a/src/room/WaitForInviteView.tsx b/src/room/WaitForInviteView.tsx deleted file mode 100644 index 20401d20..00000000 --- a/src/room/WaitForInviteView.tsx +++ /dev/null @@ -1,93 +0,0 @@ -/* -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 classNames from "classnames"; -import { MatrixClient } from "matrix-js-sdk"; - -import styles from "./LobbyView.module.css"; -import inCallStyles from "./InCallView.module.css"; -import { Header, LeftNav, RightNav, RoomHeaderInfo } from "../Header"; -import { useLocationNavigation } from "../useLocationNavigation"; -import { SettingsButton } from "../button/Button"; -import { SettingsModal, defaultSettingsTab } from "../settings/SettingsModal"; -import { RoomSummary } from "./useLoadGroupCall"; - -interface Props { - hideHeader: boolean; - client: MatrixClient; - roomSummary: RoomSummary; -} - -export const WaitForInviteView: FC = ({ - hideHeader, - client, - roomSummary, -}) => { - const { t } = useTranslation(); - useLocationNavigation(); - - const [settingsModalOpen, setSettingsModalOpen] = useState(false); - const [settingsTab, setSettingsTab] = useState(defaultSettingsTab); - - const openSettings = useCallback( - () => setSettingsModalOpen(true), - [setSettingsModalOpen], - ); - const closeSettings = useCallback( - () => setSettingsModalOpen(false), - [setSettingsModalOpen], - ); - - return ( - <> -
- {!hideHeader && ( -
- - - - -
- )} -
- {t("wait_for_invite.wait_message")} -
-
-
- -
-
-
- {client && ( - - )} - - ); -};