mirror of
https://github.com/vector-im/element-call.git
synced 2024-11-24 00:38:31 +08:00
179 lines
4.0 KiB
TypeScript
179 lines
4.0 KiB
TypeScript
import classNames from "classnames";
|
|
import React, { HTMLAttributes, ReactNode, useCallback, useRef } from "react";
|
|
import { Link } from "react-router-dom";
|
|
import { useButton } from "@react-aria/button";
|
|
import { AriaButtonProps } from "@react-types/button";
|
|
import { Room } from "matrix-js-sdk/src/models/room";
|
|
|
|
import styles from "./Header.module.css";
|
|
import { useModalTriggerState } from "./Modal";
|
|
import { Button } from "./button";
|
|
import { ReactComponent as Logo } from "./icons/Logo.svg";
|
|
import { ReactComponent as VideoIcon } from "./icons/Video.svg";
|
|
import { Subtitle } from "./typography/Typography";
|
|
import { Avatar, Size } from "./Avatar";
|
|
import { IncompatibleVersionModal } from "./IncompatibleVersionModal";
|
|
import { ReactComponent as ArrowLeftIcon } from "./icons/ArrowLeft.svg";
|
|
|
|
interface HeaderProps extends HTMLAttributes<HTMLElement> {
|
|
children: ReactNode;
|
|
className?: string;
|
|
}
|
|
|
|
export function Header({ children, className, ...rest }: HeaderProps) {
|
|
return (
|
|
<header className={classNames(styles.header, className)} {...rest}>
|
|
{children}
|
|
</header>
|
|
);
|
|
}
|
|
|
|
interface LeftNavProps extends HTMLAttributes<HTMLElement> {
|
|
children: ReactNode;
|
|
className?: string;
|
|
hideMobile?: boolean;
|
|
}
|
|
|
|
export function LeftNav({
|
|
children,
|
|
className,
|
|
hideMobile,
|
|
...rest
|
|
}: LeftNavProps) {
|
|
return (
|
|
<div
|
|
className={classNames(
|
|
styles.nav,
|
|
styles.leftNav,
|
|
{ [styles.hideMobile]: hideMobile },
|
|
className
|
|
)}
|
|
{...rest}
|
|
>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
interface RightNavProps extends HTMLAttributes<HTMLElement> {
|
|
children?: ReactNode;
|
|
className?: string;
|
|
hideMobile?: string;
|
|
}
|
|
|
|
export function RightNav({
|
|
children,
|
|
className,
|
|
hideMobile,
|
|
...rest
|
|
}: RightNavProps) {
|
|
return (
|
|
<div
|
|
className={classNames(
|
|
styles.nav,
|
|
styles.rightNav,
|
|
{ [styles.hideMobile]: hideMobile },
|
|
className
|
|
)}
|
|
{...rest}
|
|
>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
interface HeaderLogoProps {
|
|
className?: string;
|
|
}
|
|
|
|
export function HeaderLogo({ className }: HeaderLogoProps) {
|
|
return (
|
|
<Link className={classNames(styles.headerLogo, className)} to="/">
|
|
<Logo />
|
|
</Link>
|
|
);
|
|
}
|
|
|
|
interface RoomHeaderInfo {
|
|
roomName: string;
|
|
avatarUrl: string;
|
|
}
|
|
|
|
export function RoomHeaderInfo({ roomName, avatarUrl }: RoomHeaderInfo) {
|
|
return (
|
|
<>
|
|
<div className={styles.roomAvatar}>
|
|
<Avatar
|
|
size={Size.MD}
|
|
src={avatarUrl}
|
|
bgKey={roomName}
|
|
fallback={roomName.slice(0, 1).toUpperCase()}
|
|
/>
|
|
<VideoIcon width={16} height={16} />
|
|
</div>
|
|
<Subtitle fontWeight="semiBold">{roomName}</Subtitle>
|
|
</>
|
|
);
|
|
}
|
|
|
|
interface RoomSetupHeaderInfoProps extends AriaButtonProps<"button"> {
|
|
roomName: string;
|
|
avatarUrl: string;
|
|
isEmbedded: boolean;
|
|
}
|
|
|
|
export function RoomSetupHeaderInfo({
|
|
roomName,
|
|
avatarUrl,
|
|
isEmbedded,
|
|
...rest
|
|
}: RoomSetupHeaderInfoProps) {
|
|
const ref = useRef();
|
|
const { buttonProps } = useButton(rest, ref);
|
|
|
|
if (isEmbedded) {
|
|
return (
|
|
<div ref={ref}>
|
|
<RoomHeaderInfo roomName={roomName} avatarUrl={avatarUrl} />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<button className={styles.backButton} ref={ref} {...buttonProps}>
|
|
<ArrowLeftIcon width={16} height={16} />
|
|
<RoomHeaderInfo roomName={roomName} avatarUrl={avatarUrl} />
|
|
</button>
|
|
);
|
|
}
|
|
|
|
interface VersionMismatchWarningProps {
|
|
users: Set<string>;
|
|
room: Room;
|
|
}
|
|
|
|
export function VersionMismatchWarning({
|
|
users,
|
|
room,
|
|
}: VersionMismatchWarningProps) {
|
|
const { modalState, modalProps } = useModalTriggerState();
|
|
|
|
const onDetailsClick = useCallback(() => {
|
|
modalState.open();
|
|
}, [modalState]);
|
|
|
|
if (users.size === 0) return null;
|
|
|
|
return (
|
|
<span className={styles.versionMismatchWarning}>
|
|
Incomaptible versions!
|
|
<Button variant="link" onClick={onDetailsClick}>
|
|
Details
|
|
</Button>
|
|
{modalState.isOpen && (
|
|
<IncompatibleVersionModal userIds={users} room={room} {...modalProps} />
|
|
)}
|
|
</span>
|
|
);
|
|
}
|