/* Copyright 2022 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 classNames from "classnames"; import { HTMLAttributes, ReactNode, useCallback } from "react"; import { Link } from "react-router-dom"; import { Room } from "matrix-js-sdk/src/models/room"; import { useTranslation } from "react-i18next"; import styles from "./Header.module.css"; import { useModalTriggerState } from "./Modal"; import { Button } from "./button"; import { ReactComponent as Logo } from "./icons/Logo.svg"; import { Subtitle } from "./typography/Typography"; import { IncompatibleVersionModal } from "./IncompatibleVersionModal"; interface HeaderProps extends HTMLAttributes { children: ReactNode; className?: string; } export function Header({ children, className, ...rest }: HeaderProps) { return (
{children}
); } interface LeftNavProps extends HTMLAttributes { children: ReactNode; className?: string; hideMobile?: boolean; } export function LeftNav({ children, className, hideMobile, ...rest }: LeftNavProps) { return (
{children}
); } interface RightNavProps extends HTMLAttributes { children?: ReactNode; className?: string; hideMobile?: boolean; } export function RightNav({ children, className, hideMobile, ...rest }: RightNavProps) { return (
{children}
); } interface HeaderLogoProps { className?: string; } export function HeaderLogo({ className }: HeaderLogoProps) { const { t } = useTranslation(); return ( ); } interface RoomHeaderInfo { roomName: string; } export function RoomHeaderInfo({ roomName }: RoomHeaderInfo) { return ( <> {roomName} ); } interface VersionMismatchWarningProps { users: Set; room: Room; } export function VersionMismatchWarning({ users, room, }: VersionMismatchWarningProps) { const { t } = useTranslation(); const { modalState, modalProps } = useModalTriggerState(); const onDetailsClick = useCallback(() => { modalState.open(); }, [modalState]); if (users.size === 0) return null; return ( {t("Incompatible versions!")} {modalState.isOpen && ( )} ); }