manifold/web/components/nav-bar.tsx

166 lines
4.3 KiB
TypeScript
Raw Normal View History

import clsx from 'clsx'
import Link from 'next/link'
import { useUser } from '../hooks/use-user'
import { Row } from './layout/row'
import { firebaseLogin, User } from '../lib/firebase/users'
import { ManifoldLogo } from './manifold-logo'
import { ProfileMenu } from './profile-menu'
2022-02-01 01:02:17 +00:00
import {
CollectionIcon,
HomeIcon,
SearchIcon,
UserGroupIcon,
} from '@heroicons/react/outline'
export function NavBar(props: {
darkBackground?: boolean
2021-12-20 04:37:11 +00:00
wide?: boolean
assertUser?: 'signed-in' | 'signed-out'
className?: string
}) {
const { darkBackground, wide, assertUser, className } = props
const user = useUser()
const hoverClasses =
'hover:underline hover:decoration-indigo-400 hover:decoration-2'
const themeClasses = clsx(darkBackground && 'text-white', hoverClasses)
return (
2022-02-01 01:02:17 +00:00
<>
<nav className={clsx('mb-4 w-full p-4', className)} aria-label="Global">
2022-02-01 01:02:17 +00:00
<Row
className={clsx(
'mx-auto items-center justify-between sm:px-4',
2022-02-01 01:02:17 +00:00
wide ? 'max-w-6xl' : 'max-w-4xl'
2021-12-20 04:37:11 +00:00
)}
2022-02-01 01:02:17 +00:00
>
<ManifoldLogo className="my-1" darkBackground={darkBackground} />
<Row className="ml-6 items-center gap-6 sm:gap-8">
2022-02-01 01:02:17 +00:00
{(user || user === null || assertUser) && (
<NavOptions
user={user}
assertUser={assertUser}
themeClasses={themeClasses}
/>
)}
</Row>
2021-12-20 04:37:11 +00:00
</Row>
2022-02-01 01:02:17 +00:00
</nav>
{user && <BottomNavBar user={user} />}
</>
)
}
// From https://codepen.io/chris__sev/pen/QWGvYbL
function BottomNavBar(props: { user: User }) {
const { user } = props
return (
<nav className="fixed inset-x-0 bottom-0 z-20 flex justify-between border-t-2 bg-white text-xs text-gray-700 md:hidden">
2022-02-01 01:02:17 +00:00
<Link href="/home">
<a
href="#"
className="block w-full py-2 px-3 text-center transition duration-300 hover:bg-indigo-200 hover:text-indigo-700"
2022-02-01 01:02:17 +00:00
>
<HomeIcon className="my-1 mx-auto h-6 w-6" aria-hidden="true" />
2022-02-01 01:02:17 +00:00
{/* Home */}
</a>
</Link>
<Link href="/markets">
<a
href="#"
className="block w-full py-2 px-3 text-center hover:bg-indigo-200 hover:text-indigo-700"
2022-02-01 01:02:17 +00:00
>
<SearchIcon className="my-1 mx-auto h-6 w-6" aria-hidden="true" />
2022-02-01 01:02:17 +00:00
{/* Explore */}
</a>
</Link>
<Link href="/folds">
<a
href="#"
className="block w-full py-2 px-3 text-center hover:bg-indigo-200 hover:text-indigo-700"
2022-02-01 01:02:17 +00:00
>
<UserGroupIcon className="my-1 mx-auto h-6 w-6" aria-hidden="true" />
2022-02-01 01:02:17 +00:00
{/* Folds */}
</a>
</Link>
<Link href="/trades">
2022-02-01 01:02:17 +00:00
<a
href="#"
className="block w-full py-2 px-3 text-center hover:bg-indigo-200 hover:text-indigo-700"
2022-02-01 01:02:17 +00:00
>
<CollectionIcon className="my-1 mx-auto h-6 w-6" aria-hidden="true" />
{/* Your Trades */}
2022-02-01 01:02:17 +00:00
</a>
</Link>
</nav>
)
}
function NavOptions(props: {
user: User | null | undefined
assertUser: 'signed-in' | 'signed-out' | undefined
themeClasses: string
}) {
const { user, assertUser, themeClasses } = props
const showSignedIn = assertUser === 'signed-in' || !!user
const showSignedOut =
!showSignedIn && (assertUser === 'signed-out' || user === null)
return (
<>
{showSignedOut && (
<Link href="/about">
<a
className={clsx(
'hidden whitespace-nowrap text-base md:block',
themeClasses
)}
>
About
</a>
</Link>
)}
2022-01-27 23:55:23 +00:00
<Link href="/folds">
<a
className={clsx(
'hidden whitespace-nowrap text-base md:block',
themeClasses
)}
>
2022-02-01 18:12:55 +00:00
Communities
</a>
2022-01-27 07:10:28 +00:00
</Link>
2022-01-27 23:55:23 +00:00
<Link href="/markets">
<a
className={clsx(
'hidden whitespace-nowrap text-base md:block',
themeClasses
)}
>
2022-01-27 23:55:23 +00:00
Markets
</a>
</Link>
{showSignedOut && (
<>
<button
className="btn btn-sm btn-outline bg-gradient-to-r px-6 text-base font-medium normal-case"
onClick={firebaseLogin}
>
Sign in
</button>
</>
)}
{showSignedIn && <ProfileMenu user={user ?? undefined} />}
</>
)
}