manifold/web/components/header.tsx
2021-12-10 18:06:51 -06:00

110 lines
3.1 KiB
TypeScript

import clsx from 'clsx'
import { Popover } from '@headlessui/react'
import Link from 'next/link'
import { useUser } from '../hooks/use-user'
import { firebaseLogin } from '../lib/firebase/users'
import Image from 'next/image'
const navigation = [
{
name: 'About',
href: 'https://mantic.notion.site/About-Mantic-Markets-46a1a0fb6e294011a8b6b582e276359f',
},
{ name: 'Simulator', href: '/simulator' },
]
function SignInLink(props: { darkBackground?: boolean }) {
const { darkBackground } = props
const user = useUser()
const themeClasses = darkBackground
? 'text-white hover:text-gray-300'
: 'hover:text-gray-500'
return (
<>
{user ? (
<>
<Link href="/contract">
<a className={clsx('text-base', themeClasses)}>
Create a market
</a>
</Link>
<Link href="/account">
<a className={clsx('text-base', themeClasses)}>
{user.name}
</a>
</Link>
</>
) : (
<button
className={clsx('text-base', themeClasses)}
onClick={() => firebaseLogin()}
>
Sign In
</button>
)}
</>
)
}
export function Header(props: { darkBackground?: boolean }) {
const { darkBackground } = props
return (
<Popover as="header" className="relative">
<div className="pt-6">
<nav
className="relative max-w-7xl mx-auto flex items-center justify-between px-4 sm:px-6 bg-dark-50"
aria-label="Global"
>
<div className="flex items-center flex-1">
<div className="flex items-center justify-between w-full md:w-auto">
<Link href="/">
<a className="flex flex-row items-center align-items-center h-6 sm:h-10">
<div className="inline-block mr-3 mt-2">
<Image
className="h-6 sm:h-10"
src="/logo-icon.svg"
width={40}
height={40}
/>
</div>
<span
className={clsx(
'font-major-mono lowercase sm:text-2xl my-auto',
darkBackground && 'text-white'
)}
>
Mantic Markets
</span>
</a>
</Link>
</div>
<div className="space-x-8 md:flex md:ml-16">
{navigation.map((item) => (
<Link key={item.name} href={item.href}>
<a
className={clsx(
'text-base font-medium',
darkBackground
? 'text-white hover:text-gray-300'
: 'hover:text-gray-500'
)}
>
{item.name}
</a>
</Link>
))}
<SignInLink darkBackground={darkBackground} />
</div>
</div>
</nav>
</div>
</Popover>
)
}