element-call-Github/src/Header.jsx

87 lines
2.1 KiB
React
Raw Normal View History

2021-08-20 08:49:45 +08:00
import classNames from "classnames";
2021-12-08 03:59:57 +08:00
import React, { useRef } from "react";
2021-12-03 09:21:37 +08:00
import { Link } from "react-router-dom";
2021-08-20 08:49:45 +08:00
import styles from "./Header.module.css";
2021-12-08 04:20:05 +08:00
import { ReactComponent as Logo } from "./icons/Logo.svg";
2021-11-30 08:19:48 +08:00
import { ReactComponent as VideoIcon } from "./icons/Video.svg";
import { ReactComponent as ArrowLeftIcon } from "./icons/ArrowLeft.svg";
2021-12-08 03:59:57 +08:00
import { useButton } from "@react-aria/button";
2022-01-06 03:52:23 +08:00
import { Subtitle } from "./typography/Typography";
2022-01-22 08:41:00 +08:00
import { Avatar } from "./Avatar";
2021-08-20 08:49:45 +08:00
2021-11-30 08:19:48 +08:00
export function Header({ children, className, ...rest }) {
2021-08-20 08:49:45 +08:00
return (
2021-11-30 08:19:48 +08:00
<header className={classNames(styles.header, className)} {...rest}>
2021-08-20 08:49:45 +08:00
{children}
2021-11-30 08:19:48 +08:00
</header>
2021-08-20 08:49:45 +08:00
);
}
2021-12-24 06:40:23 +08:00
export function LeftNav({ children, className, hideMobile, ...rest }) {
2021-08-20 08:49:45 +08:00
return (
2021-11-30 08:19:48 +08:00
<div
2021-12-24 06:40:23 +08:00
className={classNames(
styles.nav,
styles.leftNav,
{ [styles.hideMobile]: hideMobile },
className
)}
2021-11-30 08:19:48 +08:00
{...rest}
>
2021-08-20 08:49:45 +08:00
{children}
</div>
);
}
2021-08-21 07:23:12 +08:00
2022-01-05 08:00:13 +08:00
export function RightNav({ children, className, hideMobile, ...rest }) {
2021-08-21 07:23:12 +08:00
return (
2021-11-30 08:19:48 +08:00
<div
2022-01-05 08:00:13 +08:00
className={classNames(
styles.nav,
styles.rightNav,
{ [styles.hideMobile]: hideMobile },
className
)}
2021-11-30 08:19:48 +08:00
{...rest}
>
{children}
</div>
2021-08-21 07:23:12 +08:00
);
}
2021-12-03 09:21:37 +08:00
2022-01-05 08:00:13 +08:00
export function HeaderLogo({ className }) {
2021-12-03 09:21:37 +08:00
return (
2022-01-05 08:00:13 +08:00
<Link className={classNames(styles.headerLogo, className)} to="/">
2021-12-08 04:20:05 +08:00
<Logo />
2021-12-03 09:21:37 +08:00
</Link>
);
}
2022-05-19 07:00:59 +08:00
export function RoomHeaderInfo({ roomName, avatarUrl }) {
2021-12-03 09:21:37 +08:00
return (
<>
<div className={styles.roomAvatar}>
2022-01-22 08:41:00 +08:00
<Avatar
size="md"
2022-05-19 07:00:59 +08:00
src={avatarUrl}
2022-01-22 08:41:00 +08:00
bgKey={roomName}
fallback={roomName.slice(0, 1).toUpperCase()}
/>
2021-12-03 09:21:37 +08:00
<VideoIcon width={16} height={16} />
</div>
2022-01-06 03:52:23 +08:00
<Subtitle fontWeight="semiBold">{roomName}</Subtitle>
2021-12-03 09:21:37 +08:00
</>
);
}
2022-05-19 07:00:59 +08:00
export function RoomSetupHeaderInfo({ roomName, avatarUrl, ...rest }) {
2021-12-08 03:59:57 +08:00
const ref = useRef();
const { buttonProps } = useButton(rest, ref);
2021-12-03 09:21:37 +08:00
return (
2021-12-08 03:59:57 +08:00
<button className={styles.backButton} ref={ref} {...buttonProps}>
2021-12-03 09:21:37 +08:00
<ArrowLeftIcon width={16} height={16} />
2022-05-19 07:00:59 +08:00
<RoomHeaderInfo roomName={roomName} avatarUrl={avatarUrl} />
2021-12-03 09:21:37 +08:00
</button>
);
}