44483a45d3
* style tweaks for Action Button, UserMenu, Modal * a bunch of misc polish; some around chat * Prettified Code! * cleanup * fix formatting * Reduce content padding a bit * some stylesheet cleanup * fix action button sizing * Remove action button height completely --------- Co-authored-by: gingervitis <gingervitis@users.noreply.github.com> Co-authored-by: Gabe Kangas <gabek@real-ity.com>
62 lines
1.7 KiB
TypeScript
62 lines
1.7 KiB
TypeScript
import { Tooltip, Avatar } from 'antd';
|
|
import { FC } from 'react';
|
|
import cn from 'classnames';
|
|
import dynamic from 'next/dynamic';
|
|
import Link from 'next/link';
|
|
import styles from './Header.module.scss';
|
|
|
|
// Lazy loaded components
|
|
|
|
const UserDropdown = dynamic(
|
|
() => import('../../common/UserDropdown/UserDropdown').then(mod => mod.UserDropdown),
|
|
{
|
|
ssr: false,
|
|
},
|
|
);
|
|
|
|
export type HeaderComponentProps = {
|
|
name: string;
|
|
chatAvailable: boolean;
|
|
chatDisabled: boolean;
|
|
online: boolean;
|
|
};
|
|
|
|
export const Header: FC<HeaderComponentProps> = ({ name, chatAvailable, chatDisabled, online }) => (
|
|
<header className={cn([`${styles.header}`], 'global-header')}>
|
|
{online ? (
|
|
<Link href="#player" className={styles.skipLink}>
|
|
Skip to player
|
|
</Link>
|
|
) : (
|
|
<Link href="#offline-message" className={styles.skipLink}>
|
|
Skip to offline message
|
|
</Link>
|
|
)}
|
|
<Link href="#skip-to-content" className={styles.skipLink}>
|
|
Skip to page content
|
|
</Link>
|
|
<Link href="#footer" className={styles.skipLink}>
|
|
Skip to footer
|
|
</Link>
|
|
<div className={styles.logo}>
|
|
<div id="header-logo" className={styles.logoImage}>
|
|
<Avatar src="/logo" size="large" shape="circle" className={styles.avatar} />
|
|
</div>
|
|
<h1 className={styles.title} id="global-header-text">
|
|
{name}
|
|
</h1>
|
|
</div>
|
|
{chatAvailable && !chatDisabled && <UserDropdown />}
|
|
{!chatAvailable && !chatDisabled && (
|
|
<Tooltip
|
|
overlayClassName={styles.toolTip}
|
|
title="Chat will be available when the stream is live."
|
|
placement="left"
|
|
>
|
|
<span className={styles.chatOfflineText}>Chat is offline</span>
|
|
</Tooltip>
|
|
)}
|
|
</header>
|
|
);
|
|
export default Header;
|