manifold/web/components/header.tsx

103 lines
2.9 KiB
TypeScript
Raw Normal View History

2021-12-11 00:19:35 +00:00
import { useEffect, useState } from 'react'
2021-12-10 22:56:26 +00:00
import clsx from 'clsx'
import Link from 'next/link'
2021-12-11 00:19:35 +00:00
import { Popover } from '@headlessui/react'
2021-12-09 23:37:26 +00:00
import { useUser } from '../hooks/use-user'
const navigation = [
{
name: 'About',
2021-12-12 23:41:17 +00:00
href: 'https://mantic.notion.site/About-Mantic-Markets-7c44bc161356474cad54cba2d2973fe2',
},
]
2021-12-16 09:53:19 +00:00
const hoverClasses =
'hover:underline hover:decoration-indigo-400 hover:decoration-2'
2021-12-10 22:56:26 +00:00
function SignInLink(props: { darkBackground?: boolean }) {
const { darkBackground } = props
2021-12-09 23:37:26 +00:00
const user = useUser()
2021-12-16 09:53:19 +00:00
const themeClasses = (darkBackground ? 'text-white ' : '') + hoverClasses
2021-12-10 22:56:26 +00:00
return (
<>
2021-12-11 00:40:23 +00:00
{user ? (
<>
2021-12-16 02:31:14 +00:00
<Link href="/create">
<a className={clsx('text-base font-medium', themeClasses)}>
Create a market
</a>
2021-12-11 00:40:23 +00:00
</Link>
2021-12-11 00:19:35 +00:00
2021-12-11 00:40:23 +00:00
<Link href="/account">
<a className={clsx('text-base font-medium', themeClasses)}>
2021-12-16 09:53:19 +00:00
Your account
</a>
2021-12-11 00:40:23 +00:00
</Link>
</>
2021-12-16 02:31:14 +00:00
) : (
<></>
)}
</>
)
}
2021-12-10 22:56:26 +00:00
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="/">
2021-12-10 22:56:26 +00:00
<a className="flex flex-row items-center align-items-center h-6 sm:h-10">
2021-12-11 00:16:58 +00:00
<div className="inline-block mr-3">
<img
2021-12-16 09:53:19 +00:00
className="h-6 sm:h-10 w-6 sm:w-10 hover:rotate-12 transition-all"
src="/logo-icon.svg"
/>
2021-12-10 22:56:26 +00:00
</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 mr-8">
{navigation.map((item) => (
<Link key={item.name} href={item.href}>
2021-12-10 22:56:26 +00:00
<a
2021-12-15 22:58:34 +00:00
target="_blank"
2021-12-10 22:56:26 +00:00
className={clsx(
2021-12-16 09:53:19 +00:00
'text-base font-medium ' + hoverClasses,
darkBackground ? 'text-white' : ''
2021-12-10 22:56:26 +00:00
)}
>
{item.name}
</a>
</Link>
))}
2021-12-11 00:19:35 +00:00
2021-12-10 22:56:26 +00:00
<SignInLink darkBackground={darkBackground} />
</div>
</div>
</nav>
</div>
</Popover>
)
}