75e48204ef
* Revert "Reverting side navbar for now"
This reverts commit a90441d9d5
.
* Use padding instead of margin for bg color
* Use a slideout menu on mobile
* Remove "wide" page option
* Stick right sidebar on page bottom
* Darken bg on hover
129 lines
4.4 KiB
TypeScript
129 lines
4.4 KiB
TypeScript
import Link from 'next/link'
|
|
|
|
import { useUser } from '../../hooks/use-user'
|
|
import {
|
|
HomeIcon,
|
|
MenuAlt3Icon,
|
|
SearchIcon,
|
|
UserGroupIcon,
|
|
XIcon,
|
|
} from '@heroicons/react/outline'
|
|
import { Transition, Dialog } from '@headlessui/react'
|
|
import { useState, Fragment } from 'react'
|
|
import Sidebar from './sidebar'
|
|
|
|
// From https://codepen.io/chris__sev/pen/QWGvYbL
|
|
export function BottomNavBar() {
|
|
const [sidebarOpen, setSidebarOpen] = useState(false)
|
|
const user = useUser()
|
|
if (!user) {
|
|
return null
|
|
}
|
|
return (
|
|
<nav className="fixed inset-x-0 bottom-0 z-20 flex justify-between border-t-2 bg-white text-xs text-gray-700 lg:hidden">
|
|
<Link href="/home">
|
|
<a className="block w-full py-2 px-3 text-center transition duration-300 hover:bg-indigo-200 hover:text-indigo-700">
|
|
<HomeIcon className="my-1 mx-auto h-6 w-6" aria-hidden="true" />
|
|
{/* Home */}
|
|
</a>
|
|
</Link>
|
|
|
|
<Link href="/markets">
|
|
<a className="block w-full py-2 px-3 text-center hover:bg-indigo-200 hover:text-indigo-700">
|
|
<SearchIcon className="my-1 mx-auto h-6 w-6" aria-hidden="true" />
|
|
{/* Explore */}
|
|
</a>
|
|
</Link>
|
|
|
|
<Link href="/folds">
|
|
<a className="block w-full py-2 px-3 text-center hover:bg-indigo-200 hover:text-indigo-700">
|
|
<UserGroupIcon className="my-1 mx-auto h-6 w-6" aria-hidden="true" />
|
|
{/* Folds */}
|
|
</a>
|
|
</Link>
|
|
|
|
<span
|
|
className="block w-full py-2 px-3 text-center hover:cursor-pointer hover:bg-indigo-200 hover:text-indigo-700"
|
|
onClick={() => setSidebarOpen(true)}
|
|
>
|
|
<MenuAlt3Icon className="my-1 mx-auto h-6 w-6" aria-hidden="true" />
|
|
{/* Menu */}
|
|
</span>
|
|
|
|
<MobileSidebar
|
|
sidebarOpen={sidebarOpen}
|
|
setSidebarOpen={setSidebarOpen}
|
|
/>
|
|
</nav>
|
|
)
|
|
}
|
|
|
|
// Sidebar that slides out on mobile
|
|
export function MobileSidebar(props: {
|
|
sidebarOpen: boolean
|
|
setSidebarOpen: (open: boolean) => void
|
|
}) {
|
|
const { sidebarOpen, setSidebarOpen } = props
|
|
return (
|
|
<div>
|
|
<Transition.Root show={sidebarOpen} as={Fragment}>
|
|
<Dialog
|
|
as="div"
|
|
className="fixed inset-0 z-40 flex"
|
|
onClose={setSidebarOpen}
|
|
>
|
|
<Transition.Child
|
|
as={Fragment}
|
|
enter="transition-opacity ease-linear duration-300"
|
|
enterFrom="opacity-0"
|
|
enterTo="opacity-100"
|
|
leave="transition-opacity ease-linear duration-300"
|
|
leaveFrom="opacity-100"
|
|
leaveTo="opacity-0"
|
|
>
|
|
<Dialog.Overlay className="fixed inset-0 bg-gray-600 bg-opacity-75" />
|
|
</Transition.Child>
|
|
<Transition.Child
|
|
as={Fragment}
|
|
enter="transition ease-in-out duration-300 transform"
|
|
enterFrom="-translate-x-full"
|
|
enterTo="translate-x-0"
|
|
leave="transition ease-in-out duration-300 transform"
|
|
leaveFrom="translate-x-0"
|
|
leaveTo="-translate-x-full"
|
|
>
|
|
<div className="relative flex w-full max-w-xs flex-1 flex-col bg-white pt-5 pb-4">
|
|
<Transition.Child
|
|
as={Fragment}
|
|
enter="ease-in-out duration-300"
|
|
enterFrom="opacity-0"
|
|
enterTo="opacity-100"
|
|
leave="ease-in-out duration-300"
|
|
leaveFrom="opacity-100"
|
|
leaveTo="opacity-0"
|
|
>
|
|
<div className="absolute top-0 right-0 -mr-12 pt-2">
|
|
<button
|
|
type="button"
|
|
className="ml-1 flex h-10 w-10 items-center justify-center rounded-full focus:outline-none focus:ring-2 focus:ring-inset focus:ring-white"
|
|
onClick={() => setSidebarOpen(false)}
|
|
>
|
|
<span className="sr-only">Close sidebar</span>
|
|
<XIcon className="h-6 w-6 text-white" aria-hidden="true" />
|
|
</button>
|
|
</div>
|
|
</Transition.Child>
|
|
<div className="mx-2 mt-5 h-0 flex-1 overflow-y-auto">
|
|
<Sidebar />
|
|
</div>
|
|
</div>
|
|
</Transition.Child>
|
|
<div className="w-14 flex-shrink-0" aria-hidden="true">
|
|
{/* Dummy element to force sidebar to shrink to fit close icon */}
|
|
</div>
|
|
</Dialog>
|
|
</Transition.Root>
|
|
</div>
|
|
)
|
|
}
|