element-call/src/Header.tsx

179 lines
4 KiB
TypeScript
Raw Normal View History

2021-08-20 00:49:45 +00:00
import classNames from "classnames";
import React, { HTMLAttributes, ReactNode, useCallback, useRef } from "react";
2021-12-03 01:21:37 +00:00
import { Link } from "react-router-dom";
import { useButton } from "@react-aria/button";
import { AriaButtonProps } from "@react-types/button";
2022-08-12 20:46:53 +00:00
import { Room } from "matrix-js-sdk/src/models/room";
2021-08-20 00:49:45 +00:00
import styles from "./Header.module.css";
import { useModalTriggerState } from "./Modal";
import { Button } from "./button";
2021-12-07 20:20:05 +00:00
import { ReactComponent as Logo } from "./icons/Logo.svg";
2021-11-30 00:19:48 +00:00
import { ReactComponent as VideoIcon } from "./icons/Video.svg";
2022-01-05 19:52:23 +00:00
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;
}
2021-08-20 00:49:45 +00:00
export function Header({ children, className, ...rest }: HeaderProps) {
2021-08-20 00:49:45 +00:00
return (
2021-11-30 00:19:48 +00:00
<header className={classNames(styles.header, className)} {...rest}>
2021-08-20 00:49:45 +00:00
{children}
2021-11-30 00:19:48 +00:00
</header>
2021-08-20 00:49:45 +00:00
);
}
interface LeftNavProps extends HTMLAttributes<HTMLElement> {
children: ReactNode;
className?: string;
hideMobile?: boolean;
}
export function LeftNav({
children,
className,
hideMobile,
...rest
}: LeftNavProps) {
2021-08-20 00:49:45 +00:00
return (
2021-11-30 00:19:48 +00:00
<div
2021-12-23 22:40:23 +00:00
className={classNames(
styles.nav,
styles.leftNav,
{ [styles.hideMobile]: hideMobile },
className
)}
2021-11-30 00:19:48 +00:00
{...rest}
>
2021-08-20 00:49:45 +00:00
{children}
</div>
);
}
2021-08-20 23:23:12 +00:00
interface RightNavProps extends HTMLAttributes<HTMLElement> {
children?: ReactNode;
className?: string;
hideMobile?: string;
}
export function RightNav({
children,
className,
hideMobile,
...rest
}: RightNavProps) {
2021-08-20 23:23:12 +00:00
return (
2021-11-30 00:19:48 +00:00
<div
2022-01-05 00:00:13 +00:00
className={classNames(
styles.nav,
styles.rightNav,
{ [styles.hideMobile]: hideMobile },
className
)}
2021-11-30 00:19:48 +00:00
{...rest}
>
{children}
</div>
2021-08-20 23:23:12 +00:00
);
}
2021-12-03 01:21:37 +00:00
interface HeaderLogoProps {
className?: string;
}
export function HeaderLogo({ className }: HeaderLogoProps) {
2021-12-03 01:21:37 +00:00
return (
2022-01-05 00:00:13 +00:00
<Link className={classNames(styles.headerLogo, className)} to="/">
2021-12-07 20:20:05 +00:00
<Logo />
2021-12-03 01:21:37 +00:00
</Link>
);
}
interface RoomHeaderInfo {
roomName: string;
avatarUrl: string;
}
export function RoomHeaderInfo({ roomName, avatarUrl }: RoomHeaderInfo) {
2021-12-03 01:21:37 +00:00
return (
<>
<div className={styles.roomAvatar}>
2022-01-22 00:41:00 +00:00
<Avatar
size={Size.MD}
2022-05-18 23:00:59 +00:00
src={avatarUrl}
2022-01-22 00:41:00 +00:00
bgKey={roomName}
fallback={roomName.slice(0, 1).toUpperCase()}
/>
2021-12-03 01:21:37 +00:00
<VideoIcon width={16} height={16} />
</div>
2022-01-05 19:52:23 +00:00
<Subtitle fontWeight="semiBold">{roomName}</Subtitle>
2021-12-03 01:21:37 +00:00
</>
);
}
interface RoomSetupHeaderInfoProps extends AriaButtonProps<"button"> {
roomName: string;
avatarUrl: string;
isEmbedded: boolean;
}
export function RoomSetupHeaderInfo({
roomName,
avatarUrl,
isEmbedded,
...rest
}: RoomSetupHeaderInfoProps) {
2021-12-07 19:59:57 +00:00
const ref = useRef();
const { buttonProps } = useButton(rest, ref);
if (isEmbedded) {
return (
2022-07-01 12:10:08 +00:00
<div ref={ref}>
<RoomHeaderInfo roomName={roomName} avatarUrl={avatarUrl} />
</div>
);
}
2021-12-03 01:21:37 +00:00
return (
2021-12-07 19:59:57 +00:00
<button className={styles.backButton} ref={ref} {...buttonProps}>
2021-12-03 01:21:37 +00:00
<ArrowLeftIcon width={16} height={16} />
2022-05-18 23:00:59 +00:00
<RoomHeaderInfo roomName={roomName} avatarUrl={avatarUrl} />
2021-12-03 01:21:37 +00:00
</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>
);
}